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.

12 lines
256 B

  1. exports.up = knex => {
  2. return knex.schema
  3. .createTable('assetData', table => {
  4. table.integer('id').primary()
  5. table.binary('data').notNullable()
  6. })
  7. }
  8. exports.down = knex => {
  9. return knex.schema
  10. .dropTableIfExists('assetData')
  11. }