When scema is automatically generated for a Firebird DB table containing boolean column, it looks like the following:
t.column "internal_rules", :boolean, :limit => 2, :precision => 0, :scale => 0
instead of just
t.column "internal_rules", :boolean
So, when using rake db:test:prepare for applying that schema to the test DB,
the following invalid SQL is generated for that column:
"INTERNAL_RULES" d_boolean(2)(2)(2)(2) DEFAULT NULL
|