Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit 57332ce

Browse files
authored
Create 0001_initial.py
1 parent 519a4d6 commit 57332ce

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Django 4.0.4 on 2022-05-10 08:51
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
initial = True
9+
10+
dependencies = [
11+
]
12+
13+
operations = [
14+
migrations.CreateModel(
15+
name='Locations',
16+
fields=[
17+
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
18+
('city', models.CharField(max_length=100)),
19+
('country', models.CharField(max_length=150)),
20+
('active', models.BooleanField(default=1)),
21+
],
22+
),
23+
]

0 commit comments

Comments
 (0)