337 B
337 B
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
);