mirror of
https://github.com/apigy/selfstarter.git
synced 2026-01-09 14:27:55 -05:00
15 lines
309 B
Ruby
15 lines
309 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.timestamps
|
|
end
|
|
end
|
|
end
|