JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
462b73c4c0a5889a71508c7fe81cbbd914c66c34
[wfpl.git] / persistent.sql
1 drop table if exists persistent;
2 create table persistent (
3         k varchar(30) binary not null default "",
4         v varchar(255) binary not null default "",
5         primary key (k)
6 ) CHARSET=utf8;