-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmigrate.py
42 lines (30 loc) · 955 Bytes
/
migrate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/env python
#
# Migrations for the Signman DB. This is an ugly hack and really needs a schema version field in the DB.
# If you want to add a migration, add it as new function and add in to the "migrations" list.
#
# Documentation: http://docs.peewee-orm.com/en/latest/peewee/playhouse.html#schema-migrations
#
import sys
sys.path.append("./deps")
import peewee
from playhouse.migrate import *
from config import *
def version2():
description = CharField(default="< migrated >")
migrate(
migrator.add_column('URL', 'description', description)
)
# Add migrations here
migrations = [
version2
]
my_db = SqliteDatabase(DB_DATA_DIR)
migrator = SqliteMigrator(my_db)
for migration in migrations:
try:
print "Applying migration '%s'" % migration.__name__
migration()
print "Done"
except peewee.OperationalError as e:
print "Already applied \nResult when trying to apply: %s" % e