You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
470 B
JavaScript
15 lines
470 B
JavaScript
|
|
exports.up = function(knex, Promise) {
|
|
return knex.schema.createTable('topics', function (table) {
|
|
table.increments().primary();
|
|
table.string('name');
|
|
table.string('description');
|
|
table.timestamp('created_at').notNullable().defaultTo(knex.raw('CURRENT_TIMESTAMP'));
|
|
table.timestamp('updated_at').notNullable().defaultTo(knex.raw('CURRENT_TIMESTAMP'));
|
|
})
|
|
};
|
|
|
|
exports.down = function(knex, Promise) {
|
|
return knex.schema.dropTable('topics');
|
|
};
|