initial
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
# Generated by Django 4.2.4 on 2023-08-31 06:34
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='homePageSEO',
|
||||
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='sliderSection',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('image', models.ImageField(upload_to='Home/')),
|
||||
('title', models.CharField(max_length=200)),
|
||||
('subtitle', models.CharField(max_length=200)),
|
||||
('description', models.TextField()),
|
||||
('button1_text', models.CharField(max_length=100)),
|
||||
('button1_url', models.CharField(max_length=500)),
|
||||
('button2_text', models.CharField(max_length=100)),
|
||||
('button2_url', models.CharField(max_length=500)),
|
||||
],
|
||||
options={
|
||||
'verbose_name_plural': '1. Sliders',
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user