Difference between revisions of "WorkFerret/tables/rate proj"
Jump to navigation
Jump to search
(working) |
(working for real) |
||
Line 3: | Line 3: | ||
* '''History''': | * '''History''': | ||
** '''2013-06-06''' Design work started. | ** '''2013-06-06''' Design work started. | ||
− | ** '''2013-06-07''' | + | ** '''2013-06-07''' Editing interface working. |
+ | ** '''2013-06-14''' Fixed bug in editing interface; update Rates drop-down in Project to use this table. | ||
==SQL== | ==SQL== | ||
<mysql>CREATE TABLE `rate_proj` ( | <mysql>CREATE TABLE `rate_proj` ( |
Latest revision as of 17:22, 15 June 2013
About
- Purpose: determines which rates are available for which projects
- History:
- 2013-06-06 Design work started.
- 2013-06-07 Editing interface working.
- 2013-06-14 Fixed bug in editing interface; update Rates drop-down in Project to use this table.
SQL
<mysql>CREATE TABLE `rate_proj` (
ID_Rate INT(4) NOT NULL, ID_Proj INT(4) NOT NULL, PRIMARY KEY(`ID_Rate`,`ID_Proj`)
) ENGINE=MyISAM;</mysql>