ruby-paypal-example/db/migrate/20130430055458_create_payments.rb
2013-04-29 22:55:08 -07:00

10 lines
156 B
Ruby

class CreatePayments < ActiveRecord::Migration
def change
create_table :payments do |t|
t.string :profile
t.timestamps
end
end
end