Skip to content

Commit

Permalink
make migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
C2dricLeroy committed Jun 25, 2024
1 parent 1d01e2a commit c93de68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
3 changes: 2 additions & 1 deletion vocab_dictionnary/dictionnary/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 5.0.6 on 2024-06-09 19:03
# Generated by Django 5.0.4 on 2024-06-25 18:54

import django.db.models.deletion
from django.db import migrations, models
Expand Down Expand Up @@ -30,6 +30,7 @@ class Migration(migrations.Migration):
('name', models.CharField(max_length=100)),
('code', models.CharField(max_length=100)),
('is_valid', models.BooleanField(default=True)),
('description', models.TextField(blank=True, null=True)),
('created_at', models.DateTimeField(auto_now_add=True)),
('updated_at', models.DateTimeField(auto_now=True)),
],
Expand Down

This file was deleted.

0 comments on commit c93de68

Please sign in to comment.