mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 01:05:39 +02:00
Added field to db
This commit is contained in:
parent
a4636f3435
commit
1e0af6ec26
@ -1219,6 +1219,7 @@ ALTER TABLE tlayout_data ADD `label_position` varchar(50) NOT NULL default 'down
|
|||||||
-- Table `tagent_custom_fields`
|
-- Table `tagent_custom_fields`
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
INSERT INTO `tagent_custom_fields` (`name`) VALUES ('eHorusID');
|
INSERT INTO `tagent_custom_fields` (`name`) VALUES ('eHorusID');
|
||||||
|
ALTER TABLE tagent_custom_fields ADD `is_password_type` tinyint(1) NOT NULL DEFAULT 0;
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
-- Table `tagente_modulo` Fixed problems with blank space
|
-- Table `tagente_modulo` Fixed problems with blank space
|
||||||
|
@ -1702,6 +1702,7 @@ CREATE TABLE IF NOT EXISTS `tagent_custom_fields` (
|
|||||||
`id_field` int(10) unsigned NOT NULL auto_increment,
|
`id_field` int(10) unsigned NOT NULL auto_increment,
|
||||||
`name` varchar(45) NOT NULL default '',
|
`name` varchar(45) NOT NULL default '',
|
||||||
`display_on_front` tinyint(1) NOT NULL default 0,
|
`display_on_front` tinyint(1) NOT NULL default 0,
|
||||||
|
`is_password_type` tinyint(1) NOT NULL default 0,
|
||||||
PRIMARY KEY (`id_field`)
|
PRIMARY KEY (`id_field`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user