X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=mysql.sql;h=72701be81f24514c1ddd6405483fc15f56fe651d;hb=343bde69ae7c9d8efc8a814ce891a3f04b8f502c;hp=de5060dad95df2b15ccee3877d4a74ffb41d3212;hpb=1b6699f3d4ad1961fa4055ec0033bc10f0b06b83;p=timetracker.git diff --git a/mysql.sql b/mysql.sql index de5060da..72701be8 100644 --- a/mysql.sql +++ b/mysql.sql @@ -16,7 +16,6 @@ CREATE TABLE `tt_teams` ( `id` int(11) NOT NULL auto_increment, # team id `timestamp` timestamp NOT NULL, # modification timestamp `name` varchar(80) default NULL, # team name - `address` varchar(255) default NULL, # team address, used in invoices `currency` varchar(7) default NULL, # team currency symbol `decimal_mark` char(1) NOT NULL default '.', # separator in decimals `lang` varchar(10) NOT NULL default 'en', # language @@ -144,6 +143,7 @@ CREATE TABLE `tt_log` ( `invoice_id` int(11) default NULL, # invoice id `comment` text, # user provided comment for time record `billable` tinyint(4) default '0', # whether the record is billable or not + `paid` tinyint(4) default '0', # whether the record is paid `status` tinyint(4) default '1', # time record status PRIMARY KEY (`id`) );