summaryrefslogtreecommitdiffstats
path: root/schema/mysql-migrations/upgrade_63.sql
blob: 7d2361222e2a88f1f9249a40b00772ed629920e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CREATE TABLE director_schema_migration (
  schema_version SMALLINT UNSIGNED NOT NULL,
  migration_time DATETIME NOT NULL,
  PRIMARY KEY(schema_version)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

DROP TABLE director_dbversion;

INSERT INTO director_schema_migration
  SET migration_time = NOW(),
      schema_version = 63;