gitlabhq/db/migrate/20121120103700_add_active_to_service.rb

6 lines
147 B
Ruby
Raw Normal View History

2012-11-19 20:34:05 +01:00
class AddActiveToService < ActiveRecord::Migration
def change
add_column :services, :active, :boolean, default: false, null: false
end
end