migrate authorizations scopes column to text

This commit is contained in:
Jonne Haß 2019-04-26 12:27:08 +02:00
parent 3f77507b15
commit 5df1e08610

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class ChangeAuthorizationsScopeColumnToText < ActiveRecord::Migration[5.1]
def change
change_column :authorizations, :scopes, :text
end
end