Sha256: 5b176a40c20e450fada9381650c98dfa33e3b4c9ecc3945a2835db3938ecba5a
Contents?: true
Size: 417 Bytes
Versions: 22
Compression:
Stored size: 417 Bytes
Contents
# This migration comes from paid_up (originally 20150407110101) class CreatePaidUpPlansTable < ActiveRecord::Migration def change create_table :paid_up_plans do |t| t.string :stripe_id t.string :title t.text :description t.integer :sort_order t.timestamps end add_index :paid_up_plans, :title, unique: true add_index :paid_up_plans, :stripe_id, unique: true end end
Version data entries
22 entries across 22 versions & 1 rubygems