Skip to content

Commit

Permalink
Merge pull request #108 from lukaszbudnik/dev-v2020.1.1
Browse files Browse the repository at this point in the history
v2020.1.1
  • Loading branch information
lukaszbudnik authored Jun 30, 2020
2 parents 2564834 + 32ec5a9 commit 71d33c1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ services:
- mysql

go:
- "1.12"
- "1.13"

before_script:
Expand Down
2 changes: 1 addition & 1 deletion db/db_postgresql.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if not exists (select * from information_schema.tables where table_schema = '%v'
create table %v.%v (
id serial primary key,
name varchar(200) not null,
created timestamp default now()
created timestamp with time zone default now()
);
alter table %v.%v add column version_id integer;
create index migrator_versions_version_id_idx on %v.%v (version_id);
Expand Down
2 changes: 1 addition & 1 deletion db/db_postgresql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ if not exists (select * from information_schema.tables where table_schema = 'mig
create table migrator.migrator_versions (
id serial primary key,
name varchar(200) not null,
created timestamp default now()
created timestamp with time zone default now()
);
alter table migrator.migrator_migrations add column version_id integer;
create index migrator_versions_version_id_idx on migrator.migrator_migrations (version_id);
Expand Down

0 comments on commit 71d33c1

Please sign in to comment.