18F/micropurchase

View on GitHub
db/migrate/20160613181643_create_client_accounts.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateClientAccounts < ActiveRecord::Migration
  def change
    create_table :client_accounts do |t|
      t.timestamps null: false
      t.string :name, null: false
      t.boolean :billable, null: false
      t.integer :tock_id, null: false
    end
  end
end