rails-stall/stall

View on GitHub
db/migrate/20160125100733_create_stall_payment_methods.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateStallPaymentMethods < ActiveRecord::Migration
  def change
    create_table :stall_payment_methods do |t|
      t.string :name
      t.string :identifier

      t.timestamps null: false
    end
  end
end