added header_first to WebPAC::Input::CSV
[webpac2] / t / conf / schema.sql
1 drop table if exists test;
2
3 create table test (
4         id serial,
5         foo int not null,
6         bar int,
7         baz text
8 );