mdmoss / doobie-codegen

Generate Doobie database code from sql statements.
MIT License
10 stars 7 forks source link

ALTER TABLE comma separated actions #28

Open DpEpsilon opened 7 years ago

DpEpsilon commented 7 years ago

Instead of

ALTER TABLE x ADD a TEXT; ALTER TABLE x ADD b TEXT; ALTER TABLE x ADD c TEXT;

it should be possible to do this

ALTER TABLE x ADD a TEXT, ADD b TEXT, ADD c TEXT;

without gen complaining.