/framework/core/form/form.sql

http://zoop.googlecode.com/ · SQL · 10 lines · 8 code · 2 blank · 0 comment · 0 complexity · 432bcac3de2528744dc5b2b53e44b370 MD5 · raw file

  1. begin;
  2. create table session_form
  3. (
  4. id serial primary key,
  5. session_id text not null,
  6. fields text not null
  7. );
  8. commit;