20160511161020_create_pos_configs.rb 459 B

1234567891011121314
  1. class CreatePosConfigs < ActiveRecord::Migration
  2. def change
  3. create_table :pos_configs do |t|
  4. t.integer :cancel_partial_payment, null: true
  5. t.integer :refund_sale, null: true
  6. t.integer :days_cancel_sale, null: true
  7. t.integer :days_cancel_purchase, null: true
  8. t.decimal :tax_percent, null: true
  9. t.string :time_zone, null: false, limit: 255, default: ''
  10. t.decimal :gain_margin, null: true
  11. t.timestamps null: false
  12. end
  13. end
  14. end