feat: ldap avatar support
This commit is contained in:
9
server/db/migrations-sqlite/2.5.122.js
Normal file
9
server/db/migrations-sqlite/2.5.122.js
Normal file
@@ -0,0 +1,9 @@
|
||||
exports.up = knex => {
|
||||
return knex.schema
|
||||
.createTable('userAvatars', table => {
|
||||
table.integer('id').primary()
|
||||
table.binary('data').notNullable()
|
||||
})
|
||||
}
|
||||
|
||||
exports.down = knex => { }
|
Reference in New Issue
Block a user