Sha256: e56f8e410389fa04175611249817dd3b339671828807366ca017c25c8c2e81a5
Contents?: true
Size: 352 Bytes
Versions: 21
Compression:
Stored size: 352 Bytes
Contents
class CreateSpreePromotionCodes < ActiveRecord::Migration[4.2] def change create_table :spree_promotion_codes do |t| t.references :promotion, index: true, null: false t.string :value, null: false t.integer :usage_limit t.timestamps null: true end add_index :spree_promotion_codes, :value, unique: true end end
Version data entries
21 entries across 21 versions & 1 rubygems