Fix goose_db_version table for postgres.

Tested with:
* mysql  Ver 15.1 Distrib 5.5.28a-MariaDB
* psql (PostgreSQL) 9.2.2
pull/2/head
Abigail Walthall 2013-01-17 09:34:37 -05:00
parent 430f2bf9d0
commit 527ee49c38
1 changed files with 2 additions and 3 deletions

View File

@ -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);"