mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
feat: User email verification after signing-up.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
exports.up = function (knex) {
|
||||
return knex.schema.table('users', (table) => {
|
||||
table.string('verify_token');
|
||||
table.boolean('verified').defaultTo(false);
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = (knex) => {};
|
||||
Reference in New Issue
Block a user