Initial commit
This commit is contained in:
24
projects/migrations/0001_initial.py
Normal file
24
projects/migrations/0001_initial.py
Normal file
@@ -0,0 +1,24 @@
|
||||
# Generated by Django 2.2.1 on 2019-05-31 04:59
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Project',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('title', models.CharField(max_length=100)),
|
||||
('description', models.TextField()),
|
||||
('technology', models.CharField(max_length=20)),
|
||||
('image', models.FilePathField(path='/img')),
|
||||
],
|
||||
),
|
||||
]
|
||||
18
projects/migrations/0002_auto_20190531_0533.py
Normal file
18
projects/migrations/0002_auto_20190531_0533.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.1 on 2019-05-31 05:33
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('projects', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='project',
|
||||
name='image',
|
||||
field=models.FilePathField(path='/projects/img'),
|
||||
),
|
||||
]
|
||||
18
projects/migrations/0003_auto_20190601_0333.py
Normal file
18
projects/migrations/0003_auto_20190601_0333.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.1 on 2019-06-01 03:33
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('projects', '0002_auto_20190531_0533'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='project',
|
||||
name='image',
|
||||
field=models.CharField(max_length=100),
|
||||
),
|
||||
]
|
||||
0
projects/migrations/__init__.py
Normal file
0
projects/migrations/__init__.py
Normal file
BIN
projects/migrations/__pycache__/0001_initial.cpython-37.pyc
Normal file
BIN
projects/migrations/__pycache__/0001_initial.cpython-37.pyc
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
projects/migrations/__pycache__/__init__.cpython-37.pyc
Normal file
BIN
projects/migrations/__pycache__/__init__.cpython-37.pyc
Normal file
Binary file not shown.
Reference in New Issue
Block a user