Shout: add CREDITS and Shout storage SQL script
authorBen Klang <ben@alkaloid.net>
Sun, 28 Feb 2010 22:23:39 +0000 (17:23 -0500)
committerBen Klang <ben@alkaloid.net>
Sun, 28 Feb 2010 22:23:39 +0000 (17:23 -0500)
shout/docs/CREDITS [new file with mode: 0644]
shout/scripts/sql/shout.sql [new file with mode: 0644]

diff --git a/shout/docs/CREDITS b/shout/docs/CREDITS
new file mode 100644 (file)
index 0000000..eec4457
--- /dev/null
@@ -0,0 +1,7 @@
+ * Silk icons are from Mark James
+ * (http://www.famfamfam.com/lab/icons/silk/), used under a Creative
+ * Commons Attribution 2.5 License.  "This means you may
+ * use it for any purpose, and make any changes you like.  All I ask
+ * is that you include a link back to this page in your credits."
+ * Thank you, Mark James, for your excellent icon set.
+
diff --git a/shout/scripts/sql/shout.sql b/shout/scripts/sql/shout.sql
new file mode 100644 (file)
index 0000000..a4a0e0e
--- /dev/null
@@ -0,0 +1,10 @@
+CREATE TABLE shout_contexts (
+    context_name VARCHAR(15) NOT NULL
+);
+
+CREATE TABLE shout_menus (
+    context_name VARCHAR(15) NOT NULL,
+    menu_name VARCHAR(15) NOT NULL,
+    menu_description VARCHAR(255),
+    menu_soundfile VARCHAR(80) NOT NULL
+);