Skip to content

Commit

Permalink
Merge pull request #82 from nikhilgupta1211/schema
Browse files Browse the repository at this point in the history
Updated the schema for the event_emails tables
  • Loading branch information
ChrisBr committed Jul 21, 2017
2 parents 158b441 + 6af881c commit c6bb8b1
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 20151019160107) do
ActiveRecord::Schema.define(version: 20170721103402) do

# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
Expand Down Expand Up @@ -105,6 +105,16 @@
add_index "espinita_audits", ["auditable_id", "auditable_type"], name: "index_espinita_audits_on_auditable_id_and_auditable_type", using: :btree
add_index "espinita_audits", ["user_id", "user_type"], name: "index_espinita_audits_on_user_id_and_user_type", using: :btree

create_table "event_emails", force: true do |t|
t.text "to"
t.string "subject"
t.text "body"
t.integer "user_id"
t.integer "event_id"
t.datetime "created_at"
t.datetime "updated_at"
end

create_table "events", force: true do |t|
t.string "name", null: false
t.text "description"
Expand Down

0 comments on commit c6bb8b1

Please sign in to comment.