migrations

This commit is contained in:
ntr
2018-09-13 17:21:49 +10:00
parent fccfd0e03a
commit c3194fba97
9 changed files with 48 additions and 49 deletions
+8
View File
@@ -0,0 +1,8 @@
exports.up = async knex => {
return knex.schema.createTable('users', table => {
table.uuid('id').primary();
table.text('name');
});
};
exports.down = async () => {};