6 lines
141 B
Ruby
6 lines
141 B
Ruby
|
|
class AddPositionToSponsorshipLevel < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :sponsorship_levels, :position, :integer
|
||
|
|
end
|
||
|
|
end
|