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.
Matterwiki/migrations/20160914153628_history.js

15 lines
477 B
JavaScript

exports.up = function(knex, Promise) {
return knex.schema.createTable('archives', function (table) {
table.increments().primary();
table.integer('article_id').references('articles.id').notNullable();
table.string('title').notNullable();
table.text('body').notNullable();
table.timestamp('updated_at').notNullable().defaultTo(knex.raw('CURRENT_TIMESTAMP'));
})
};
exports.down = function(knex, Promise) {
return knex.schema.dropTable('archives');
};