Skip to content

Commit

Permalink
adds missing migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
csae8092 committed Jul 10, 2024
1 parent 0ed618e commit 0d62b1e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ dev_secret.py
/histogis/settings/pg_local.py
/histogis/settings/dev_schloegl.py
/auth.json
/idprovider/migrations/0001_initial.py
/dump.sql
arche.xml
myenv
Expand Down
29 changes: 29 additions & 0 deletions idprovider/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Generated by Django 5.0.7 on 2024-07-10 14:40

from django.db import migrations, models


class Migration(migrations.Migration):

initial = True

dependencies = []

operations = [
migrations.CreateModel(
name="IdProvider",
fields=[
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("created_at", models.DateTimeField(auto_now_add=True)),
("updated_at", models.DateTimeField(auto_now=True)),
],
),
]

0 comments on commit 0d62b1e

Please sign in to comment.