20151222002018_create_expensesconcepts.rb 260 B

123456789101112
  1. class CreateExpensesconcepts < ActiveRecord::Migration
  2. def change
  3. create_table :expensesconcepts do |t|
  4. t.string :name
  5. t.string :description
  6. t.boolean :allpoints
  7. t.integer :status
  8. t.timestamps null: false
  9. end
  10. end
  11. end