X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=mysql.sql;h=fcc4371ebfd9751440e0e786d9ac64c843ee60ae;hb=0e6900be0bcfc882505ec4c8b8730a798985bc80;hp=eea348c032fcef1d9a3e2d52dc4faf4da4555ed7;hpb=295a9e2e600768af193e7b199dd86bd1f2d1fecb;p=timetracker.git diff --git a/mysql.sql b/mysql.sql index eea348c0..fcc4371e 100644 --- a/mysql.sql +++ b/mysql.sql @@ -534,6 +534,30 @@ CREATE TABLE `tt_templates` ( ); +# +# Structure for table tt_files. +# This table keeps file attachment information. +# +CREATE TABLE `tt_files` ( + `id` int(10) unsigned NOT NULL auto_increment, # file id + `group_id` int(10) unsigned, # group id + `org_id` int(10) unsigned, # organization id + `remote_id` bigint(20) unsigned, # file id in storage facility + `entity_type` varchar(32), # type of entity file is associated with (project, task, etc.) + `entity_id` int(10) unsigned, # entity id + `file_name` varchar(80) COLLATE utf8mb4_bin NOT NULL, # file name + `description` varchar(255) default NULL, # file description + `created` datetime default NULL, # creation timestamp + `created_ip` varchar(45) default NULL, # creator ip + `created_by` int(10) unsigned, # creator user_id + `modified` datetime default NULL, # modification timestamp + `modified_ip` varchar(45) default NULL, # modifier ip + `modified_by` int(10) unsigned, # modifier user_id + `status` tinyint(1) default 1, # file status + PRIMARY KEY (`id`) +); + + # # Structure for table tt_site_config. This table stores configuration data # for Time Tracker site as a whole. @@ -547,4 +571,4 @@ CREATE TABLE `tt_site_config` ( PRIMARY KEY (`param_name`) ); -INSERT INTO `tt_site_config` (`param_name`, `param_value`, `created`) VALUES ('version_db', '1.18.55', now()); # TODO: change when structure changes. +INSERT INTO `tt_site_config` (`param_name`, `param_value`, `created`) VALUES ('version_db', '1.18.59', now()); # TODO: change when structure changes.