JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
add persistent.php (key/value store)
[wfpl.git] / examples / persistent.sql
diff --git a/examples/persistent.sql b/examples/persistent.sql
new file mode 100644 (file)
index 0000000..462b73c
--- /dev/null
@@ -0,0 +1,6 @@
+drop table if exists persistent;
+create table persistent (
+       k varchar(30) binary not null default "",
+       v varchar(255) binary not null default "",
+       primary key (k)
+) CHARSET=utf8;