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
466 B
JavaScript
15 lines
466 B
JavaScript
|
|
exports.up = function(knex, Promise) {
|
|
return knex.schema.createTable('articles', function (table) {
|
|
table.increments().primary();
|
|
table.string('title');
|
|
table.text('body');
|
|
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('articles');
|
|
};
|