mirror of https://gitlab.crans.org/bde/nk20
18 lines
386 B
Python
18 lines
386 B
Python
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('logs', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RunSQL(
|
||
|
"UPDATE logs_changelog SET previous = '' WHERE previous IS NULL;"
|
||
|
),
|
||
|
migrations.RunSQL(
|
||
|
"UPDATE logs_changelog SET data = '' WHERE data IS NULL;"
|
||
|
),
|
||
|
]
|