20180212075101_create_wx_form_ids.rb 412 B

12345678910111213141516171819
  1. class CreateWxFormIds < ActiveRecord::Migration
  2. def up
  3. create_table :wx_form_ids do |t|
  4. #mp_openid
  5. t.column :mp_openid, :string
  6. #openid
  7. t.column :openid, :string
  8. #活动规则
  9. t.column :form_id, :string
  10. #是否使用ENUM否0,是1
  11. t.column :state, :tinyint, :default=>0
  12. t.timestamps
  13. end
  14. end
  15. def down
  16. drop_table :wx_form_ids
  17. end
  18. end