c# - How do I change schema in fluent migrator? -
i trying add column 1 of our existing tables not on dba schema.
i tried following,
alter.table("breakdown").addcolumn("quoteref").asstring(30).nullable().toschema("res");
but blows error message
how change schema in fluent migrator?
ok figured out myself: it's not .toschema("res")
.inschema("res")
full code following:
alter.table("breakdown").inschema("res").addcolumn("quoteref").asstring(30).nullable();
Comments
Post a Comment