Sha256: 980199c0544a722cbb1f8838c1b230e24ab195ddafb77eff5803b43d8bd3a323

Contents?: true

Size: 1.94 KB

Versions: 75

Compression:

Stored size: 1.94 KB

Contents

class CreateMailboxer < ActiveRecord::Migration
  def self.up    
  #Tables
  	#Conversations
    create_table :conversations do |t|
      t.column :subject, :string, :default => ""
      t.column :created_at, :datetime, :null => false
      t.column :updated_at, :datetime, :null => false
    end    
  	#Receipts
    create_table :receipts do |t|
      t.references :receiver, :polymorphic => true
      t.column :notification_id, :integer, :null => false
      t.column :read, :boolean, :default => false
      t.column :trashed, :boolean, :default => false
      t.column :deleted, :boolean, :default => false
      t.column :mailbox_type, :string, :limit => 25
      t.column :created_at, :datetime, :null => false
      t.column :updated_at, :datetime, :null => false
    end    
  	#Notifications and Messages
    create_table :notifications do |t|
      t.column :type, :string
      t.column :body, :text
      t.column :subject, :string, :default => ""
      t.references :sender, :polymorphic => true
      t.references :object, :polymorphic => true
      t.column :conversation_id, :integer
      t.column :draft, :boolean, :default => false
      t.column :updated_at, :datetime, :null => false
      t.column :created_at, :datetime, :null => false
    end    
    
    
  #Indexes
  	#Conversations
  	#Receipts
  	add_index "receipts","notification_id"

  	#Messages  
  	add_index "notifications","conversation_id"
  
  #Foreign keys    
  	#Conversations
  	#Receipts
  	add_foreign_key "receipts", "notifications", :name => "receipts_on_notification_id"
  	#Messages  
  	add_foreign_key "notifications", "conversations", :name => "notifications_on_conversation_id"
  end
  
  def self.down
  #Tables  	
  	remove_foreign_key "receipts", :name => "receipts_on_notification_id"
  	remove_foreign_key "notifications", :name => "notifications_on_conversation_id"
  	
  #Indexes
    drop_table :receipts
    drop_table :conversations
    drop_table :notifications
  end
end

Version data entries

75 entries across 38 versions & 3 rubygems

Version Path
messaging_4-0.0.1 test/dummy/db/migrate/20111204042609_create_mailboxer.rb
mailboxer-0.11.0 db/migrate/20110511145103_create_mailboxer.rb
mailboxer-0.11.0 spec/dummy/db/migrate/20120305103200_create_mailboxer.rb
mailboxer-0.10.3 spec/dummy/db/migrate/20120305103200_create_mailboxer.rb
mailboxer-0.10.3 db/migrate/20110511145103_create_mailboxer.rb
curationexperts-mailboxer-0.10.3 db/migrate/20110511145103_create_mailboxer.rb
curationexperts-mailboxer-0.10.3 spec/dummy/db/migrate/20120305103200_create_mailboxer.rb
curationexperts-mailboxer-0.10.3.rc1 db/migrate/20110511145103_create_mailboxer.rb
curationexperts-mailboxer-0.10.3.rc1 spec/dummy/db/migrate/20120305103200_create_mailboxer.rb
mailboxer-0.10.2 spec/dummy/db/migrate/20120305103200_create_mailboxer.rb
mailboxer-0.10.2 db/migrate/20110511145103_create_mailboxer.rb
mailboxer-0.10.1 db/migrate/20110511145103_create_mailboxer.rb
mailboxer-0.10.1 spec/dummy/db/migrate/20120305103200_create_mailboxer.rb
mailboxer-0.10.0 spec/dummy/db/migrate/20120305103200_create_mailboxer.rb
mailboxer-0.10.0 db/migrate/20110511145103_create_mailboxer.rb
mailboxer-0.9.0 db/migrate/20110511145103_create_mailboxer.rb
mailboxer-0.9.0 spec/dummy/db/migrate/20120305103200_create_mailboxer.rb
mailboxer-0.8.0 spec/dummy/db/migrate/20120305103200_create_mailboxer.rb
mailboxer-0.8.0 db/migrate/20110511145103_create_mailboxer.rb
mailboxer-0.7.0 db/migrate/20110511145103_create_mailboxer.rb