Task list database table - TaskDepender

Task list database table

From TaskDepender
Jump to: navigation, search
(Implementation)
(Implementation)
Line 47: Line 47:
  
 
<syntaxhighlight lang="sql">
 
<syntaxhighlight lang="sql">
ALTER TABLE ADD COLUMN Parent
+
ALTER TABLE TaskList ADD
 
+
  Parent INTEGER REFERENCES Tasks(Id) ON DELETE CASCADE
 
</syntaxhighlight>
 
</syntaxhighlight>
  

Revision as of 14:21, 16 October 2011

Personal tools