From b7fd3077d1e389611678e65f28e86f8eba7ef721 Mon Sep 17 00:00:00 2001 From: Abigail Walthall Date: Wed, 16 Jan 2013 15:38:45 -0500 Subject: [PATCH] Fix Bug when finalizing the migration table when calling `goose up` for the first time --- migrate.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/migrate.go b/migrate.go index 59d6938..e1b73be 100644 --- a/migrate.go +++ b/migrate.go @@ -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);"