hyoshida/comable

View on GitHub
core/db/migrate/20151112102452_add_draft_to_comable_orders.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddDraftToComableOrders < ActiveRecord::Migration
  def change
    change_table :comable_orders do |t|
      t.boolean :draft, null: false, default: false
    end
  end
end