Fix Bug when finalizing the migration table when calling `goose up` for the first time

pull/2/head
Abigail Walthall 2013-01-16 15:38:45 -05:00
parent 85fac2eb96
commit b7fd3077d1
1 changed files with 3 additions and 1 deletions

View File

@ -243,10 +243,12 @@ func createVersionTable(db *sql.DB) error {
// create the table and insert an initial value of 0
create := `CREATE TABLE goose_db_version (
id int unsigned NOT NULL AUTO_INCREMENT,
version_id bigint NOT NULL,
is_applied boolean NOT NULL,
tstamp timestamp NULL default now(),
PRIMARY KEY(tstamp)
PRIMARY KEY(id),
UNIQUE KEY id_tstamp (id, tstamp)
);`
insert := "INSERT INTO goose_db_version (version_id, is_applied) VALUES (0, true);"