mirror of
https://github.com/MikroWizard/mikroman.git
synced 2025-06-21 03:55:39 +02:00
8 lines
181 B
Python
8 lines
181 B
Python
|
# 023_tasks_update.py
|
||
|
|
||
|
|
||
|
def migrate(migrator, database, fake=False, **kwargs):
|
||
|
|
||
|
migrator.sql("""ALTER TABLE tasks
|
||
|
ADD COLUMN action text not null default 'None'
|
||
|
""")
|