send emails and confirm
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
exports.up = async knex => {
|
||||
await knex.schema.createTable('email', table => {
|
||||
await knex.schema.createTable('emails', table => {
|
||||
table.timestamps(true, true);
|
||||
|
||||
table.uuid('id')
|
||||
.primary();
|
||||
.primary()
|
||||
.index();
|
||||
|
||||
table.uuid('account')
|
||||
|
||||
Reference in New Issue
Block a user