22 lines
608 B
Python
22 lines
608 B
Python
# Generated by Django 4.0.8 on 2024-01-12 15:04
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0004_alter_newsandevents_id_alter_semester_id_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ActivityLog',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('message', models.TextField()),
|
|
('created_at', models.DateTimeField(auto_now=True)),
|
|
],
|
|
),
|
|
]
|