Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JBinggi committed Feb 14, 2020
1 parent 7afab81 commit 31f4902
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions data/data_extended.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ INSERT INTO `core_form_field` (`Field_ID`, `type`, `label`, `fieldkey`, `tab`, `
(NULL, 'textarea', 'Description', 'description', 'project-base', 'project-single', 'col-md-12', '', '', 0, 1, 0, '', '', ''),
(NULL, 'select', 'State', 'state_idfs', 'project-base', 'project-single', 'col-md-3', '', '/tag/api/list/project-single/state', 1, 1, 0, 'entitytag-single', 'OnePlace\\Tag\\Model\\EntityTagTable','add-OnePlace\\Project\\Controller\\StateController'),
(NULL, 'select', 'Customer', 'customer_idfs', 'project-base', 'project-single', 'col-md-3', '', '/contact/api/list/0', 0, 1, 0, 'contact-single', 'OnePlace\\Contact\\Model\\ContactTable','add-OnePlace\\Contact\\Controller\\ContactController'),
(NULL, 'select', 'Person responsible', 'resposible_idfs', 'project-base', 'project-single', 'col-md-3', '', '/tag/api/list/project-single/responsible', 0, 1, 0, 'entitytag-single', 'OnePlace\\Tag\\Model\\EntityTagTable','add-OnePlace\\Project\\Controller\\PersonResponsibleController'),
(NULL, 'select', 'Person responsible', 'responsible_idfs', 'project-base', 'project-single', 'col-md-3', '', '/tag/api/list/project-single/responsible', 0, 1, 0, 'entitytag-single', 'OnePlace\\Tag\\Model\\EntityTagTable','add-OnePlace\\Project\\Controller\\PersonResponsibleController'),
(NULL, 'date', 'planned Release', 'planned_release', 'project-base', 'project-single', 'col-md-2', '', '', 0, 1, 0, '', '', ''),
(NULL, 'currency', 'Budget', 'budget', 'project-base', 'project-single', 'col-md-1', '', '', 0, 1, 0, '', '', ''),
(NULL, 'currency', 'Budget', 'budget', 'project-base', 'project-single', 'col-md-3', '', '', 0, 1, 0, '', '', ''),
(NULL, 'multiselect', 'Categories', 'category_idfs', 'project-base', 'project-single', 'col-md-3', '', '/tag/api/list/project-single/category', 1, 1, 0, 'entitytag-single', 'OnePlace\\Tag\\Model\\EntityTagTable', 'add-OnePlace\\Project\\Controller\\CategoryController'),
(NULL, 'featuredimage', 'Featured Image', 'featured_image', 'project-base', 'project-single', 'col-md-3', '', '', 0, 1, 0, '', '', '');

Expand Down
4 changes: 2 additions & 2 deletions data/structure_extended.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ ALTER TABLE `project` ADD `description` TEXT NOT NULL DEFAULT '' AFTER `label`,
ADD `state_idfs` INT(11) NOT NULL DEFAULT '0' AFTER `description`,
ADD `customer_idfs` INT(11) NOT NULL DEFAULT '0' AFTER `state_idfs`,
ADD `planned_release` DATE NOT NULL DEFAULT '0000-00-00' AFTER `customer_idfs`,
ADD `resposible_idfs` INT(11) NOT NULL DEFAULT '0' AFTER `planned_release`,
ADD `budget` FLOAT NOT NULL DEFAULT 0 AFTER `resposible_idfs`,
ADD `responsible_idfs` INT(11) NOT NULL DEFAULT '0' AFTER `planned_release`,
ADD `budget` FLOAT NOT NULL DEFAULT 0 AFTER `responsible_idfs`,
ADD `featured_image` VARCHAR (255) NOT NULL DEFAULT '' AFTER `budget`;

0 comments on commit 31f4902

Please sign in to comment.