mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
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 => { }
|