Skip to content

Commit

Permalink
add migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
axellorreyne committed May 19, 2024
1 parent 1d756b5 commit 6231db0
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.2.11 on 2024-05-19 14:55

import backend.pigeonhole.apps.projects.models
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('projects', '0002_project_test_dockerfile'),
]

operations = [
migrations.AddField(
model_name='project',
name='test_entrypoint',
field=models.FileField(blank=True, null=True, upload_to=backend.pigeonhole.apps.projects.models.get_upload_to),
),
]

0 comments on commit 6231db0

Please sign in to comment.