socialforge/db/migrate/20161208015939_add_column_t...

6 lines
154 B
Ruby

class AddColumnToCourse < ActiveRecord::Migration
def change
add_column :courses, :invite_code_halt, :integer, :limit => 1, :default => 0
end
end