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