From 3f946b2db1ce64cd99fa9b7fb6ac3f6c78a0a6c9 Mon Sep 17 00:00:00 2001 From: floydpraveen Date: Thu, 22 Aug 2013 17:53:19 +0530 Subject: [PATCH] sql to alter the table and add is_completed column --- schema/alterTable.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 schema/alterTable.sql diff --git a/schema/alterTable.sql b/schema/alterTable.sql new file mode 100644 index 0000000..92b7f29 --- /dev/null +++ b/schema/alterTable.sql @@ -0,0 +1,3 @@ +ALTER TABLE `tasks` +ADD COLUMN `is_completed` CHAR(1) +NOT NULL AFTER `parent_id` ;