implement account locking/unlocking

This commit is contained in:
Bilal
2020-09-08 16:25:32 +03:00
parent 3db230de9b
commit 9bafbe36db
12 changed files with 83 additions and 3 deletions

View File

@@ -95,7 +95,8 @@ CREATE TABLE public.accounts (
slug character varying,
plan_uid character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
updated_at timestamp without time zone NOT NULL,
locked boolean DEFAULT false
);
@@ -4027,6 +4028,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20200812060406'),
('20200819070738'),
('20200820082501'),
('20200824171649');
('20200824171649'),
('20200908085319');