mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 01:05:39 +02:00
2013-10-07 Ramon Novoa <rnovoa@artica.es>
* extras/pandoradb_migrate_4.1_to_5.0.postgreSQL.sql, extras/pandoradb_migrate_4.1_to_5.0.oracle.sql, extras/pandoradb_migrate_4.1_to_5.0.mysql.sql: Added to repository. 4.1 to 5.0 migration scripts. * extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql, extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql, extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: Removed a suspicious insert into tusuario. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8859 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
2f555980ce
commit
756d36a310
@ -1,3 +1,15 @@
|
||||
2013-10-07 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* extras/pandoradb_migrate_4.1_to_5.0.postgreSQL.sql,
|
||||
extras/pandoradb_migrate_4.1_to_5.0.oracle.sql,
|
||||
extras/pandoradb_migrate_4.1_to_5.0.mysql.sql: Added to repository.
|
||||
4.1 to 5.0 migration scripts.
|
||||
|
||||
* extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql,
|
||||
extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql,
|
||||
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: Removed a suspicious
|
||||
insert into tusuario.
|
||||
|
||||
2013-10-07 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/styles/pandora.css
|
||||
|
@ -284,7 +284,6 @@ UPDATE ttipo_modulo SET descripcion='Generic data incremental' WHERE id_tipo=4;
|
||||
-- Table `tusuario`
|
||||
-- ----------------------------------------------------------------------
|
||||
ALTER TABLE `tusuario` ADD COLUMN `section` TEXT NOT NULL;
|
||||
INSERT INTO `tusuario` (`section`) VALUES ('Default');
|
||||
ALTER TABLE `tusuario` ADD COLUMN `data_section` TEXT NOT NULL;
|
||||
ALTER TABLE `tusuario` ADD COLUMN `disabled` int(4) NOT NULL DEFAULT 0;
|
||||
ALTER TABLE `tusuario` ADD COLUMN `shortcut` tinyint(1) DEFAULT 0;
|
||||
|
@ -12,7 +12,6 @@ ALTER TABLE tusuario ADD (disabled NUMBER(10, 0) NOT NULL DEFAULT 0;
|
||||
ALTER TABLE tusuario ADD (shortcut NUMBER(5, 0) DEFAULT 0;
|
||||
ALTER TABLE tusuario ADD (shortcut_data CLOB DEFAULT '';
|
||||
ALTER TABLE tusuario ADD (section VARCHAR2(255) NOT NULL);
|
||||
INSERT INTO tusuario (section) VALUES ('Default');
|
||||
ALTER TABLE tusuario ADD ((data_section VARCHAR2(255) NOT NULL);
|
||||
ALTER TABLE tusuario ADD ((metaconsole_access VARCHAR2(100) DEFAULT 'basic' NOT NULL);
|
||||
ALTER TABLE tusuario ADD CONSTRAINT t_usuario_metaconsole_access_cons CHECK (metaconsole_access IN ('basic','advanced'));
|
||||
|
@ -7,7 +7,6 @@ ALTER TABLE "tusuario" ADD COLUMN "disabled" INTEGER NOT NULL DEFAULT 0;
|
||||
ALTER TABLE "tusuario" ADD COLUMN "shortcut" SMALLINT DEFAULT 0;
|
||||
ALTER TABLE "tusuario" ADD COLUMN "shortcut_data" text DEFAULT '';
|
||||
ALTER TABLE "tusuario" ADD COLUMN "section" varchar(255) NOT NULL DEFAULT '';
|
||||
INSERT INTO "tusuario" ("section") VALUES ("Default");
|
||||
ALTER TABLE "tusuario" ADD COLUMN "data_section" varchar(255) NOT NULL DEFAULT '';
|
||||
ALTER TABLE "tusuario" ADD COLUMN "force_change_pass" SMALLINT NOT NULL DEFAULT 0;
|
||||
ALTER TABLE "tusuario" ADD COLUMN "last_pass_change" BIGINT NOT NULL DEFAULT 0;
|
||||
|
1153
pandora_console/extras/pandoradb_migrate_4.1_to_5.0.mysql.sql
Normal file
1153
pandora_console/extras/pandoradb_migrate_4.1_to_5.0.mysql.sql
Normal file
File diff suppressed because it is too large
Load Diff
1160
pandora_console/extras/pandoradb_migrate_4.1_to_5.0.oracle.sql
Normal file
1160
pandora_console/extras/pandoradb_migrate_4.1_to_5.0.oracle.sql
Normal file
File diff suppressed because it is too large
Load Diff
1144
pandora_console/extras/pandoradb_migrate_4.1_to_5.0.postgreSQL.sql
Normal file
1144
pandora_console/extras/pandoradb_migrate_4.1_to_5.0.postgreSQL.sql
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user