20180524081556_create_xcx_versions.rb 447 B

123456789101112131415161718192021
  1. #小程序发布版本控制
  2. class CreateXcxVersions < ActiveRecord::Migration
  3. def up
  4. create_table :xcx_versions do |t|
  5. #版本号
  6. t.column :version, :string, :limit=>64, :null=>false
  7. #描述
  8. t.column :desc, :string
  9. #是否上线
  10. t.column :state, :boolean, :default=>false
  11. t.timestamps
  12. end
  13. add_index :xcx_versions, :version, :unique => true
  14. end
  15. def down
  16. drop_table :xcx_versions
  17. end
  18. end