/framework/core/form/form.sql
http://zoop.googlecode.com/ · SQL · 10 lines · 8 code · 2 blank · 0 comment · 0 complexity · 432bcac3de2528744dc5b2b53e44b370 MD5 · raw file
- begin;
- create table session_form
- (
- id serial primary key,
- session_id text not null,
- fields text not null
- );
- commit;