Sha256: 26e351d6d41b29bd7ddca4f92565bf7e80325f046ad9020180ae44b8c2e890ce
Contents?: true
Size: 502 Bytes
Versions: 2
Compression:
Stored size: 502 Bytes
Contents
# This migration comes from spree (originally 20151013222921) # This is named the same as the migration in spree 3.0 so it will not be copied # if that has already been run. class RemoveTokenPermissionsTable < ActiveRecord::Migration def up drop_table :spree_tokenized_permissions end def down create_table "spree_tokenized_permissions" do |t| t.integer "permissable_id" t.string "permissable_type" t.string "token" t.timestamps null: true end end end
Version data entries
2 entries across 2 versions & 1 rubygems