diff --git a/README.md b/README.md new file mode 100644 index 0000000..87889fe --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# Database migration + +### 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 +); +```