6 lines
129 B
Ruby
6 lines
129 B
Ruby
|
|
class AddTargetToSurveys < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :surveys, :target, :integer, default: 0
|
||
|
|
end
|
||
|
|
end
|