mirror of https://github.com/pressly/goose.git
Fix goose_db_version table for postgres.
Tested with: * mysql Ver 15.1 Distrib 5.5.28a-MariaDB * psql (PostgreSQL) 9.2.2pull/2/head
parent
430f2bf9d0
commit
527ee49c38
|
@ -244,12 +244,11 @@ 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,
|
||||
id serial NOT NULL,
|
||||
version_id bigint NOT NULL,
|
||||
is_applied boolean NOT NULL,
|
||||
tstamp timestamp NULL default now(),
|
||||
PRIMARY KEY(id),
|
||||
UNIQUE KEY id_tstamp (id, tstamp)
|
||||
PRIMARY KEY(id)
|
||||
);`
|
||||
insert := "INSERT INTO goose_db_version (version_id, is_applied) VALUES (0, true);"
|
||||
|
||||
|
|
Loading…
Reference in New Issue