default is_mine to true during migration
This commit is contained in:
parent
568a7ae16a
commit
5fea68a9b9
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ def do_migration(conf):
|
|||
|
||||
cursor.executescript("""
|
||||
alter table blob add column added_on integer not null default 0;
|
||||
alter table blob add column is_mine integer not null default 0;
|
||||
alter table blob add column is_mine integer not null default 1;
|
||||
""")
|
||||
|
||||
connection.commit()
|
||||
|
|
Loading…
Reference in a new issue