migrations
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
exports.up = async knex => {
|
||||
return knex.schema.createTable('users', table => {
|
||||
table.uuid('id').primary();
|
||||
table.text('name');
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = async () => {};
|
||||
Reference in New Issue
Block a user