houdini/db/migrate/20210506172332_create_stripe_transactions.rb

10 lines
207 B
Ruby
Raw Normal View History

2021-05-05 16:35:17 +00:00
class CreateStripeTransactions < ActiveRecord::Migration[6.1]
def change
create_table :stripe_transactions, id: :string do |t|
t.integer :amount, null:false
t.timestamps
end
end
end