mirror of
https://github.com/bcomsugi/dasaproject.git
synced 2026-01-10 07:02:38 +07:00
19 lines
389 B
Python
19 lines
389 B
Python
# Generated by Django 4.2 on 2023-05-02 10:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('Customer', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customer',
|
|
name='TimeCreated',
|
|
field=models.DateTimeField(auto_now_add=True),
|
|
),
|
|
]
|