您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20240319011222_remove nothing.js 253 B

2 年前
12345678910111213
  1. exports.up = function(knex) {
  2. return knex.schema
  3. .dropTable('Nothing')
  4. };
  5. exports.down = function(knex) {
  6. return knex.schema
  7. .createTable('Nothing', async function (table) {
  8. table.increments('id').primary().notNullable();
  9. })
  10. };