Created
November 7, 2013 19:21
-
-
Save invisiblefunnel/7360374 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/db/schema.rb b/db/schema.rb | |
| index 81ac000..6680ff5 100644 | |
| --- a/db/schema.rb | |
| +++ b/db/schema.rb | |
| @@ -53,13 +53,6 @@ ActiveRecord::Schema.define(version: 20131105015734) do | |
| t.string "call_source" | |
| end | |
| - create_table "most_recent_outcome_choices", id: false, force: true do |t| | |
| - t.integer "id" | |
| - t.integer "numerical_response" | |
| - t.string "phone_number" | |
| - t.integer "property_id" | |
| - end | |
| - | |
| create_table "notification_subscriptions", force: true do |t| | |
| t.string "email" | |
| t.boolean "confirmed" | |
| @@ -105,10 +98,10 @@ ActiveRecord::Schema.define(version: 20131105015734) do | |
| t.datetime "updated_at" | |
| t.string "property_code" | |
| t.string "parcel_id" | |
| + t.datetime "most_recent_activity" | |
| t.string "lat" | |
| t.string "long" | |
| t.text "description" | |
| - t.datetime "most_recent_activity" | |
| end | |
| create_table "voice_files", force: true do |t| |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get this diff when I run,
rake db:drop db:create db:migrate, with current master (c409babcc9). Looks like an experimental table was committed todb/schema.rb. Committing this diff should square the schema file with the migrations.