2017-08-31 00:06:56 -04:00
|
|
|
class UpdateSequenceForGroups < ActiveRecord::Migration[4.2]
|
2013-05-09 03:37:34 -04:00
|
|
|
def up
|
|
|
|
# even if you alter a sequence you still need to set the seq
|
|
|
|
execute <<SQL
|
|
|
|
SELECT setval('groups_id_seq', 40)
|
|
|
|
SQL
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
end
|
|
|
|
end
|