From 5df1e086108e97c8ce55a46d6e8aacf8eabfe141 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonne=20Ha=C3=9F?= Date: Fri, 26 Apr 2019 12:27:08 +0200 Subject: [PATCH] migrate authorizations scopes column to text --- ...426100618_change_authorizations_scope_column_to_text.rb | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 db/migrate/20190426100618_change_authorizations_scope_column_to_text.rb diff --git a/db/migrate/20190426100618_change_authorizations_scope_column_to_text.rb b/db/migrate/20190426100618_change_authorizations_scope_column_to_text.rb new file mode 100644 index 000000000..d8990269d --- /dev/null +++ b/db/migrate/20190426100618_change_authorizations_scope_column_to_text.rb @@ -0,0 +1,7 @@ +# frozen_string_literal: true + +class ChangeAuthorizationsScopeColumnToText < ActiveRecord::Migration[5.1] + def change + change_column :authorizations, :scopes, :text + end +end