summaryrefslogtreecommitdiffstats
path: root/sql_scripts/update_2009_02_26_001.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql_scripts/update_2009_02_26_001.sql')
-rw-r--r--sql_scripts/update_2009_02_26_001.sql19
1 files changed, 19 insertions, 0 deletions
diff --git a/sql_scripts/update_2009_02_26_001.sql b/sql_scripts/update_2009_02_26_001.sql
new file mode 100644
index 00000000..9cc80974
--- /dev/null
+++ b/sql_scripts/update_2009_02_26_001.sql
@@ -0,0 +1,19 @@
+ALTER TABLE answer ADD COLUMN `accepted_at` datetime default null;
+
+/* Update accepted_at column with answer added datetime for existing data */
+UPDATE answer
+SET accepted_at = added_at
+WHERE accepted = 1 AND accepted_at IS NULL;
+
+/* workround for c# url problem on bluehost server */
+UPDATE tag
+SET name = 'csharp'
+WHERE name = 'c#'
+
+UPDATE question
+SET tagnames = replace(tagnames, 'c#', 'csharp')
+WHERE tagnames like '%c#%'
+
+UPDATE question_revision
+SET tagnames = replace(tagnames, 'c#', 'csharp')
+WHERE tagnames like '%c#%' \ No newline at end of file