Skip to content

Instantly share code, notes, and snippets.

@invisiblefunnel
Created November 7, 2013 19:21
Show Gist options
  • Select an option

  • Save invisiblefunnel/7360374 to your computer and use it in GitHub Desktop.

Select an option

Save invisiblefunnel/7360374 to your computer and use it in GitHub Desktop.
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|
@invisiblefunnel
Copy link
Copy Markdown
Author

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 to db/schema.rb. Committing this diff should square the schema file with the migrations.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment