Commit a4128b95

mo k <m@mokhan.ca>
2011-11-25 07:14:52
add migration to drop the authentications table.
1 parent 108e7fb
db/migrate/20111125071349_drop_authentications.rb
@@ -0,0 +1,8 @@
+class DropAuthentications < ActiveRecord::Migration
+  def up
+    drop_table :authentications
+  end
+
+  def down
+  end
+end
db/schema.rb
@@ -11,15 +11,7 @@
 #
 # It's strongly recommended to check this file into your version control system.
 
-ActiveRecord::Schema.define(:version => 20110808024353) do
-
-  create_table "authentications", :force => true do |t|
-    t.integer  "user_id"
-    t.string   "provider"
-    t.string   "uid"
-    t.datetime "created_at"
-    t.datetime "updated_at"
-  end
+ActiveRecord::Schema.define(:version => 20111125071349) do
 
   create_table "categories", :force => true do |t|
     t.string   "name"