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

Commit f7d4c54

Browse files
authored
Create 0001_initial.py
1 parent 521fb07 commit f7d4c54

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
from django.db import migrations, models
3+
4+
5+
class Migration(migrations.Migration):
6+
7+
initial = True
8+
9+
dependencies = [
10+
]
11+
12+
operations = [
13+
migrations.CreateModel(
14+
name='Jobs',
15+
fields=[
16+
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
17+
('type', models.CharField(max_length=11)),
18+
('url', models.CharField(max_length=100)),
19+
('title', models.CharField(max_length=100)),
20+
('description', models.TextField(max_length=300)),
21+
('how_to_apply', models.TextField(max_length=300)),
22+
('active', models.BooleanField(default=1)),
23+
],
24+
),
25+
]

0 commit comments

Comments
 (0)