10 lines
240 B
Ruby
10 lines
240 B
Ruby
# encoding: UTF-8
|
|
# frozen_string_literal: true
|
|
|
|
class RefactorAuthenticationToken < ActiveRecord::Migration[4.2]
|
|
def change
|
|
change_column :authentications, :secret, :text
|
|
rename_column :authentications, :secret, :token
|
|
end
|
|
end
|