6 lines
133 B
Ruby
6 lines
133 B
Ruby
|
class RemoveChampIdFromCommentaires < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
remove_column :commentaires, :champ_id
|
||
|
end
|
||
|
end
|