2016-02-12 12:00:09 +01:00
2016-02-12 11:47:19 +01:00
2016-02-12 11:47:19 +01:00
2016-02-12 12:00:09 +01:00

Database migration

Startup Engineering - Roll your own Database Migrations

Required table

create table database_versions (
  version varchar(32) not null,
  is_active boolean not null default false,
  creation_date timestamp not null default current_timestamp
);
S
Description
No description provided
Readme
1.6 MiB
Languages
PLpgSQL 97.7%
Shell 2.3%