28 lines
897 B
Python
28 lines
897 B
Python
# Generated by Django 5.1.2 on 2025-02-08 13:51
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('home', '0003_alter_homeimagemodel_description1_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ShowCaseSlider',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=30)),
|
|
('description', models.CharField(max_length=150)),
|
|
('link', models.URLField()),
|
|
('image', models.ImageField(upload_to='show_case/')),
|
|
],
|
|
options={
|
|
'verbose_name': 'مدل نمایش کیس',
|
|
'verbose_name_plural': 'مدل نمایش کیس ها',
|
|
},
|
|
),
|
|
]
|