18 lines
405 B
Python
18 lines
405 B
Python
# Generated by Django 4.2.11 on 2024-07-29 09:42
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('usethesource', '0009_sourceoffer'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='sourceoffer',
|
|
name='time',
|
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
|
),
|
|
]
|