rails-stall/stall

View on GitHub
db/migrate/20160124014144_create_stall_shipping_methods.rb

Summary

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

      t.timestamps null: false
    end
  end
end