sql to alter the table and add is_completed column

This commit is contained in:
floydpraveen
2013-08-22 17:53:19 +05:30
parent 5ec46e8899
commit 3f946b2db1
+3
View File
@@ -0,0 +1,3 @@
ALTER TABLE `tasks`
ADD COLUMN `is_completed` CHAR(1)
NOT NULL AFTER `parent_id` ;