8 lines
179 B
JavaScript
Executable File
8 lines
179 B
JavaScript
Executable File
exports.up = async knex => {
|
|
return knex.schema.createTable('users', table => {
|
|
table.uuid('id').primary();
|
|
table.text('name');
|
|
});
|
|
};
|
|
|
|
exports.down = async () => {}; |