add profile picture

This commit is contained in:
Tutur33
2023-12-06 20:43:25 +01:00
parent bdc6c56467
commit f81296cf7c
15 changed files with 952 additions and 32 deletions
@@ -10,6 +10,7 @@ export default class extends BaseSchema {
table.string('pseudo', 50).notNullable()
table.string('email', 255).notNullable().unique()
table.string('password', 180).notNullable()
table.json('avatar')
table.string('remember_me_token').nullable()
table.timestamp('created_at', { useTz: true }).notNullable()