Skip to content

Commit

Permalink
Dolibarr#23331 Add parent project field to database
Browse files Browse the repository at this point in the history
  • Loading branch information
mc2contributor committed May 11, 2023
1 parent c6cb293 commit c5927e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions htdocs/install/mysql/migration/17.0.0-18.0.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -411,3 +411,4 @@ CREATE TABLE llx_c_invoice_subtype (

ALTER TABLE llx_c_invoice_subtype ADD UNIQUE INDEX uk_c_invoice_subtype (entity, code);

ALTER TABLE llx_projet ADD COLUMN fk_project int DEFAULT NULL;
1 change: 1 addition & 0 deletions htdocs/install/mysql/tables/llx_projet.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
create table llx_projet
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_project integer DEFAULT NULL, -- parent project rowid
fk_soc integer,
datec datetime, -- date creation project
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
Expand Down

0 comments on commit c5927e0

Please sign in to comment.