Files
selfstarter/db/migrate/20130106183354_create_payment_options.rb

16 lines
342 B
Ruby

class CreatePaymentOptions < ActiveRecord::Migration
def change
create_table :payment_options do |t|
t.decimal :amount
t.string :amount_display
t.text :description
t.string :shipping_desc
t.string :delivery_desc
t.integer :limit
t.integer :purchased_count
t.timestamps
end
end
end