moved account support to own ejb project

This commit is contained in:
jomu
2015-11-16 22:23:19 +00:00
parent a04c3b6160
commit 3153538bae
22 changed files with 1914 additions and 0 deletions

View File

@ -0,0 +1,8 @@
DROP TABLE config;
CREATE TABLE config (
config_key varchar(100),
config_value varchar(200),
CONSTRAINT config_pk PRIMARY KEY (config_key)
);
INSERT INTO config (config_key, config_value) VALUES ('account.maxFailedLogins', '5');