Add user confirmation module

This commit is contained in:
Rei
2014-04-12 16:24:11 +08:00
parent e590168558
commit 10bc72acc2
22 changed files with 286 additions and 53 deletions

View File

@@ -295,7 +295,8 @@ CREATE TABLE users (
locale character varying(255),
locked_at timestamp without time zone,
created_at timestamp without time zone,
updated_at timestamp without time zone
updated_at timestamp without time zone,
confirmed boolean DEFAULT false
);
@@ -576,3 +577,5 @@ INSERT INTO schema_migrations (version) VALUES ('20140310070632');
INSERT INTO schema_migrations (version) VALUES ('20140405074043');
INSERT INTO schema_migrations (version) VALUES ('20140412065000');