18F/micropurchase

View on GitHub
db/migrate/20160629134842_create_customers.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateCustomers < ActiveRecord::Migration
  def change
    create_table :customers do |t|
      t.string :agency_name, null: false
      t.string :contact_name
      t.string :email

      t.timestamps null: false
    end
  end
end