10 lines
201 B
JavaScript
10 lines
201 B
JavaScript
|
exports.up = knex => {
|
||
|
return knex.schema
|
||
|
.createTable('userAvatars', table => {
|
||
|
table.integer('id').primary()
|
||
|
table.binary('data').notNullable()
|
||
|
})
|
||
|
}
|
||
|
|
||
|
exports.down = knex => { }
|