Initial commit

This commit is contained in:
2022-01-01 18:21:32 +01:00
commit 65702e15ef
33 changed files with 372 additions and 0 deletions

View 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')),
],
),
]

View 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'),
),
]

View 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),
),
]

View File