mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-25 23:05:30 +02:00
2012-07-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* pandoradb_data.sql pandoradb.data.postgreSQL.sql pandoradb.data.oracle.sql extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Added meta_style row in tconfig. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6730 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
54413d96b2
commit
a779a86252
@ -1,3 +1,13 @@
|
|||||||
|
2012-07-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
|
* pandoradb_data.sql
|
||||||
|
pandoradb.data.postgreSQL.sql
|
||||||
|
pandoradb.data.oracle.sql
|
||||||
|
extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql
|
||||||
|
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql
|
||||||
|
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Added
|
||||||
|
meta_style row in tconfig.
|
||||||
|
|
||||||
2012-07-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
2012-07-03 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
* include/functions_api.php: Removed innecesary flags in some policy
|
* include/functions_api.php: Removed innecesary flags in some policy
|
||||||
|
@ -247,7 +247,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
|||||||
('number_attempts', 5),
|
('number_attempts', 5),
|
||||||
('enable_pass_policy_admin', 0),
|
('enable_pass_policy_admin', 0),
|
||||||
('enable_pass_history', 0),
|
('enable_pass_history', 0),
|
||||||
('compare_pass', 3);
|
('compare_pass', 3),
|
||||||
|
('meta_style', 'meta_pandora');
|
||||||
|
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
-- Table `tpassword_history`
|
-- Table `tpassword_history`
|
||||||
|
@ -239,18 +239,18 @@ INSERT INTO talert_commands (name, command, description, internal) VALUES ('Vali
|
|||||||
-- Table `tconfig`
|
-- Table `tconfig`
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
|
|
||||||
INSERT INTO tconfig (token, value) VALUES
|
INSERT INTO tconfig (token, value) VALUES ('enable_pass_policy', 0);
|
||||||
('enable_pass_policy', 0),
|
INSERT INTO tconfig (token, value) VALUES ('pass_size', 4);
|
||||||
('pass_size', 4),
|
INSERT INTO tconfig (token, value) VALUES ('pass_needs_numbers', 0);
|
||||||
('pass_needs_numbers', 0),
|
INSERT INTO tconfig (token, value) VALUES ('pass_needs_symbols', 0);
|
||||||
('pass_needs_symbols', 0),
|
INSERT INTO tconfig (token, value) VALUES ('pass_expire', 0);
|
||||||
('pass_expire', 0),
|
INSERT INTO tconfig (token, value) VALUES ('first_login', 0);
|
||||||
('first_login', 0),
|
INSERT INTO tconfig (token, value) VALUES ('mins_fail_pass', 5);
|
||||||
('mins_fail_pass', 5),
|
INSERT INTO tconfig (token, value) VALUES ('number_attempts', 5);
|
||||||
('number_attempts', 5),
|
INSERT INTO tconfig (token, value) VALUES ('enable_pass_policy_admin', 0);
|
||||||
('enable_pass_policy_admin', 0),
|
INSERT INTO tconfig (token, value) VALUES ('enable_pass_history', 0);
|
||||||
('enable_pass_history', 0),
|
INSERT INTO tconfig (token, value) VALUES ('compare_pass', 3);
|
||||||
('compare_pass', 3);
|
INSERT INTO tconfig (token, value) VALUES ('meta_style', 'meta_pandora');
|
||||||
|
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
-- Table `tpassword_history`
|
-- Table `tpassword_history`
|
||||||
|
@ -239,7 +239,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
|
|||||||
('number_attempts', 5),
|
('number_attempts', 5),
|
||||||
('enable_pass_policy_admin', 0),
|
('enable_pass_policy_admin', 0),
|
||||||
('enable_pass_history', 0),
|
('enable_pass_history', 0),
|
||||||
('compare_pass', 3);
|
('compare_pass', 3),
|
||||||
|
('meta_style', 'meta_pandora');
|
||||||
|
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
-- Table `tpassword_history`
|
-- Table `tpassword_history`
|
||||||
|
@ -103,6 +103,7 @@ INSERT INTO tconfig (token, value) VALUES ('number_attempts', 5);
|
|||||||
INSERT INTO tconfig (token, value) VALUES ('enable_pass_policy_admin', 0);
|
INSERT INTO tconfig (token, value) VALUES ('enable_pass_policy_admin', 0);
|
||||||
INSERT INTO tconfig (token, value) VALUES ('enable_pass_history', 0);
|
INSERT INTO tconfig (token, value) VALUES ('enable_pass_history', 0);
|
||||||
INSERT INTO tconfig (token, value) VALUES ('compare_pass', 3);
|
INSERT INTO tconfig (token, value) VALUES ('compare_pass', 3);
|
||||||
|
INSERT INTO tconfig (token, value) VALUES ('meta_style', 'meta_pandora');
|
||||||
COMMIT;
|
COMMIT;
|
||||||
END;;
|
END;;
|
||||||
|
|
||||||
|
@ -98,7 +98,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
|
|||||||
('number_attempts', 5),
|
('number_attempts', 5),
|
||||||
('enable_pass_policy_admin', 0),
|
('enable_pass_policy_admin', 0),
|
||||||
('enable_pass_history', 0),
|
('enable_pass_history', 0),
|
||||||
('compare_pass', 3);
|
('compare_pass', 3),
|
||||||
|
('meta_style', 'meta_pandora');
|
||||||
|
|
||||||
COMMIT WORK;
|
COMMIT WORK;
|
||||||
|
|
||||||
|
@ -97,7 +97,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
|||||||
('number_attempts', 5),
|
('number_attempts', 5),
|
||||||
('enable_pass_policy_admin', 0),
|
('enable_pass_policy_admin', 0),
|
||||||
('enable_pass_history', 0),
|
('enable_pass_history', 0),
|
||||||
('compare_pass', 3);
|
('compare_pass', 3),
|
||||||
|
('meta_style', 'meta_pandora');
|
||||||
|
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user