ruby-paypal-example/db/migrate/20130430055458_create_payments.rb

10 lines
156 B
Ruby
Raw Normal View History

2013-04-30 05:55:08 +00:00
class CreatePayments < ActiveRecord::Migration
def change
create_table :payments do |t|
t.string :profile
t.timestamps
end
end
end