32 lines
1.3 KiB
Python
32 lines
1.3 KiB
Python
# Generated by Django 5.2.7 on 2026-02-05 18:50
|
|
|
|
import django.db.models.deletion
|
|
import django.utils.timezone
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0003_order_delivery_time_slot_order_kebele_productimage_and_more'),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Article',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=255)),
|
|
('slug', models.SlugField(blank=True, unique=True)),
|
|
('content', models.TextField()),
|
|
('image', models.ImageField(blank=True, null=True, upload_to='articles/')),
|
|
('is_published', models.BooleanField(default=False)),
|
|
('created_at', models.DateTimeField(default=django.utils.timezone.now)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='articles', to=settings.AUTH_USER_MODEL)),
|
|
],
|
|
),
|
|
]
|