mirror of https://github.com/Requarks/wiki.git
9 lines
201 B
9 lines
201 B
exports.up = knex => {
|
|
return knex.schema
|
|
.createTable('userAvatars', table => {
|
|
table.integer('id').primary()
|
|
table.binary('data').notNullable()
|
|
})
|
|
}
|
|
|
|
exports.down = knex => { }
|