mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-22 15:11:09 -05:00
18 lines
433 B
Python
18 lines
433 B
Python
# Generated by Django 5.2.6 on 2025-09-20 13:44
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("parks", "0005_auto_20250920_0943"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunSQL(
|
|
"ALTER TABLE parks_parkevent ADD COLUMN IF NOT EXISTS owner_id INTEGER;",
|
|
reverse_sql="ALTER TABLE parks_parkevent DROP COLUMN IF EXISTS owner_id;"
|
|
),
|
|
]
|