031_add_notifications_table.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:
Ajax
开发平台:
Others
- class AddNotificationsTable < ActiveRecord::Migration
- def self.up
- create_table :notifications, :id => false do |t|
- t.column :notify_user_id, :integer
- t.column :notify_content_id, :integer
- t.column :created_at, :datetime
- t.column :updated_at, :datetime
- end
- end
- def self.down
- drop_table :notifications
- end
- end