summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authornfoy <nfoy@purdue.edu>2014-04-24 19:07:40 -0400
committernfoy <nfoy@purdue.edu>2014-04-24 19:07:40 -0400
commit67d95e5b92e3d19765c7ccaf5460737ffe2173f4 (patch)
tree5e4dd2606fd33bea4c9c3c5fbaa0ab25f72bb38e /db/schema.rb
parentdf982eca7ab85f2782799ee49dd0d78a1c6b18d4 (diff)
run ./generate.sh
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 0833263..d7e4efd 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20140424202717) do
+ActiveRecord::Schema.define(version: 20140424230712) do
create_table "alerts", force: true do |t|
t.integer "author_id"
@@ -156,11 +156,14 @@ ActiveRecord::Schema.define(version: 20140424202717) do
t.integer "author_id"
t.integer "recipient_id"
t.text "message"
+ t.text "subject"
+ t.integer "conversation_id"
t.datetime "created_at"
t.datetime "updated_at"
end
add_index "pms", ["author_id"], name: "index_pms_on_author_id"
+ add_index "pms", ["conversation_id"], name: "index_pms_on_conversation_id"
add_index "pms", ["recipient_id"], name: "index_pms_on_recipient_id"
create_table "receipts", force: true do |t|