mirror of
https://github.com/diaspora/diaspora.git
synced 2026-01-09 23:28:02 -05:00
9 lines
307 B
Ruby
9 lines
307 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveAuthenticationTokenFromUsers < ActiveRecord::Migration[5.2]
|
|
def change
|
|
remove_index :users, column: :authentication_token, name: :index_users_on_authentication_token, unique: true
|
|
remove_column :users, :authentication_token, :string, limit: 30
|
|
end
|
|
end
|