You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
247 B
10 lines
247 B
8 months ago
|
UP_SQL = """
|
||
|
ALTER TABLE afe_hosts ADD COLUMN leased TINYINT(1) NOT NULL DEFAULT '1';
|
||
|
CREATE INDEX leased_hosts ON afe_hosts (leased, locked);
|
||
|
"""
|
||
|
|
||
|
DOWN_SQL = """
|
||
|
DROP INDEX leased_hosts ON afe_hosts;
|
||
|
ALTER TABLE afe_hosts DROP COLUMN leased;
|
||
|
"""
|