chiark / gitweb /
sql/update-*-v2.sql: Scripts to upgrade existing database schemata.
[odin-cgi] / sql / update-pastebin-v2.sql
diff --git a/sql/update-pastebin-v2.sql b/sql/update-pastebin-v2.sql
new file mode 100644 (file)
index 0000000..be7d2e7
--- /dev/null
@@ -0,0 +1,16 @@
+/* -*-sql-*-
+ *
+ * Plain old SQL for setting up the tables for Odin web services.
+ */
+
+begin;
+alter table odin_pastebin alter column lang set default 'txt';
+alter table odin_pastebin rename column stamp to oldstamp;
+alter table odin_pastebin add column stamp bigint not null default 0;
+update odin_pastebin set stamp = extract(epoch from oldstamp);
+commit;
+
+begin;
+alter table odin_pastebin drop column oldstamp;
+alter table odin_pastebin alter column stamp drop default;
+commit;