1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-05 18:59:22 +00:00
discourse/db/migrate/20120720044246_add_auth_token_to_users.rb
2013-02-05 14:16:51 -05:00

7 lines
166 B
Ruby

class AddAuthTokenToUsers < ActiveRecord::Migration
def change
add_column :users, :auth_token, :string, limit: 32
add_index :users, [:auth_token]
end
end