This commit is contained in:
2024-11-19 13:00:24 +07:00
commit 45e3c1f698
3462 changed files with 617437 additions and 0 deletions

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

View File

@@ -0,0 +1,32 @@
# Generated by Django 4.2.4 on 2023-08-31 14:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('about', '0001_initial'),
]
operations = [
migrations.CreateModel(
name='aboutPage',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('subtitle', models.CharField(max_length=100)),
('title', models.CharField(max_length=300)),
('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)),
('button3_text', models.CharField(max_length=100)),
('button3_url', models.CharField(max_length=500)),
('years_of_experience', models.IntegerField()),
('image1', models.ImageField(upload_to='AboutPage/')),
('image2', models.ImageField(upload_to='AboutPage/')),
('image3', models.ImageField(upload_to='AboutPage/')),
],
),
]

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.2.4 on 2023-09-16 14:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('about', '0002_aboutpage'),
]
operations = [
migrations.AlterField(
model_name='aboutpage',
name='years_of_experience',
field=models.CharField(max_length=200),
),
]

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.2.4 on 2023-09-16 14:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('about', '0003_alter_aboutpage_years_of_experience'),
]
operations = [
migrations.AlterField(
model_name='aboutpage',
name='years_of_experience',
field=models.IntegerField(),
),
]

View File

@@ -0,0 +1,40 @@
# Generated by Django 4.2.4 on 2023-09-16 14:30
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('about', '0004_alter_aboutpage_years_of_experience'),
]
operations = [
migrations.RenameField(
model_name='aboutpage',
old_name='button1_text',
new_name='feature1',
),
migrations.RenameField(
model_name='aboutpage',
old_name='button2_text',
new_name='feature2',
),
migrations.RenameField(
model_name='aboutpage',
old_name='button3_text',
new_name='feature3',
),
migrations.RemoveField(
model_name='aboutpage',
name='button1_url',
),
migrations.RemoveField(
model_name='aboutpage',
name='button2_url',
),
migrations.RemoveField(
model_name='aboutpage',
name='button3_url',
),
]

View File

@@ -0,0 +1,63 @@
# Generated by Django 4.2.4 on 2023-10-18 05:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('about', '0005_rename_button1_text_aboutpage_feature1_and_more'),
]
operations = [
migrations.AlterField(
model_name='aboutpage',
name='description',
field=models.TextField(blank=True, null=True),
),
migrations.AlterField(
model_name='aboutpage',
name='feature1',
field=models.CharField(blank=True, max_length=100, null=True),
),
migrations.AlterField(
model_name='aboutpage',
name='feature2',
field=models.CharField(blank=True, max_length=100, null=True),
),
migrations.AlterField(
model_name='aboutpage',
name='feature3',
field=models.CharField(blank=True, max_length=100, null=True),
),
migrations.AlterField(
model_name='aboutpage',
name='image1',
field=models.ImageField(blank=True, null=True, upload_to='AboutPage/'),
),
migrations.AlterField(
model_name='aboutpage',
name='image2',
field=models.ImageField(blank=True, null=True, upload_to='AboutPage/'),
),
migrations.AlterField(
model_name='aboutpage',
name='image3',
field=models.ImageField(blank=True, null=True, upload_to='AboutPage/'),
),
migrations.AlterField(
model_name='aboutpage',
name='subtitle',
field=models.CharField(blank=True, max_length=100, null=True),
),
migrations.AlterField(
model_name='aboutpage',
name='title',
field=models.CharField(blank=True, max_length=300, null=True),
),
migrations.AlterField(
model_name='aboutpage',
name='years_of_experience',
field=models.IntegerField(blank=True, null=True),
),
]

View File

@@ -0,0 +1,16 @@
# Generated by Django 5.0.3 on 2024-11-19 03:52
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('about', '0006_alter_aboutpage_description_alter_aboutpage_feature1_and_more'),
]
operations = [
migrations.DeleteModel(
name='teamSection',
),
]

View File