We're currently generating this: ```sql create table t (c int64 not null default 1); ``` When we should be generating this, instead: ```sql create table t (c int64 default 1 not null); ```