You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
339 B

  1. exports.up = knex => {
  2. return knex.schema
  3. .alterTable('comments', table => {
  4. table.text('render').notNullable().defaultTo('')
  5. table.string('name').notNullable().defaultTo('')
  6. table.string('email').notNullable().defaultTo('')
  7. table.string('ip').notNullable().defaultTo('')
  8. })
  9. }
  10. exports.down = knex => { }