Skip to content

Commit

Permalink
Update schema after migration
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Sep 4, 2015
1 parent 7af3329 commit 1c4d494
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"

create_table "rails_admin_histories", force: true do |t|
create_table "rails_admin_histories", force: :cascade do |t|
t.string "message"
t.string "username"
t.integer "item"
Expand All @@ -29,7 +29,7 @@

add_index "rails_admin_histories", ["item", "table", "month", "year"], name: "index_rails_admin_histories", using: :btree

create_table "reminders", force: true do |t|
create_table "reminders", force: :cascade do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.integer "from_user_id", null: false
Expand All @@ -43,7 +43,7 @@
add_index "reminders", ["thing_id"], name: "index_reminders_on_thing_id", using: :btree
add_index "reminders", ["to_user_id"], name: "index_reminders_on_to_user_id", using: :btree

create_table "things", force: true do |t|
create_table "things", force: :cascade do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.string "name"
Expand All @@ -55,7 +55,7 @@

add_index "things", ["city_id"], name: "index_things_on_city_id", unique: true, using: :btree

create_table "users", force: true do |t|
create_table "users", force: :cascade do |t|
t.datetime "created_at"
t.datetime "updated_at"
t.string "name", null: false
Expand Down

0 comments on commit 1c4d494

Please sign in to comment.