appirits/comable

View on GitHub
core/db/migrate/20150511171940_create_comable_payments.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateComablePayments < ActiveRecord::Migration
  def change
    create_table :comable_payments do |t|
      t.references :order, null: false
      t.references :payment_method, null: false
      t.integer :fee, null: false
      t.string :state, null: false
      t.datetime :completed_at
      t.timestamps null: false
    end
  end
end