Hi,
I'm working on my first implementation of symfony and I couldn't find a solution to this problem:
in my schema.yml fil I have this table definition:
propel:
area:
_attributes: { phpName: Area }
id: varchar(12)
name: varchar(32)
level: { type: tinyint, unsigned: true, index: true }
but after I run propel-build-model + propel-build-sql there is not trace of the unsigned property, the sql to create the db doesn't contains that column property at all.
I think it can be a bug since in all the docs I found that definitions seems to be correct.