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.

9 lines
201 B

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