Recently I changed a column of database table to another. After performing a migration doctrine when I do:
$this->getRoute()->getObject()
I returned an error:
"SQLSTATE [42S22]: Column not found: 1054 Unknown column 'p.price_discount' in 'field list'"
if I:
ProductTable::getInstance()->find(1);
everything works fine!
I emptied the cache done 1000 times and build - all as many.
my schema.yml:
Product:
tableName: products
actAs:
Timestampable:
created:
name: created_at
type: timestamp
form: d-m-Y H:i:s
I18n:
fields: [title, subtitle, description, datasheet, returns_shippings, inspiration, use_care]
actAs:
Sluggable: { fields: [title], uniqueBy: [lang, title] }
columns:
id:
type: integer(4)
primary: true
notnull: true
autoincrement: true
ref:
type: string(45)
unique: true
notnull: true
active:
type: boolean
notnull: true
default: 0
new:
type: boolean
notnull: true
default: 0
title:
type: string(45)
subtitle:
type: string(45)
inspiration: clob
use_care: clob
brand:
type: string(45)
description:
type: clob(65535)
datasheet:
type: clob(65535)
returns_shippings:
type: clob(65535)
price:
type: float
notnull: true
default: 0
votes:
type: integer
notnull: true
default: 0
weight:
type: float
notnull: true
default: 0
iva_id:
type: integer(4)
notnull: true
relations:
Iva:
class: Iva
local: iva_id
foreign: id
foreignAlias: Products
Styles:
foreignAlias: Products
class: Style
refClass: StyleProduct
onDelete: CASCADE
Categories:
foreignAlias: Products
class: Category
refClass: CategoryProduct
onDelete: CASCADE
RelatedProducts:
foreignAlias: Products
class: Product
refClass: RelatedProduct
local: product_id
foreign: product_id1
onDelete: CASCADE
What happens?
./symfony doctrine:build --model– j0k May 30 '12 at 11:25Producttable. – j0k May 30 '12 at 11:27./symfony doctrine:build --all. – Samy Dindane May 30 '12 at 12:04