You must generate a migration:
rails g migration add_columnc_to_myodb2s columnc:string
It should contain a row of adding a column to your table.
add_column :myodb2s, :columnc, :string
This adds the column to yourdb table, and of course to your model, but not in any view. You need to add it manually. As far s I know.