send emails and confirm

This commit is contained in:
ntr
2019-08-26 00:40:33 +10:00
parent df1ccdb8cd
commit b75edcda66
7 changed files with 92 additions and 62 deletions
+2 -2
View File
@@ -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')