Add initial README

This commit is contained in:
Rikard Bartholf
2016-02-12 11:57:08 +01:00
parent 2fb35d6027
commit 62f0801d78
+11
View File
@@ -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
);
```