Sha256: 9f44d20a9848a5ced33ec9c15d7f1158b774b63e55803cea3f835ac9013f3e83
Contents?: true
Size: 478 Bytes
Versions: 2
Compression:
Stored size: 478 Bytes
Contents
# This migration comes from spree (originally 20140713140527) class CreateSpreeRefundReasons < ActiveRecord::Migration def change create_table :spree_refund_reasons do |t| t.string :name t.boolean :active, default: true t.boolean :mutable, default: true t.timestamps null: true end add_column :spree_refunds, :refund_reason_id, :integer add_index :spree_refunds, :refund_reason_id, name: 'index_refunds_on_refund_reason_id' end end
Version data entries
2 entries across 2 versions & 1 rubygems