6 lines
121 B
Ruby
6 lines
121 B
Ruby
class AddImageToEvents < ActiveRecord::Migration
|
|
def change
|
|
add_column :events, :image_file, :references
|
|
end
|
|
end
|