initial
This commit is contained in:
35
about/migrations/0001_initial.py
Normal file
35
about/migrations/0001_initial.py
Normal file
@@ -0,0 +1,35 @@
|
||||
# Generated by Django 4.2.4 on 2023-08-31 14:00
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='aboutPageSEO',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('meta_title', models.CharField(blank=True, max_length=500, null=True)),
|
||||
('meta_description', models.CharField(blank=True, max_length=1000, null=True)),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='teamSection',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('image', models.ImageField(upload_to='Teams/')),
|
||||
('name', models.CharField(max_length=200)),
|
||||
('position', models.CharField(max_length=200)),
|
||||
('facebook', models.CharField(blank=True, max_length=500, null=True)),
|
||||
('instagram', models.CharField(blank=True, max_length=500, null=True)),
|
||||
('linkedin', models.CharField(blank=True, max_length=500, null=True)),
|
||||
('whatsapp', models.CharField(blank=True, max_length=500, null=True)),
|
||||
],
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user