I have some problem. I work on symfony 1.4. I want to add a new column in my table and generate in php getter and setter to use it.
So In my shema.yml I add my column in my table like this:
version : {type: integer}
userName_canonical : {type: varchar(255)}
email_canonical : {type: varchar(255)}
qualifications: {type: array}
qualification_autre: {type: string}
promo: {type: boolean, default: 0}
next_request_at: {type: date, default: null}<-----
But I search everywhere and I don't know how I can modify my entity and create this column in my database. Someone know which is the command using to modify my entity in symfony 1.4 ??
Thank in advance