Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chechaoyang/1834574 to your computer and use it in GitHub Desktop.
Save chechaoyang/1834574 to your computer and use it in GitHub Desktop.
让用户ID从10001开始
class AlterUsersIdStartFrom10001 < ActiveRecord::Migration
def self.up
execute "ALTER TABLE users AUTO_INCREMENT = 10001;"
end
def self.down
execute "ALTER TABLE users AUTO_INCREMENT = 1;"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment