forked from bofh/fetsite
7 lines
202 B
Ruby
7 lines
202 B
Ruby
class AddThemaidToThemaTranslations < ActiveRecord::Migration
|
|
def change
|
|
add_column :thema_translations, :theman_id, :integer
|
|
remove_column :thema_translations, :themen_id, :integer
|
|
end
|
|
end
|