6 lines
131 B
Ruby
6 lines
131 B
Ruby
|
|
class AddAmountToSupporterLevel < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :supporter_levels, :amount, :float
|
||
|
|
end
|
||
|
|
end
|