Subject: | broken sql getting generated |
using DBD::SQLite ...
Springfield.pm spits out
CREATE TABLE Credit
(
id INTEGER NOT NULL,
PRIMARY KEY( id ),
type INTEGER NOT NULL,
theLimit INT NULL
) ;
which ought to be
CREATE TABLE Credit
(
id INTEGER NOT NULL,
theLimit INT NULL,
type INTEGER NOT NULL,
PRIMARY KEY( id )
) ;
Springfield.pm does this for all create table statements.