6 lines
117 B
Ruby
6 lines
117 B
Ruby
class AddOrderToSections < ActiveRecord::Migration
|
|
def change
|
|
add_column :sections, :order, :integer
|
|
end
|
|
end
|