You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20160426084709_create_shiel...

13 lines
274 B

class CreateShieldWechatMessages < ActiveRecord::Migration
def change
create_table :shield_wechat_messages do |t|
t.integer :container_id
t.string :container_type
t.integer :shield_id
t.string :shield_type
t.timestamps
end
end
end