mirror of https://github.com/pressly/goose.git
Fix Bug when finalizing the migration table when calling `goose up` for the first time
parent
85fac2eb96
commit
b7fd3077d1
|
@ -243,10 +243,12 @@ func createVersionTable(db *sql.DB) error {
|
||||||
|
|
||||||
// create the table and insert an initial value of 0
|
// create the table and insert an initial value of 0
|
||||||
create := `CREATE TABLE goose_db_version (
|
create := `CREATE TABLE goose_db_version (
|
||||||
|
id int unsigned NOT NULL AUTO_INCREMENT,
|
||||||
version_id bigint NOT NULL,
|
version_id bigint NOT NULL,
|
||||||
is_applied boolean NOT NULL,
|
is_applied boolean NOT NULL,
|
||||||
tstamp timestamp NULL default now(),
|
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);"
|
insert := "INSERT INTO goose_db_version (version_id, is_applied) VALUES (0, true);"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue