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.

20240319002134_Nothing.js 229 B

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