6 lines
147 B
Ruby
6 lines
147 B
Ruby
|
class FirstPageAddContestColumn < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column("first_pages","show_contest",:integer,default: 1)
|
||
|
end
|
||
|
end
|