20210913030458_create_commend_words.rb 356 B

1234567891011121314151617181920212223
  1. # encoding:utf-8
  2. # 提货信息表
  3. class CreateCommendWords < ActiveRecord::Migration
  4. def up
  5. create_table :commend_words do |t|
  6. #排序
  7. t.integer :sort
  8. #名称
  9. t.string :title
  10. #是否启用
  11. t.boolean :state, :default => false
  12. t.timestamps
  13. end
  14. end
  15. def down
  16. drop_table :commend_words
  17. end
  18. end