Sha256: ed7d4e15b6aa4fc15dddc312c11dc2f391bca0e625998a4b5afe8f2c74ec6763
Contents?: true
Size: 440 Bytes
Versions: 24
Compression:
Stored size: 440 Bytes
Contents
# 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
24 entries across 24 versions & 1 rubygems