7 lines
177 B
Ruby
7 lines
177 B
Ruby
class AddChampIdToCommentaires < ActiveRecord::Migration
|
|
def change
|
|
change_table :commentaires do |t|
|
|
t.references :champ, null: true, index: true
|
|
end
|
|
end
|
|
end
|