Class: CreateWechatSessions

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/wechat/templates/db/migration.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/wechat/templates/db/migration.rb', line 2

def change
  create_table :wechat_sessions do |t|
    t.string :openid, null: false
    t.string :hash_store
    t.timestamps null: false
  end
  add_index :wechat_sessions, :openid, unique: true
end