I need to extend the asset and teh entry table with a new fields
the entry table gets the new filed but the asset table does not, but it also does not give any error either
the yaml config for this is the following
object_types:
entry:
fullscreen: smallint
photocredit: string(255)
credit_all: smallint
deck: string(255)
asset:
photocredit: string(255)
so as i said the entry table gets upgraded but the asset table does not
is there something i do wrong here or is there a limitation that prevents adding a field to the asset table from a plugin?
Thank you for any hint
Reported on Movable Type 5

i paste the code again
asset:
photocredit: string(255)
You have to specify a schema_version in your config.yaml. It's a root-level key. If you don't have one, just add schema_version: 1 near the top of the file.
Of course I have a schema_version. otherwise the object types has no effect.
What I was saying is that given the above extension to the entry and asset objects only the entry gets extended but the asset does not. By extended I mean that the mt_entry table will be altered with the new columns/fields but the mt_asset table remains unchanged.
Why don't you post a link to the config.yaml file...