Add deleted_at to spree_return_authorizations

This commit is contained in:
Matt-Yorkley
2021-04-07 18:10:07 +01:00
parent 2ed1aaf575
commit 4043e19910
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddDeletedAtToReturnAuthorizations < ActiveRecord::Migration[5.0]
def change
add_column :spree_return_authorizations, :deleted_at, :datetime
end
end

View File

@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20210329123820) do
ActiveRecord::Schema.define(version: 20210407170804) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -754,6 +754,7 @@ ActiveRecord::Schema.define(version: 20210329123820) do
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "stock_location_id"
t.datetime "deleted_at"
end
create_table "spree_roles", force: :cascade do |t|