Fix full voter addition bug where the regex flunks the trailing \r on middle items...
[selectricity-live] / db / schema.rb
index ec0093b1f2aad2580f5d899a5e1f28a0cea4dcc5..590425d670859ee07aab24761a30d00f5c780eb2 100644 (file)
@@ -42,6 +42,16 @@ ActiveRecord::Schema.define() do
     t.column "rank",         :integer
   end
 
+  create_table "sitealizer", :force => true do |t|
+    t.column "path",       :string
+    t.column "ip",         :string
+    t.column "referer",    :string
+    t.column "language",   :string
+    t.column "user_agent", :string
+    t.column "created_at", :datetime
+    t.column "created_on", :date
+  end
+
   create_table "tokens", :force => true do |t|
     t.column "token",   :string,  :limit => 100, :default => "", :null => false
     t.column "vote_id", :integer,                                :null => false

Benjamin Mako Hill || Want to submit a patch?