031_add_notifications_table.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:0k
源码类别:

Ajax

开发平台:

Others

  1. class AddNotificationsTable < ActiveRecord::Migration
  2.   def self.up
  3.     create_table :notifications, :id => false do |t|
  4.       t.column :notify_user_id, :integer
  5.       t.column :notify_content_id, :integer
  6.       t.column :created_at, :datetime
  7.       t.column :updated_at, :datetime
  8.     end
  9.   end
  10.   def self.down
  11.     drop_table :notifications
  12.   end
  13. end