2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00
discourse/db/migrate/20130506020935_add_automatic_to_groups.rb

14 lines
333 B
Ruby

class AddAutomaticToGroups < ActiveRecord::Migration[4.2]
def up
add_column :groups, :automatic, :boolean, default: false, null: false
# all numbers below 100 are reserved for automatic
execute <<SQL
ALTER SEQUENCE groups_id_seq START WITH 100
SQL
end
def down
remove_column :groups, :automatic
end
end