Added field to db

This commit is contained in:
Arturo Gonzalez 2017-05-29 11:58:42 +02:00
parent a4636f3435
commit 1e0af6ec26
2 changed files with 2 additions and 0 deletions

View File

@ -1219,6 +1219,7 @@ ALTER TABLE tlayout_data ADD `label_position` varchar(50) NOT NULL default 'down
-- Table `tagent_custom_fields`
-- ---------------------------------------------------------------------
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

View File

@ -1702,6 +1702,7 @@ CREATE TABLE IF NOT EXISTS `tagent_custom_fields` (
`id_field` int(10) unsigned NOT NULL auto_increment,
`name` varchar(45) NOT NULL default '',
`display_on_front` tinyint(1) NOT NULL default 0,
`is_password_type` tinyint(1) NOT NULL default 0,
PRIMARY KEY (`id_field`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;