Sha256: d9c87c6babec05f0d7b8beb4afc7fa7308b07af3b610f2644bbee1a24a762734
Contents?: true
Size: 482 Bytes
Versions: 63
Compression:
Stored size: 482 Bytes
Contents
class CreateMyForumPrivateMessages < ActiveRecord::Migration def change create_table :my_forum_private_messages do |t| t.integer :sender_id t.string :sender_login t.integer :recipient_id t.string :recipient_login t.boolean :sender_deleted, :default => false t.boolean :recipient_deleted, :default => false t.boolean :unread, :default => true t.string :subject t.text :body t.timestamps null: false end end end
Version data entries
63 entries across 63 versions & 1 rubygems