audit_rails 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 139c6c36d2fffc0ef655340e25230100cc2e1b1f
4
- data.tar.gz: 6aaa79d1d526d10ee86057b3d551faf5fd3bc66e
3
+ metadata.gz: fe0a86c301641cc72ea888e13177fb4c57cd6d37
4
+ data.tar.gz: f2b59ba961f9da264d83fc173588efbb56e9eeef
5
5
  SHA512:
6
- metadata.gz: 454a1683bc1773cf1550ac53740fd5ee7c4534383eaca69ea8a7c97fb013d548c3352c6fdc02cba4accafd02cf26785b802e807e1b26943b523951c487b6ea02
7
- data.tar.gz: 1911edb982e8b318b1e79ea56b253c82158ee9d9847a3d2bd1e853efed3f89357f1f92b26131878b61dba62aa05580d5ebcfb29fc772b27e349685d424d7cb8d
6
+ metadata.gz: 69ed5573cc9230a58870aa4f80af5082821380a864e1e4ae7e1c5092ee1fdf48692a01379fbd982cee8170401fd80b72cf47359f5912dbc692eab495cb786a7e
7
+ data.tar.gz: bd856c4208f3056edd45fbb672d504705f002a46bd4be3220fdd681edfaacb9f4d29b2267a52efb8f5f83133c2c5b80295b86f9243f94d9caddd7937a9e04c7a
@@ -19,6 +19,8 @@
19
19
  //= require audit_rails/d3/d3.tip
20
20
  //= require audit_rails/user-counts
21
21
  //= require audit_rails/page-views
22
+ //= require audit_rails/page-views-for-user
23
+ //= require audit_rails/page-view-user-contribution
22
24
  //= require audit_rails/audit
23
25
  //= require audit_rails/bootstrap
24
26
  //= require_tree .
@@ -3,4 +3,48 @@ $(document).on("click", 'a.visit-site', function() {
3
3
  $.post("/audit_rails/audits", params);
4
4
  window.open(this.href);
5
5
  return false;
6
- });
6
+ });
7
+
8
+ $(document).ready(function(){
9
+ var firstUser = $('a[data-user]')
10
+ if(firstUser[0] != undefined){
11
+ var user = firstUser.attr('data-user');
12
+ $('a[data-user="'+user+'"]').addClass('active-item');
13
+
14
+ $('#userNameToShow').text('Pages viewed by '+user);
15
+ pageViewsForUser(user);
16
+ pageViewsShareByUser(user);
17
+ }
18
+
19
+ $('a[data-user]').on('click', function(){
20
+ var user = $(this).attr('data-user');
21
+ d3.select("div#pageViewsByUser>svg").remove();
22
+ d3.select("div#pageViewsShareByUser>svg").remove();
23
+ $('a.list-group-item').removeClass('active-item');
24
+ $(this).addClass('active-item');
25
+
26
+ $('#userNameToShow').text('Pages viewed by '+user);
27
+ pageViewsForUser(user);
28
+ pageViewsShareByUser(user);
29
+ });
30
+
31
+ // Hiding all elements except first chart
32
+ $('.group').hide();
33
+ $('#user-clicks').show();
34
+
35
+ // Transition effect
36
+ $('li>a').on('click', function(){
37
+ var id = $(this).attr('data-attr-id');
38
+ active(this, id);
39
+ $('.group').hide('fast');
40
+ $('#'+id).show('slow');
41
+ });
42
+ });
43
+
44
+ function active(obj, id){
45
+ var parent = $(obj).parent()
46
+ $(obj).parent().parent().children('li').removeClass('active');
47
+ $(obj).parent().addClass('active');
48
+ $('ul.nav.nav-tabs>li>a>span').addClass('hide');
49
+ $('a[data-attr-id="'+id+'"]>span.badge').removeClass('hide');
50
+ }
@@ -0,0 +1,61 @@
1
+ function pageViewsShareByUser(userName){
2
+ var margin = {top: 40, right: right, bottom: 100, left: 40},
3
+ width = 650 - margin.left - margin.right,
4
+ height = 360 - margin.top - margin.bottom;
5
+ radius = 100, //radius
6
+ color = d3.scale.category20c(); //builtin range of colors
7
+
8
+ var data = JSON.parse( $('a[data-user="'+ userName +'"]').attr('data-page-visits'));;
9
+
10
+ var vis = d3.select("div#pageViewsShareByUser")
11
+ .append("svg:svg") //create the SVG element inside the <body>
12
+ .data([data]) //associate our data with the document
13
+ .attr("width", width + margin.left + margin.right)
14
+ .attr("height", height + margin.top + margin.bottom)
15
+ .append("svg:g") //make a group to hold our pie chart
16
+ .attr("transform", "translate(" + radius*2 + "," + radius*2 + ")") //move the center of the pie chart from 0, 0 to radius, radius
17
+
18
+ var arc = d3.svg.arc() //this will create <path> elements for us using arc data
19
+ .outerRadius(radius);
20
+
21
+ var div = d3.select("body").append("div")
22
+ .attr("class", "tooltip")
23
+ .style("opacity", 0);
24
+
25
+ var pie = d3.layout.pie() //this will create arc data for us given a list of values
26
+ .value(function(d) { return d.count; }); //we must tell it out to access the value of each element in our data array
27
+
28
+ var arcs = vis.selectAll("g.slice") //this selects all <g> elements with class slice (there aren't any yet)
29
+ .data(pie) //associate the generated pie data (an array of arcs, each having startAngle, endAngle and value properties)
30
+ .enter() //this will create <g> elements for every "extra" data element that should be associated with a selection. The result is creating a <g> for every object in the data array
31
+ .append("svg:g") //create a group to hold each slice (we will have a <path> and a <text> element associated with each slice)
32
+ .attr("class", "slice") //allow us to style things in the slices (like text)
33
+ .on('mouseover', function (d, i) {
34
+ div.transition()
35
+ .duration(200)
36
+ .style("opacity", 0.9);
37
+ div.html("<strong>Page Views:</strong> <span style='color:red'>" + d.data.count + "</span>" )
38
+ .style("left", (d3.event.pageX - 57) + "px")
39
+ .style("top", (d3.event.pageY - 50) + "px")
40
+ .style("z-index", 10000)
41
+ })
42
+ .on("mouseout", function (d) {
43
+ div.transition()
44
+ .duration(500)
45
+ .style("opacity", 0);
46
+ });
47
+
48
+ arcs.append("svg:path")
49
+ .attr("fill", function(d, i) { return color(i); } ) //set the color for each slice to be chosen from the color function defined above
50
+ .attr("d", arc); //this creates the actual SVG path using the associated data (pie) with the arc drawing function
51
+
52
+ arcs.append("svg:text") //add a label to each slice
53
+ .attr("transform", function(d) { //set the label's origin to the center of the arc
54
+ //we have to make sure to set these before calling arc.centroid
55
+ d.innerRadius = radius;
56
+ // d.outerRadius = radius;
57
+ return "translate(" + arc.centroid(d) + ")"; //this gives us a pair of coordinates like [50, 50]
58
+ })
59
+ .style("text-anchor", "end") //center the text on it's origin
60
+ .text(function(d, i) { return data[i].page; }); //get the label from our original data array
61
+ }
@@ -0,0 +1,72 @@
1
+ function pageViewsForUser(userName){
2
+
3
+ var data = JSON.parse( $('a[data-user="'+ userName +'"]').attr('data-page-visits'));
4
+
5
+ var right = d3.max([20, (620 - data.length * 50)]);
6
+ var margin = {top: 40, right: right, bottom: 100, left: 40},
7
+ width = 650 - margin.left - margin.right,
8
+ height = 360 - margin.top - margin.bottom;
9
+
10
+ var x = d3.scale.ordinal()
11
+ .rangeRoundBands([0, width], .1);
12
+
13
+ var y = d3.scale.linear()
14
+ .range([height, 0]);
15
+
16
+ var xAxis = d3.svg.axis()
17
+ .scale(x)
18
+ .orient("bottom");
19
+
20
+ var yAxis = d3.svg.axis()
21
+ .scale(y)
22
+ .orient("left");
23
+
24
+ var tip = d3.tip()
25
+ .attr('class', 'd3-tip')
26
+ .offset([-10, 0])
27
+ .html(function(d) {
28
+ return "<strong>Page Views:</strong> <span style='color:red'>" + d.count + "</span>";
29
+ })
30
+
31
+ var svg = d3.select("div#pageViewsByUser").append("svg")
32
+ .attr("width", width + margin.left + margin.right)
33
+ .attr("height", height + margin.top + margin.bottom)
34
+ .append("g")
35
+ .attr("transform", "translate(" + margin.left + "," + margin.top + ")");
36
+
37
+ svg.call(tip);
38
+
39
+ x.domain(data.map(function(d) { return d.page; }));
40
+ y.domain([0, d3.max(data, function(d) { return d.count; })]);
41
+
42
+ svg.append("g")
43
+ .attr("class", "x axis")
44
+ .attr("transform", "translate(0," + height + ")")
45
+ .call(xAxis)
46
+ .selectAll("text")
47
+ .style("text-anchor", "end")
48
+ .attr("dx", "-.8em")
49
+ .attr("dy", ".15em")
50
+ .attr("transform", function(d) {
51
+ return "rotate(-65)"
52
+ });
53
+
54
+ svg.append("g")
55
+ .attr("class", "y axis")
56
+ .call(yAxis)
57
+ .append("text")
58
+ .attr("transform", "rotate(-90)")
59
+ .attr("y", -40)
60
+ .attr("x", -80)
61
+
62
+ svg.selectAll(".bar")
63
+ .data(data)
64
+ .enter().append("rect")
65
+ .attr("class", "bar")
66
+ .attr("x", function(d) { return x(d.page); })
67
+ .attr("width", x.rangeBand())
68
+ .attr("y", function(d) { return y(d.count); })
69
+ .attr("height", function(d) { return height - y(d.count); })
70
+ .on('mouseover', tip.show)
71
+ .on('mouseout', tip.hide);
72
+ }
@@ -1,6 +1,9 @@
1
1
  .left {
2
2
  float: left;
3
3
  }
4
+ .hide{
5
+ display: none;
6
+ }
4
7
  .audit-row{
5
8
  width: 60%;
6
9
  border-radius: 15px;
@@ -63,3 +66,63 @@
63
66
  top: 100%;
64
67
  left: 0;
65
68
  }
69
+
70
+ .page-views{
71
+ width: 245px;
72
+ }
73
+
74
+ a.active-item, a.active-item:hover{
75
+ background-color: skyblue;
76
+ color: white;
77
+ }
78
+ a.active-item span.badge{
79
+ background-color: white;
80
+ color: #428bca;
81
+ }
82
+
83
+ #userNameToShow{
84
+ padding-top: 10px;
85
+ width: 680px;
86
+ text-align: center;
87
+ font-weight: bold;
88
+ font-style: italic;
89
+ }
90
+
91
+
92
+ #pageViewsByUser{
93
+ padding-left: 45px;
94
+ padding-top: 10px;
95
+ width: 680px;
96
+ }
97
+
98
+
99
+ .slice{
100
+ font-size: 10px;
101
+ }
102
+
103
+ /* Begin hand crafted tooltip */
104
+ div.tooltip {
105
+ position: absolute;
106
+ text-align: center;
107
+ line-height: 1;
108
+ font-weight: bold;
109
+ padding: 12px;
110
+ background: rgba(0, 0, 0, 0.8);
111
+ color: #fff;
112
+ border-radius: 2px;
113
+ pointer-events: none;
114
+ }
115
+ div.tooltip:after {
116
+ box-sizing: border-box;
117
+ display: inline;
118
+ font-size: 10px;
119
+ width: 100%;
120
+ line-height: 1;
121
+ color: rgba(0, 0, 0, 0.8);
122
+ content: "\25BC";
123
+ position: absolute;
124
+ text-align: center;
125
+ top: 100%;
126
+ left: 0%;
127
+ }
128
+ /* End hand crafted tooltip */
@@ -21,6 +21,8 @@ module AuditRails
21
21
  def analytics
22
22
  @analysis_by_user_name = AuditRails::Audit.in_range(@range_begin, @range_end).analysis_by_user_name
23
23
  @analysis_by_page_views = AuditRails::Audit.in_range(@range_begin, @range_end).analysis_by_page_views
24
+ @analysis_per_user_by_page_views = AuditRails::Audit.in_range(@range_begin, @range_end).analysis_per_user_by_page_views
25
+
24
26
  @total = AuditRails::Audit.in_range(@range_begin, @range_end).count
25
27
  @no_audits = AuditRails::Audit.count == 0
26
28
 
@@ -25,5 +25,13 @@ module AuditRails
25
25
  def active_class(action_name)
26
26
  active?(action_name) ? 'active' : ''
27
27
  end
28
+
29
+ def page_visits_by_user(user)
30
+ JSON.parse(@analysis_per_user_by_page_views)[user].to_json
31
+ end
32
+
33
+ def percentage_share(user, count, total)
34
+ "#{(100.0 * count/total).round(1)}%"
35
+ end
28
36
  end
29
37
  end
@@ -36,6 +36,15 @@ module AuditRails
36
36
  group_by_controller_action.count.map{|k,v| {'page' => k.join('/'), 'count' => v}}.to_json
37
37
  end
38
38
 
39
+ def self.analysis_per_user_by_page_views
40
+ users = {}
41
+ group_by_user_name.group_by_controller_action.count.map do |k, v|
42
+ value = [{"page" => "#{k[1]}/#{k[2]}", "count" => v}]
43
+ users[k[0]] = users[k[0]] ? users[k[0]] + value : value
44
+ end
45
+ users.to_json
46
+ end
47
+
39
48
  def self.unique_visitor_count
40
49
  group_by_ip_address.count.values.size
41
50
  end
@@ -1,11 +1,4 @@
1
1
  <div class='clear'></div>
2
- <div class='left'>
3
- <ul class="nav nav-pills">
4
- <li class="active">
5
- <a href="#">Total page views <span class="badge"><%= @total %></span></a>
6
- </li>
7
- </ul>
8
- <br/>
2
+ <div id='page-views' class='left group'>
9
3
  <div id='pageViewsCount' data-visit-count='<%= @analysis_by_page_views %>'></div>
10
-
11
- </div>
4
+ </div>
@@ -0,0 +1,18 @@
1
+ <div id='per-user-by-pages-bar' class='group'>
2
+ <div class='clear'></div>
3
+ <div class='left page-views'>
4
+ <div class="list-group page-views">
5
+ <% JSON.parse(@analysis_by_user_name).each do |user_hsh| %>
6
+ <a href="#page-views-by-user" class="list-group-item" data-user='<%=user_hsh["user"]%>' data-page-visits='<%= page_visits_by_user(user_hsh['user'])%>'><%= user_hsh["user"] %> - <%= percentage_share(user_hsh["user"], user_hsh["count"], @total)%>
7
+ <span class="badge"><%= user_hsh["count"] %></span>
8
+ </a>
9
+ <% end %>
10
+ </div>
11
+ </div>
12
+ <div class='left'>
13
+ <div class='clear'></div>
14
+ <div id="userNameToShow"></div>
15
+ <div id='pageViewsByUser'></div>
16
+ </div>
17
+ <div id="tooltip"></div>
18
+ </div>
@@ -0,0 +1,18 @@
1
+ <div id='per-user-by-pages-pie' class='group'>
2
+ <div class='clear'></div>
3
+ <div class='left page-views'>
4
+ <div class="list-group page-views">
5
+ <% JSON.parse(@analysis_by_user_name).each do |user_hsh| %>
6
+ <a href="#page-views-by-user" class="list-group-item" data-user='<%=user_hsh["user"]%>' data-page-visits='<%= page_visits_by_user(user_hsh['user'])%>'><%= user_hsh["user"] %> - <%= percentage_share(user_hsh["user"], user_hsh["count"], @total)%>
7
+ <span class="badge"><%= user_hsh["count"] %></span>
8
+ </a>
9
+ <% end %>
10
+ </div>
11
+ </div>
12
+ <div class='left'>
13
+ <div class='clear'></div>
14
+ <div id="userNameToShow"></div>
15
+ <div id='pageViewsShareByUser'></div>
16
+ </div>
17
+ <div id="tooltip"></div>
18
+ </div>
@@ -0,0 +1,6 @@
1
+ <ul class="nav nav-tabs">
2
+ <li class='active'><a href="#" data-attr-id='user-clicks'>All views by users <span class="badge"><%= @total %></span></a></li>
3
+ <li><a href="#" data-attr-id='page-views'>All views by pages <span class="badge hide"><%= @total %></span></a></li>
4
+ <li><a href="#" data-attr-id='per-user-by-pages-bar'>Views per user by pages (bar) <span class="badge hide"><%= @total %></span></a></li>
5
+ <li><a href="#" data-attr-id='per-user-by-pages-pie'>Views per user by pages (pie) <span class="badge hide"><%= @total %></span></a></li>
6
+ </ul>
@@ -1,9 +1,3 @@
1
- <div class='left'>
2
- <ul class="nav nav-pills">
3
- <li class="active">
4
- <a href="#">Total user clicks <span class="badge"><%= @total %></span></a>
5
- </li>
6
- </ul>
7
- <br/>
1
+ <div id='user-clicks' class='left group'>
8
2
  <div id='userViewsCount' data-visit-count='<%= @analysis_by_user_name %>'></div>
9
3
  </div>
@@ -8,6 +8,10 @@
8
8
  <% if @analysis_by_user_name == {} %>
9
9
  <%= render partial: 'no_audits_available', locals: {no_audits: @no_audits} %>
10
10
  <% else %>
11
+ <%= render partial: 'sub_menu' %>
12
+ <br/>
11
13
  <%= render partial: 'user_clicks' %>
12
14
  <%= render partial: 'page_views' %>
13
- <% end %>
15
+ <%= render partial: 'page_views_by_user_bar' %>
16
+ <%= render partial: 'page_views_by_user_pie' %>
17
+ <% end %>
@@ -1,3 +1,3 @@
1
1
  module AuditRails
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
@@ -70,7 +70,12 @@ describe AuditRails::AuditsController do
70
70
  # list should be a hash
71
71
  AuditRails::Audit.stub(:in_range).and_return(stub(count: count = 9,
72
72
  analysis_by_user_name: user_list = {"Fake User"=>6, "John Smith"=>3},
73
- analysis_by_page_views: page_list = {"visit-site"=>6, "login"=>3}
73
+ analysis_by_page_views: page_list = {"visit-site"=>6, "login"=>3},
74
+ analysis_per_user_by_page_views: users_by_page_list = {"Fake User"=> [{"page"=>"visit-site", "count"=>4},
75
+ {"page"=>"login", "count"=>2}],
76
+ "John Smith" => [{"page"=>"visit-site", "count"=>2},
77
+ {"page"=>"login", "count"=>1}]
78
+ }
74
79
  ))
75
80
 
76
81
  get 'analytics'
@@ -78,6 +83,7 @@ describe AuditRails::AuditsController do
78
83
  expect(assigns(:total)).to eq(count)
79
84
  expect(assigns(:analysis_by_user_name)).to eq(user_list)
80
85
  expect(assigns(:analysis_by_page_views)).to eq(page_list)
86
+ expect(assigns(:analysis_per_user_by_page_views)).to eq(users_by_page_list)
81
87
  end
82
88
  end
83
89
  end
@@ -23220,3 +23220,3212 @@ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23220
23220
   (0.0ms) RELEASE SAVEPOINT active_record_1
23221
23221
   (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
23222
23222
   (0.0ms) rollback transaction
23223
+ Connecting to database specified by database.yml
23224
+  (0.3ms) begin transaction
23225
+  (0.0ms) SAVEPOINT active_record_1
23226
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23227
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23228
+  (0.0ms) SAVEPOINT active_record_1
23229
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23230
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23231
+  (0.0ms) SAVEPOINT active_record_1
23232
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23234
+  (0.0ms) SAVEPOINT active_record_1
23235
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23237
+  (0.0ms) SAVEPOINT active_record_1
23238
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23240
+  (0.0ms) SAVEPOINT active_record_1
23241
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23243
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
23244
+  (0.0ms) rollback transaction
23245
+  (0.1ms) begin transaction
23246
+  (0.0ms) SAVEPOINT active_record_1
23247
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23249
+  (0.0ms) SAVEPOINT active_record_1
23250
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23252
+  (0.0ms) SAVEPOINT active_record_1
23253
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23255
+  (0.0ms) SAVEPOINT active_record_1
23256
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:26:47.585959' WHERE "audit_rails_audits"."id" = 1
23257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23258
+  (0.0ms) SAVEPOINT active_record_1
23259
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:26:47.585959' WHERE "audit_rails_audits"."id" = 2
23260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23261
+  (0.0ms) SAVEPOINT active_record_1
23262
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:26:47.585959' WHERE "audit_rails_audits"."id" = 3
23263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23264
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
23265
+  (0.0ms) rollback transaction
23266
+  (0.1ms) begin transaction
23267
+  (0.0ms) SAVEPOINT active_record_1
23268
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23270
+  (0.0ms) SAVEPOINT active_record_1
23271
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23273
+  (0.0ms) SAVEPOINT active_record_1
23274
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23276
+  (0.0ms) SAVEPOINT active_record_1
23277
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:26:47.601142' WHERE "audit_rails_audits"."id" = 1
23278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23279
+  (0.0ms) SAVEPOINT active_record_1
23280
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:26:47.601142' WHERE "audit_rails_audits"."id" = 2
23281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23282
+  (0.0ms) SAVEPOINT active_record_1
23283
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:26:47.601142' WHERE "audit_rails_audits"."id" = 3
23284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23285
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
23286
+  (0.0ms) rollback transaction
23287
+  (0.1ms) begin transaction
23288
+  (0.0ms) SAVEPOINT active_record_1
23289
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23291
+  (0.0ms) SAVEPOINT active_record_1
23292
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23294
+  (0.0ms) SAVEPOINT active_record_1
23295
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23297
+  (0.0ms) SAVEPOINT active_record_1
23298
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:26:47.612393' WHERE "audit_rails_audits"."id" = 1
23299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23300
+  (0.0ms) SAVEPOINT active_record_1
23301
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:26:47.612393' WHERE "audit_rails_audits"."id" = 2
23302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23303
+  (0.0ms) SAVEPOINT active_record_1
23304
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:26:47.612393' WHERE "audit_rails_audits"."id" = 3
23305
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23306
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23307
+  (0.0ms) rollback transaction
23308
+  (0.1ms) begin transaction
23309
+  (0.0ms) SAVEPOINT active_record_1
23310
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23311
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23312
+  (0.0ms) SAVEPOINT active_record_1
23313
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23314
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23315
+  (0.0ms) SAVEPOINT active_record_1
23316
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23318
+  (0.0ms) SAVEPOINT active_record_1
23319
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23321
+  (0.0ms) SAVEPOINT active_record_1
23322
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23324
+  (0.0ms) SAVEPOINT active_record_1
23325
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23327
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
23328
+  (0.0ms) rollback transaction
23329
+  (0.1ms) begin transaction
23330
+  (0.0ms) SAVEPOINT active_record_1
23331
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "John Smith"]]
23332
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23333
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23334
+  (0.0ms) rollback transaction
23335
+  (0.1ms) begin transaction
23336
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
23337
+  (0.0ms) rollback transaction
23338
+  (0.1ms) begin transaction
23339
+ Processing by AuditRails::AuditsController#analytics as HTML
23340
+ Completed 500 Internal Server Error in 0ms
23341
+  (0.0ms) rollback transaction
23342
+  (0.1ms) begin transaction
23343
+  (0.0ms) SAVEPOINT active_record_1
23344
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:26:47 UTC +00:00], ["description", "User logged on at 2013-11-22 20:26:47 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23346
+  (0.0ms) SAVEPOINT active_record_1
23347
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:26:47 UTC +00:00], ["description", "User logged on at 2013-11-21 20:26:47 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23349
+  (0.0ms) SAVEPOINT active_record_1
23350
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:26:47 UTC +00:00], ["description", "User logged on at 2013-11-20 20:26:47 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23352
+ Processing by AuditRails::AuditsController#index as HTML
23353
+ Parameters: {"commit"=>"Download Filtered Report"}
23354
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
23355
+ Sent data audits.xls (0.0ms)
23356
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23357
+  (0.0ms) rollback transaction
23358
+  (0.1ms) begin transaction
23359
+  (0.0ms) SAVEPOINT active_record_1
23360
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:26:47 UTC +00:00], ["description", "User logged on at 2013-11-22 20:26:47 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23362
+  (0.0ms) SAVEPOINT active_record_1
23363
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:26:47 UTC +00:00], ["description", "User logged on at 2013-11-21 20:26:47 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23364
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23365
+  (0.0ms) SAVEPOINT active_record_1
23366
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:26:47 UTC +00:00], ["description", "User logged on at 2013-11-20 20:26:47 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23367
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23368
+ Processing by AuditRails::AuditsController#index as HTML
23369
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23370
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
23371
+  (0.0ms) rollback transaction
23372
+  (0.1ms) begin transaction
23373
+ Processing by AuditRails::AuditsController#create as HTML
23374
+  (0.0ms) SAVEPOINT active_record_1
23375
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", nil], ["ip_address", "0.0.0.0"], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23376
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23377
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23378
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23379
+  (0.0ms) rollback transaction
23380
+  (0.1ms) begin transaction
23381
+  (0.0ms) rollback transaction
23382
+  (0.0ms) begin transaction
23383
+  (0.0ms) rollback transaction
23384
+  (0.0ms) begin transaction
23385
+  (0.0ms) rollback transaction
23386
+  (0.1ms) begin transaction
23387
+  (0.0ms) rollback transaction
23388
+  (0.1ms) begin transaction
23389
+ Processing by AnonymousController#login as HTML
23390
+ Parameters: {"id"=>"1"}
23391
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
23392
+  (0.0ms) SAVEPOINT active_record_1
23393
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["description", "User logged in"], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:26:47 UTC +00:00], ["user_name", "Fake User"]]
23394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23395
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23396
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23397
+  (0.0ms) rollback transaction
23398
+ Connecting to database specified by database.yml
23399
+  (0.3ms) begin transaction
23400
+ Processing by AuditRails::AuditsController#analytics as HTML
23401
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits"
23402
+ Rendered /Users/gouravtiwari/audit_rails/app/views/audit_rails/audits/analytics.html.erb within layouts/audit_rails/application (0.0ms)
23403
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23404
+  (0.0ms) rollback transaction
23405
+  (0.0ms) begin transaction
23406
+  (0.0ms) SAVEPOINT active_record_1
23407
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:31:49 UTC +00:00], ["description", "User logged on at 2013-11-22 20:31:49 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:49 UTC +00:00], ["user_name", "Fake User"]]
23408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23409
+  (0.0ms) SAVEPOINT active_record_1
23410
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:31:49 UTC +00:00], ["description", "User logged on at 2013-11-21 20:31:49 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:49 UTC +00:00], ["user_name", "Fake User"]]
23411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23412
+  (0.0ms) SAVEPOINT active_record_1
23413
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:31:49 UTC +00:00], ["description", "User logged on at 2013-11-20 20:31:49 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:49 UTC +00:00], ["user_name", "Fake User"]]
23414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23415
+ Processing by AuditRails::AuditsController#index as HTML
23416
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23417
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
23418
+  (0.0ms) rollback transaction
23419
+  (0.1ms) begin transaction
23420
+  (0.0ms) SAVEPOINT active_record_1
23421
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:31:49 UTC +00:00], ["description", "User logged on at 2013-11-22 20:31:49 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:49 UTC +00:00], ["user_name", "Fake User"]]
23422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23423
+  (0.0ms) SAVEPOINT active_record_1
23424
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:31:49 UTC +00:00], ["description", "User logged on at 2013-11-21 20:31:49 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:49 UTC +00:00], ["user_name", "Fake User"]]
23425
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23426
+  (0.0ms) SAVEPOINT active_record_1
23427
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:31:49 UTC +00:00], ["description", "User logged on at 2013-11-20 20:31:49 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:49 UTC +00:00], ["user_name", "Fake User"]]
23428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23429
+ Processing by AuditRails::AuditsController#index as HTML
23430
+ Parameters: {"commit"=>"Download Filtered Report"}
23431
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
23432
+ Sent data audits.xls (0.0ms)
23433
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23434
+  (0.0ms) rollback transaction
23435
+  (0.1ms) begin transaction
23436
+ Processing by AuditRails::AuditsController#create as HTML
23437
+  (0.0ms) SAVEPOINT active_record_1
23438
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sat, 23 Nov 2013 20:31:49 UTC +00:00], ["description", nil], ["ip_address", "0.0.0.0"], ["updated_at", Sat, 23 Nov 2013 20:31:49 UTC +00:00], ["user_name", "Fake User"]]
23439
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23440
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23441
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23442
+  (0.0ms) rollback transaction
23443
+  (0.1ms) begin transaction
23444
+  (0.0ms) rollback transaction
23445
+  (0.1ms) begin transaction
23446
+  (0.0ms) rollback transaction
23447
+  (0.1ms) begin transaction
23448
+  (0.0ms) rollback transaction
23449
+ Connecting to database specified by database.yml
23450
+  (0.3ms) begin transaction
23451
+ Processing by AnonymousController#login as HTML
23452
+ Parameters: {"id"=>"1"}
23453
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
23454
+  (0.0ms) SAVEPOINT active_record_1
23455
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", "User logged in"], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23457
+ Rendered text template (0.0ms)
23458
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23459
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23460
+  (0.0ms) rollback transaction
23461
+  (0.1ms) begin transaction
23462
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
23463
+  (0.0ms) rollback transaction
23464
+  (0.0ms) begin transaction
23465
+  (0.0ms) SAVEPOINT active_record_1
23466
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23468
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23469
+  (0.0ms) rollback transaction
23470
+  (0.1ms) begin transaction
23471
+  (0.0ms) SAVEPOINT active_record_1
23472
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23473
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23474
+  (0.0ms) SAVEPOINT active_record_1
23475
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23477
+  (0.0ms) SAVEPOINT active_record_1
23478
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23480
+  (0.0ms) SAVEPOINT active_record_1
23481
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23482
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23483
+  (0.0ms) SAVEPOINT active_record_1
23484
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23486
+  (0.0ms) SAVEPOINT active_record_1
23487
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23489
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
23490
+  (0.0ms) rollback transaction
23491
+  (0.1ms) begin transaction
23492
+  (0.0ms) SAVEPOINT active_record_1
23493
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23495
+  (0.0ms) SAVEPOINT active_record_1
23496
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23498
+  (0.0ms) SAVEPOINT active_record_1
23499
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23501
+  (0.0ms) SAVEPOINT active_record_1
23502
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:31:53.096869' WHERE "audit_rails_audits"."id" = 1
23503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23504
+  (0.0ms) SAVEPOINT active_record_1
23505
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:31:53.096869' WHERE "audit_rails_audits"."id" = 2
23506
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23507
+  (0.0ms) SAVEPOINT active_record_1
23508
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:31:53.096869' WHERE "audit_rails_audits"."id" = 3
23509
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23510
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
23511
+  (0.0ms) rollback transaction
23512
+  (0.1ms) begin transaction
23513
+  (0.0ms) SAVEPOINT active_record_1
23514
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23516
+  (0.0ms) SAVEPOINT active_record_1
23517
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23519
+  (0.0ms) SAVEPOINT active_record_1
23520
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23521
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23522
+  (0.0ms) SAVEPOINT active_record_1
23523
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:31:53.110547' WHERE "audit_rails_audits"."id" = 1
23524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23525
+  (0.0ms) SAVEPOINT active_record_1
23526
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:31:53.110547' WHERE "audit_rails_audits"."id" = 2
23527
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23528
+  (0.0ms) SAVEPOINT active_record_1
23529
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:31:53.110547' WHERE "audit_rails_audits"."id" = 3
23530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23531
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23532
+  (0.0ms) rollback transaction
23533
+  (0.1ms) begin transaction
23534
+  (0.0ms) SAVEPOINT active_record_1
23535
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23537
+  (0.0ms) SAVEPOINT active_record_1
23538
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23540
+  (0.0ms) SAVEPOINT active_record_1
23541
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23543
+  (0.0ms) SAVEPOINT active_record_1
23544
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:31:53.120830' WHERE "audit_rails_audits"."id" = 1
23545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23546
+  (0.0ms) SAVEPOINT active_record_1
23547
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:31:53.120830' WHERE "audit_rails_audits"."id" = 2
23548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23549
+  (0.0ms) SAVEPOINT active_record_1
23550
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:31:53.120830' WHERE "audit_rails_audits"."id" = 3
23551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23552
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
23553
+  (0.0ms) rollback transaction
23554
+  (0.1ms) begin transaction
23555
+  (0.0ms) SAVEPOINT active_record_1
23556
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23558
+  (0.0ms) SAVEPOINT active_record_1
23559
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23561
+  (0.0ms) SAVEPOINT active_record_1
23562
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23564
+  (0.0ms) SAVEPOINT active_record_1
23565
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23567
+  (0.0ms) SAVEPOINT active_record_1
23568
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "John Smith"]]
23569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23570
+  (0.0ms) SAVEPOINT active_record_1
23571
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23573
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
23574
+  (0.0ms) rollback transaction
23575
+  (0.1ms) begin transaction
23576
+  (0.0ms) rollback transaction
23577
+  (0.0ms) begin transaction
23578
+  (0.0ms) rollback transaction
23579
+  (0.0ms) begin transaction
23580
+  (0.0ms) rollback transaction
23581
+  (0.0ms) begin transaction
23582
+ Processing by AuditRails::AuditsController#analytics as HTML
23583
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" 
23584
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23585
+  (0.0ms) rollback transaction
23586
+  (0.1ms) begin transaction
23587
+  (0.0ms) SAVEPOINT active_record_1
23588
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:31:53 UTC +00:00], ["description", "User logged on at 2013-11-22 20:31:53 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23590
+  (0.0ms) SAVEPOINT active_record_1
23591
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:31:53 UTC +00:00], ["description", "User logged on at 2013-11-21 20:31:53 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23592
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23593
+  (0.0ms) SAVEPOINT active_record_1
23594
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:31:53 UTC +00:00], ["description", "User logged on at 2013-11-20 20:31:53 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23596
+ Processing by AuditRails::AuditsController#index as HTML
23597
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23598
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
23599
+  (0.0ms) rollback transaction
23600
+  (0.1ms) begin transaction
23601
+  (0.0ms) SAVEPOINT active_record_1
23602
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:31:53 UTC +00:00], ["description", "User logged on at 2013-11-22 20:31:53 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23603
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23604
+  (0.0ms) SAVEPOINT active_record_1
23605
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:31:53 UTC +00:00], ["description", "User logged on at 2013-11-21 20:31:53 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23607
+  (0.0ms) SAVEPOINT active_record_1
23608
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:31:53 UTC +00:00], ["description", "User logged on at 2013-11-20 20:31:53 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23609
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23610
+ Processing by AuditRails::AuditsController#index as HTML
23611
+ Parameters: {"commit"=>"Download Filtered Report"}
23612
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
23613
+ Sent data audits.xls (0.0ms)
23614
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23615
+  (0.0ms) rollback transaction
23616
+  (0.1ms) begin transaction
23617
+ Processing by AuditRails::AuditsController#create as HTML
23618
+  (0.0ms) SAVEPOINT active_record_1
23619
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["description", nil], ["ip_address", "0.0.0.0"], ["updated_at", Sat, 23 Nov 2013 20:31:53 UTC +00:00], ["user_name", "Fake User"]]
23620
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23621
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23622
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23623
+  (0.0ms) rollback transaction
23624
+  (0.1ms) begin transaction
23625
+  (0.0ms) rollback transaction
23626
+ Connecting to database specified by database.yml
23627
+  (0.3ms) begin transaction
23628
+  (0.0ms) SAVEPOINT active_record_1
23629
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23631
+  (0.0ms) SAVEPOINT active_record_1
23632
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "Fake User"]]
23633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23634
+  (0.0ms) SAVEPOINT active_record_1
23635
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23637
+  (0.0ms) SAVEPOINT active_record_1
23638
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "Fake User"]]
23639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23640
+  (0.0ms) SAVEPOINT active_record_1
23641
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23643
+  (0.0ms) SAVEPOINT active_record_1
23644
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "Fake User"]]
23645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23646
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
23647
+  (0.0ms) rollback transaction
23648
+  (0.1ms) begin transaction
23649
+  (0.0ms) SAVEPOINT active_record_1
23650
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23652
+  (0.0ms) SAVEPOINT active_record_1
23653
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23655
+  (0.0ms) SAVEPOINT active_record_1
23656
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23657
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23658
+  (0.0ms) SAVEPOINT active_record_1
23659
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:30.302416' WHERE "audit_rails_audits"."id" = 1
23660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23661
+  (0.0ms) SAVEPOINT active_record_1
23662
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:30.302416' WHERE "audit_rails_audits"."id" = 2
23663
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23664
+  (0.0ms) SAVEPOINT active_record_1
23665
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:30.302416' WHERE "audit_rails_audits"."id" = 3
23666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23667
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23668
+  (0.0ms) rollback transaction
23669
+  (0.1ms) begin transaction
23670
+  (0.0ms) SAVEPOINT active_record_1
23671
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23673
+  (0.0ms) SAVEPOINT active_record_1
23674
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23675
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23676
+  (0.0ms) SAVEPOINT active_record_1
23677
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23679
+  (0.0ms) SAVEPOINT active_record_1
23680
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:30.319537' WHERE "audit_rails_audits"."id" = 1
23681
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23682
+  (0.0ms) SAVEPOINT active_record_1
23683
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:30.319537' WHERE "audit_rails_audits"."id" = 2
23684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23685
+  (0.0ms) SAVEPOINT active_record_1
23686
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:30.319537' WHERE "audit_rails_audits"."id" = 3
23687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23688
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
23689
+  (0.0ms) rollback transaction
23690
+  (0.1ms) begin transaction
23691
+  (0.0ms) SAVEPOINT active_record_1
23692
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23694
+  (0.0ms) SAVEPOINT active_record_1
23695
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23697
+  (0.0ms) SAVEPOINT active_record_1
23698
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23700
+  (0.0ms) SAVEPOINT active_record_1
23701
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:30.329420' WHERE "audit_rails_audits"."id" = 1
23702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23703
+  (0.0ms) SAVEPOINT active_record_1
23704
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:30.329420' WHERE "audit_rails_audits"."id" = 2
23705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23706
+  (0.0ms) SAVEPOINT active_record_1
23707
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:30.329420' WHERE "audit_rails_audits"."id" = 3
23708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23709
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
23710
+  (0.0ms) rollback transaction
23711
+  (0.1ms) begin transaction
23712
+  (0.0ms) SAVEPOINT active_record_1
23713
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23715
+  (0.0ms) SAVEPOINT active_record_1
23716
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "Fake User"]]
23717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23718
+  (0.0ms) SAVEPOINT active_record_1
23719
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23720
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23721
+  (0.0ms) SAVEPOINT active_record_1
23722
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "Fake User"]]
23723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23724
+  (0.0ms) SAVEPOINT active_record_1
23725
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23727
+  (0.0ms) SAVEPOINT active_record_1
23728
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "Fake User"]]
23729
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23730
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
23731
+  (0.0ms) rollback transaction
23732
+  (0.1ms) begin transaction
23733
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
23734
+  (0.0ms) rollback transaction
23735
+  (0.1ms) begin transaction
23736
+  (0.0ms) SAVEPOINT active_record_1
23737
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23739
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23740
+  (0.0ms) rollback transaction
23741
+  (0.1ms) begin transaction
23742
+  (0.0ms) SAVEPOINT active_record_1
23743
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23745
+  (0.0ms) SAVEPOINT active_record_1
23746
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "Fake User"]]
23747
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23748
+  (0.0ms) SAVEPOINT active_record_1
23749
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23751
+  (0.0ms) SAVEPOINT active_record_1
23752
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "Fake User"]]
23753
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23754
+  (0.0ms) SAVEPOINT active_record_1
23755
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "John Smith"]]
23756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23757
+  (0.0ms) SAVEPOINT active_record_1
23758
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:30 UTC +00:00], ["user_name", "Fake User"]]
23759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23760
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
23761
+  (0.0ms) rollback transaction
23762
+ Connecting to database specified by database.yml
23763
+  (0.3ms) begin transaction
23764
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
23765
+  (0.0ms) rollback transaction
23766
+  (0.1ms) begin transaction
23767
+  (0.0ms) SAVEPOINT active_record_1
23768
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "John Smith"]]
23769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23770
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23771
+  (0.0ms) rollback transaction
23772
+  (0.1ms) begin transaction
23773
+  (0.0ms) SAVEPOINT active_record_1
23774
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "John Smith"]]
23775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23776
+  (0.0ms) SAVEPOINT active_record_1
23777
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "Fake User"]]
23778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23779
+  (0.0ms) SAVEPOINT active_record_1
23780
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "John Smith"]]
23781
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23782
+  (0.0ms) SAVEPOINT active_record_1
23783
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "Fake User"]]
23784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23785
+  (0.0ms) SAVEPOINT active_record_1
23786
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "John Smith"]]
23787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23788
+  (0.0ms) SAVEPOINT active_record_1
23789
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "Fake User"]]
23790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23791
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
23792
+  (0.0ms) rollback transaction
23793
+  (0.1ms) begin transaction
23794
+  (0.0ms) SAVEPOINT active_record_1
23795
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "John Smith"]]
23796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23797
+  (0.0ms) SAVEPOINT active_record_1
23798
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "Fake User"]]
23799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23800
+  (0.0ms) SAVEPOINT active_record_1
23801
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "John Smith"]]
23802
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23803
+  (0.0ms) SAVEPOINT active_record_1
23804
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "Fake User"]]
23805
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23806
+  (0.0ms) SAVEPOINT active_record_1
23807
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "John Smith"]]
23808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23809
+  (0.0ms) SAVEPOINT active_record_1
23810
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:47 UTC +00:00], ["user_name", "Fake User"]]
23811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23812
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
23813
+  (0.0ms) rollback transaction
23814
+  (0.1ms) begin transaction
23815
+  (0.0ms) SAVEPOINT active_record_1
23816
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23818
+  (0.0ms) SAVEPOINT active_record_1
23819
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23820
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23821
+  (0.0ms) SAVEPOINT active_record_1
23822
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23823
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23824
+  (0.0ms) SAVEPOINT active_record_1
23825
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:48.008616' WHERE "audit_rails_audits"."id" = 1
23826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23827
+  (0.0ms) SAVEPOINT active_record_1
23828
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:48.008616' WHERE "audit_rails_audits"."id" = 2
23829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23830
+  (0.0ms) SAVEPOINT active_record_1
23831
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:48.008616' WHERE "audit_rails_audits"."id" = 3
23832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23833
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
23834
+  (0.0ms) rollback transaction
23835
+  (0.1ms) begin transaction
23836
+  (0.0ms) SAVEPOINT active_record_1
23837
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23839
+  (0.0ms) SAVEPOINT active_record_1
23840
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23842
+  (0.0ms) SAVEPOINT active_record_1
23843
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23845
+  (0.0ms) SAVEPOINT active_record_1
23846
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:48.024678' WHERE "audit_rails_audits"."id" = 1
23847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23848
+  (0.0ms) SAVEPOINT active_record_1
23849
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:48.024678' WHERE "audit_rails_audits"."id" = 2
23850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23851
+  (0.0ms) SAVEPOINT active_record_1
23852
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:48.024678' WHERE "audit_rails_audits"."id" = 3
23853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23854
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
23855
+  (0.0ms) rollback transaction
23856
+  (0.1ms) begin transaction
23857
+  (0.0ms) SAVEPOINT active_record_1
23858
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23859
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23860
+  (0.0ms) SAVEPOINT active_record_1
23861
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23863
+  (0.0ms) SAVEPOINT active_record_1
23864
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23866
+  (0.0ms) SAVEPOINT active_record_1
23867
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:48.040511' WHERE "audit_rails_audits"."id" = 1
23868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23869
+  (0.0ms) SAVEPOINT active_record_1
23870
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:48.040511' WHERE "audit_rails_audits"."id" = 2
23871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23872
+  (0.0ms) SAVEPOINT active_record_1
23873
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:48.040511' WHERE "audit_rails_audits"."id" = 3
23874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23875
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23876
+  (0.0ms) rollback transaction
23877
+  (0.1ms) begin transaction
23878
+  (0.0ms) SAVEPOINT active_record_1
23879
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23881
+  (0.0ms) SAVEPOINT active_record_1
23882
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "Fake User"]]
23883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23884
+  (0.0ms) SAVEPOINT active_record_1
23885
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23887
+  (0.0ms) SAVEPOINT active_record_1
23888
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "Fake User"]]
23889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23890
+  (0.0ms) SAVEPOINT active_record_1
23891
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "John Smith"]]
23892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23893
+  (0.0ms) SAVEPOINT active_record_1
23894
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:48 UTC +00:00], ["user_name", "Fake User"]]
23895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23896
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
23897
+  (0.0ms) rollback transaction
23898
+ Connecting to database specified by database.yml
23899
+  (0.3ms) begin transaction
23900
+ Processing by AnonymousController#login as HTML
23901
+ Parameters: {"id"=>"1"}
23902
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
23903
+  (0.0ms) SAVEPOINT active_record_1
23904
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", "User logged in"], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23905
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23906
+ Rendered text template (0.0ms)
23907
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23908
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23909
+  (0.0ms) rollback transaction
23910
+  (0.1ms) begin transaction
23911
+  (0.0ms) rollback transaction
23912
+  (0.1ms) begin transaction
23913
+  (0.0ms) rollback transaction
23914
+  (0.0ms) begin transaction
23915
+  (0.0ms) rollback transaction
23916
+  (0.1ms) begin transaction
23917
+  (0.0ms) SAVEPOINT active_record_1
23918
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:33:51 UTC +00:00], ["description", "User logged on at 2013-11-22 20:33:51 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23919
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23920
+  (0.0ms) SAVEPOINT active_record_1
23921
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:33:51 UTC +00:00], ["description", "User logged on at 2013-11-21 20:33:51 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23923
+  (0.0ms) SAVEPOINT active_record_1
23924
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:33:51 UTC +00:00], ["description", "User logged on at 2013-11-20 20:33:51 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23926
+ Processing by AuditRails::AuditsController#index as HTML
23927
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23928
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
23929
+  (0.0ms) rollback transaction
23930
+  (0.1ms) begin transaction
23931
+  (0.0ms) SAVEPOINT active_record_1
23932
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:33:51 UTC +00:00], ["description", "User logged on at 2013-11-22 20:33:51 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23934
+  (0.0ms) SAVEPOINT active_record_1
23935
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:33:51 UTC +00:00], ["description", "User logged on at 2013-11-21 20:33:51 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23937
+  (0.0ms) SAVEPOINT active_record_1
23938
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:33:51 UTC +00:00], ["description", "User logged on at 2013-11-20 20:33:51 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23940
+ Processing by AuditRails::AuditsController#index as HTML
23941
+ Parameters: {"commit"=>"Download Filtered Report"}
23942
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
23943
+ Sent data audits.xls (0.0ms)
23944
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23945
+  (0.0ms) rollback transaction
23946
+  (0.1ms) begin transaction
23947
+ Processing by AuditRails::AuditsController#analytics as HTML
23948
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" 
23949
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23950
+  (0.0ms) rollback transaction
23951
+  (0.1ms) begin transaction
23952
+ Processing by AuditRails::AuditsController#create as HTML
23953
+  (0.0ms) SAVEPOINT active_record_1
23954
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", "0.0.0.0"], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23955
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23956
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
23957
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
23958
+  (0.0ms) rollback transaction
23959
+  (0.1ms) begin transaction
23960
+  (0.0ms) SAVEPOINT active_record_1
23961
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
23962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23963
+  (0.0ms) SAVEPOINT active_record_1
23964
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23966
+  (0.0ms) SAVEPOINT active_record_1
23967
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
23968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23969
+  (0.0ms) SAVEPOINT active_record_1
23970
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23972
+  (0.0ms) SAVEPOINT active_record_1
23973
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
23974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23975
+  (0.0ms) SAVEPOINT active_record_1
23976
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
23977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23978
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
23979
+  (0.0ms) rollback transaction
23980
+  (0.1ms) begin transaction
23981
+  (0.0ms) SAVEPOINT active_record_1
23982
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
23983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23984
+  (0.0ms) SAVEPOINT active_record_1
23985
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
23986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23987
+  (0.0ms) SAVEPOINT active_record_1
23988
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
23989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23990
+  (0.0ms) SAVEPOINT active_record_1
23991
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:51.480625' WHERE "audit_rails_audits"."id" = 1
23992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23993
+  (0.0ms) SAVEPOINT active_record_1
23994
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:51.480625' WHERE "audit_rails_audits"."id" = 2
23995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23996
+  (0.0ms) SAVEPOINT active_record_1
23997
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:51.480625' WHERE "audit_rails_audits"."id" = 3
23998
+  (0.0ms) RELEASE SAVEPOINT active_record_1
23999
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24000
+  (0.0ms) rollback transaction
24001
+  (0.1ms) begin transaction
24002
+  (0.0ms) SAVEPOINT active_record_1
24003
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24005
+  (0.0ms) SAVEPOINT active_record_1
24006
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24007
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24008
+  (0.0ms) SAVEPOINT active_record_1
24009
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24011
+  (0.0ms) SAVEPOINT active_record_1
24012
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:51.496091' WHERE "audit_rails_audits"."id" = 1
24013
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24014
+  (0.0ms) SAVEPOINT active_record_1
24015
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:51.496091' WHERE "audit_rails_audits"."id" = 2
24016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24017
+  (0.0ms) SAVEPOINT active_record_1
24018
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:51.496091' WHERE "audit_rails_audits"."id" = 3
24019
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24020
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24021
+  (0.0ms) rollback transaction
24022
+  (0.1ms) begin transaction
24023
+  (0.0ms) SAVEPOINT active_record_1
24024
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24026
+  (0.0ms) SAVEPOINT active_record_1
24027
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24028
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24029
+  (0.0ms) SAVEPOINT active_record_1
24030
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24032
+  (0.0ms) SAVEPOINT active_record_1
24033
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:51.509605' WHERE "audit_rails_audits"."id" = 1
24034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24035
+  (0.0ms) SAVEPOINT active_record_1
24036
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:51.509605' WHERE "audit_rails_audits"."id" = 2
24037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24038
+  (0.0ms) SAVEPOINT active_record_1
24039
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:51.509605' WHERE "audit_rails_audits"."id" = 3
24040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24041
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24042
+  (0.0ms) rollback transaction
24043
+  (0.1ms) begin transaction
24044
+  (0.0ms) SAVEPOINT active_record_1
24045
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24047
+  (0.0ms) SAVEPOINT active_record_1
24048
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
24049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24050
+  (0.0ms) SAVEPOINT active_record_1
24051
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24052
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24053
+  (0.0ms) SAVEPOINT active_record_1
24054
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
24055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24056
+  (0.0ms) SAVEPOINT active_record_1
24057
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24058
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24059
+  (0.0ms) SAVEPOINT active_record_1
24060
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
24061
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24062
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
24063
+  (0.0ms) rollback transaction
24064
+  (0.1ms) begin transaction
24065
+  (0.0ms) SAVEPOINT active_record_1
24066
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24068
+  (0.0ms) SAVEPOINT active_record_1
24069
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
24070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24071
+  (0.0ms) SAVEPOINT active_record_1
24072
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24074
+  (0.0ms) SAVEPOINT active_record_1
24075
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
24076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24077
+  (0.0ms) SAVEPOINT active_record_1
24078
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24080
+  (0.0ms) SAVEPOINT active_record_1
24081
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "Fake User"]]
24082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24083
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
24084
+  (0.0ms) rollback transaction
24085
+  (0.1ms) begin transaction
24086
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
24087
+  (0.0ms) rollback transaction
24088
+  (0.1ms) begin transaction
24089
+  (0.0ms) SAVEPOINT active_record_1
24090
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:51 UTC +00:00], ["user_name", "John Smith"]]
24091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24092
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24093
+  (0.0ms) rollback transaction
24094
+  (0.1ms) begin transaction
24095
+  (0.0ms) rollback transaction
24096
+ Connecting to database specified by database.yml
24097
+  (0.4ms) begin transaction
24098
+  (0.0ms) SAVEPOINT active_record_1
24099
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24101
+  (0.0ms) SAVEPOINT active_record_1
24102
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "Fake User"]]
24103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24104
+  (0.0ms) SAVEPOINT active_record_1
24105
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24107
+  (0.0ms) SAVEPOINT active_record_1
24108
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "Fake User"]]
24109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24110
+  (0.0ms) SAVEPOINT active_record_1
24111
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24113
+  (0.0ms) SAVEPOINT active_record_1
24114
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "Fake User"]]
24115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24116
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
24117
+  (0.0ms) rollback transaction
24118
+  (0.1ms) begin transaction
24119
+  (0.0ms) SAVEPOINT active_record_1
24120
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24122
+  (0.0ms) SAVEPOINT active_record_1
24123
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "Fake User"]]
24124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24125
+  (0.0ms) SAVEPOINT active_record_1
24126
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24127
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24128
+  (0.0ms) SAVEPOINT active_record_1
24129
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "Fake User"]]
24130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24131
+  (0.0ms) SAVEPOINT active_record_1
24132
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24134
+  (0.0ms) SAVEPOINT active_record_1
24135
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "Fake User"]]
24136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24137
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
24138
+  (0.0ms) rollback transaction
24139
+  (0.1ms) begin transaction
24140
+  (0.0ms) SAVEPOINT active_record_1
24141
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24143
+  (0.0ms) SAVEPOINT active_record_1
24144
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24146
+  (0.0ms) SAVEPOINT active_record_1
24147
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24149
+  (0.0ms) SAVEPOINT active_record_1
24150
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:55.223261' WHERE "audit_rails_audits"."id" = 1
24151
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24152
+  (0.0ms) SAVEPOINT active_record_1
24153
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:55.223261' WHERE "audit_rails_audits"."id" = 2
24154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24155
+  (0.0ms) SAVEPOINT active_record_1
24156
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:55.223261' WHERE "audit_rails_audits"."id" = 3
24157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24158
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24159
+  (0.0ms) rollback transaction
24160
+  (0.1ms) begin transaction
24161
+  (0.0ms) SAVEPOINT active_record_1
24162
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24164
+  (0.0ms) SAVEPOINT active_record_1
24165
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24167
+  (0.0ms) SAVEPOINT active_record_1
24168
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24170
+  (0.0ms) SAVEPOINT active_record_1
24171
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:55.240493' WHERE "audit_rails_audits"."id" = 1
24172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24173
+  (0.0ms) SAVEPOINT active_record_1
24174
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:55.240493' WHERE "audit_rails_audits"."id" = 2
24175
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24176
+  (0.0ms) SAVEPOINT active_record_1
24177
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:55.240493' WHERE "audit_rails_audits"."id" = 3
24178
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24179
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24180
+  (0.0ms) rollback transaction
24181
+  (0.1ms) begin transaction
24182
+  (0.0ms) SAVEPOINT active_record_1
24183
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24185
+  (0.0ms) SAVEPOINT active_record_1
24186
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24187
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24188
+  (0.0ms) SAVEPOINT active_record_1
24189
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24191
+  (0.0ms) SAVEPOINT active_record_1
24192
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:55.255296' WHERE "audit_rails_audits"."id" = 1
24193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24194
+  (0.0ms) SAVEPOINT active_record_1
24195
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:55.255296' WHERE "audit_rails_audits"."id" = 2
24196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24197
+  (0.0ms) SAVEPOINT active_record_1
24198
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:55.255296' WHERE "audit_rails_audits"."id" = 3
24199
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24200
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24201
+  (0.0ms) rollback transaction
24202
+  (0.1ms) begin transaction
24203
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
24204
+  (0.0ms) rollback transaction
24205
+  (0.1ms) begin transaction
24206
+  (0.0ms) SAVEPOINT active_record_1
24207
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24208
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24209
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24210
+  (0.0ms) rollback transaction
24211
+  (0.1ms) begin transaction
24212
+  (0.0ms) SAVEPOINT active_record_1
24213
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24215
+  (0.0ms) SAVEPOINT active_record_1
24216
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "Fake User"]]
24217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24218
+  (0.0ms) SAVEPOINT active_record_1
24219
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24220
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24221
+  (0.0ms) SAVEPOINT active_record_1
24222
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "Fake User"]]
24223
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24224
+  (0.0ms) SAVEPOINT active_record_1
24225
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "John Smith"]]
24226
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24227
+  (0.0ms) SAVEPOINT active_record_1
24228
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:33:55 UTC +00:00], ["user_name", "Fake User"]]
24229
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24230
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
24231
+  (0.0ms) rollback transaction
24232
+ Connecting to database specified by database.yml
24233
+  (0.3ms) begin transaction
24234
+  (0.0ms) SAVEPOINT active_record_1
24235
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24237
+  (0.0ms) SAVEPOINT active_record_1
24238
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "Fake User"]]
24239
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24240
+  (0.0ms) SAVEPOINT active_record_1
24241
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24243
+  (0.0ms) SAVEPOINT active_record_1
24244
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "Fake User"]]
24245
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24246
+  (0.0ms) SAVEPOINT active_record_1
24247
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24248
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24249
+  (0.0ms) SAVEPOINT active_record_1
24250
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "Fake User"]]
24251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24252
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
24253
+  (0.0ms) rollback transaction
24254
+  (0.1ms) begin transaction
24255
+  (0.0ms) SAVEPOINT active_record_1
24256
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24257
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24258
+  (0.0ms) SAVEPOINT active_record_1
24259
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "Fake User"]]
24260
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24261
+  (0.0ms) SAVEPOINT active_record_1
24262
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24263
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24264
+  (0.0ms) SAVEPOINT active_record_1
24265
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "Fake User"]]
24266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24267
+  (0.0ms) SAVEPOINT active_record_1
24268
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24270
+  (0.0ms) SAVEPOINT active_record_1
24271
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "Fake User"]]
24272
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24273
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
24274
+  (0.0ms) rollback transaction
24275
+  (0.1ms) begin transaction
24276
+  (0.0ms) SAVEPOINT active_record_1
24277
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24278
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24279
+  (0.0ms) SAVEPOINT active_record_1
24280
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24281
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24282
+  (0.0ms) SAVEPOINT active_record_1
24283
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "Fake User"]]
24284
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24285
+  (0.0ms) SAVEPOINT active_record_1
24286
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24288
+  (0.0ms) SAVEPOINT active_record_1
24289
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24290
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24291
+  (0.0ms) SAVEPOINT active_record_1
24292
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "Fake User"]]
24293
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24294
+  (0.0ms) SAVEPOINT active_record_1
24295
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24297
+  (0.0ms) SAVEPOINT active_record_1
24298
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24300
+  (0.0ms) SAVEPOINT active_record_1
24301
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "Fake User"]]
24302
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24303
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
24304
+  (0.0ms) rollback transaction
24305
+  (0.0ms) begin transaction
24306
+  (0.0ms) SAVEPOINT active_record_1
24307
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24308
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24309
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24310
+  (0.0ms) rollback transaction
24311
+  (0.1ms) begin transaction
24312
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
24313
+  (0.0ms) rollback transaction
24314
+  (0.1ms) begin transaction
24315
+  (0.0ms) SAVEPOINT active_record_1
24316
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24318
+  (0.0ms) SAVEPOINT active_record_1
24319
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24321
+  (0.0ms) SAVEPOINT active_record_1
24322
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24324
+  (0.0ms) SAVEPOINT active_record_1
24325
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:16.891718' WHERE "audit_rails_audits"."id" = 1
24326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24327
+  (0.0ms) SAVEPOINT active_record_1
24328
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:16.891718' WHERE "audit_rails_audits"."id" = 2
24329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24330
+  (0.0ms) SAVEPOINT active_record_1
24331
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:16.891718' WHERE "audit_rails_audits"."id" = 3
24332
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24333
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24334
+  (0.0ms) rollback transaction
24335
+  (0.1ms) begin transaction
24336
+  (0.0ms) SAVEPOINT active_record_1
24337
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24338
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24339
+  (0.0ms) SAVEPOINT active_record_1
24340
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24342
+  (0.0ms) SAVEPOINT active_record_1
24343
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24344
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24345
+  (0.0ms) SAVEPOINT active_record_1
24346
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:16.905411' WHERE "audit_rails_audits"."id" = 1
24347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24348
+  (0.0ms) SAVEPOINT active_record_1
24349
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:16.905411' WHERE "audit_rails_audits"."id" = 2
24350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24351
+  (0.0ms) SAVEPOINT active_record_1
24352
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:16.905411' WHERE "audit_rails_audits"."id" = 3
24353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24354
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24355
+  (0.0ms) rollback transaction
24356
+  (0.1ms) begin transaction
24357
+  (0.0ms) SAVEPOINT active_record_1
24358
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24360
+  (0.0ms) SAVEPOINT active_record_1
24361
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24362
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24363
+  (0.0ms) SAVEPOINT active_record_1
24364
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:16 UTC +00:00], ["user_name", "John Smith"]]
24365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24366
+  (0.0ms) SAVEPOINT active_record_1
24367
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:16.915761' WHERE "audit_rails_audits"."id" = 1
24368
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24369
+  (0.0ms) SAVEPOINT active_record_1
24370
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:16.915761' WHERE "audit_rails_audits"."id" = 2
24371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24372
+  (0.0ms) SAVEPOINT active_record_1
24373
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:16.915761' WHERE "audit_rails_audits"."id" = 3
24374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24375
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24376
+  (0.0ms) rollback transaction
24377
+ Connecting to database specified by database.yml
24378
+  (0.3ms) begin transaction
24379
+  (0.0ms) SAVEPOINT active_record_1
24380
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24382
+  (0.0ms) SAVEPOINT active_record_1
24383
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "Fake User"]]
24384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24385
+  (0.0ms) SAVEPOINT active_record_1
24386
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24388
+  (0.0ms) SAVEPOINT active_record_1
24389
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "Fake User"]]
24390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24391
+  (0.0ms) SAVEPOINT active_record_1
24392
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24394
+  (0.0ms) SAVEPOINT active_record_1
24395
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "Fake User"]]
24396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24397
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
24398
+  (0.0ms) rollback transaction
24399
+  (0.1ms) begin transaction
24400
+  (0.0ms) SAVEPOINT active_record_1
24401
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24403
+  (0.0ms) SAVEPOINT active_record_1
24404
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "Fake User"]]
24405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24406
+  (0.0ms) SAVEPOINT active_record_1
24407
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24409
+  (0.0ms) SAVEPOINT active_record_1
24410
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "Fake User"]]
24411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24412
+  (0.0ms) SAVEPOINT active_record_1
24413
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24415
+  (0.0ms) SAVEPOINT active_record_1
24416
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "Fake User"]]
24417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24418
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
24419
+  (0.0ms) rollback transaction
24420
+  (0.1ms) begin transaction
24421
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
24422
+  (0.0ms) rollback transaction
24423
+  (0.1ms) begin transaction
24424
+  (0.0ms) SAVEPOINT active_record_1
24425
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24427
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24428
+  (0.0ms) rollback transaction
24429
+  (0.1ms) begin transaction
24430
+  (0.0ms) SAVEPOINT active_record_1
24431
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24432
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24433
+  (0.0ms) SAVEPOINT active_record_1
24434
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24436
+  (0.0ms) SAVEPOINT active_record_1
24437
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24439
+  (0.0ms) SAVEPOINT active_record_1
24440
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:33.383877' WHERE "audit_rails_audits"."id" = 1
24441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24442
+  (0.0ms) SAVEPOINT active_record_1
24443
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:33.383877' WHERE "audit_rails_audits"."id" = 2
24444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24445
+  (0.0ms) SAVEPOINT active_record_1
24446
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:33.383877' WHERE "audit_rails_audits"."id" = 3
24447
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24448
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24449
+  (0.0ms) rollback transaction
24450
+  (0.1ms) begin transaction
24451
+  (0.0ms) SAVEPOINT active_record_1
24452
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24454
+  (0.0ms) SAVEPOINT active_record_1
24455
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24457
+  (0.0ms) SAVEPOINT active_record_1
24458
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24460
+  (0.0ms) SAVEPOINT active_record_1
24461
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:33.396895' WHERE "audit_rails_audits"."id" = 1
24462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24463
+  (0.0ms) SAVEPOINT active_record_1
24464
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:33.396895' WHERE "audit_rails_audits"."id" = 2
24465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24466
+  (0.0ms) SAVEPOINT active_record_1
24467
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:33.396895' WHERE "audit_rails_audits"."id" = 3
24468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24469
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24470
+  (0.0ms) rollback transaction
24471
+  (0.1ms) begin transaction
24472
+  (0.0ms) SAVEPOINT active_record_1
24473
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24475
+  (0.0ms) SAVEPOINT active_record_1
24476
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24478
+  (0.0ms) SAVEPOINT active_record_1
24479
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24481
+  (0.0ms) SAVEPOINT active_record_1
24482
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:33.408908' WHERE "audit_rails_audits"."id" = 1
24483
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24484
+  (0.0ms) SAVEPOINT active_record_1
24485
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:33.408908' WHERE "audit_rails_audits"."id" = 2
24486
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24487
+  (0.0ms) SAVEPOINT active_record_1
24488
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:33.408908' WHERE "audit_rails_audits"."id" = 3
24489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24490
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24491
+  (0.0ms) rollback transaction
24492
+  (0.1ms) begin transaction
24493
+  (0.0ms) SAVEPOINT active_record_1
24494
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24496
+  (0.0ms) SAVEPOINT active_record_1
24497
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24499
+  (0.0ms) SAVEPOINT active_record_1
24500
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "Fake User"]]
24501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24502
+  (0.0ms) SAVEPOINT active_record_1
24503
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24505
+  (0.0ms) SAVEPOINT active_record_1
24506
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24508
+  (0.0ms) SAVEPOINT active_record_1
24509
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "Fake User"]]
24510
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24511
+  (0.0ms) SAVEPOINT active_record_1
24512
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24513
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24514
+  (0.0ms) SAVEPOINT active_record_1
24515
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "John Smith"]]
24516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24517
+  (0.0ms) SAVEPOINT active_record_1
24518
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:33 UTC +00:00], ["user_name", "Fake User"]]
24519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24520
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
24521
+  (0.0ms) rollback transaction
24522
+ Connecting to database specified by database.yml
24523
+  (0.3ms) begin transaction
24524
+ Processing by AnonymousController#login as HTML
24525
+ Parameters: {"id"=>"1"}
24526
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
24527
+  (0.0ms) SAVEPOINT active_record_1
24528
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", "User logged in"], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24530
+ Rendered text template (0.0ms)
24531
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
24532
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24533
+  (0.0ms) rollback transaction
24534
+  (0.1ms) begin transaction
24535
+  (0.0ms) rollback transaction
24536
+  (0.0ms) begin transaction
24537
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
24538
+  (0.0ms) rollback transaction
24539
+  (0.1ms) begin transaction
24540
+  (0.0ms) SAVEPOINT active_record_1
24541
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24543
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24544
+  (0.0ms) rollback transaction
24545
+  (0.1ms) begin transaction
24546
+  (0.0ms) SAVEPOINT active_record_1
24547
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24549
+  (0.0ms) SAVEPOINT active_record_1
24550
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24552
+  (0.0ms) SAVEPOINT active_record_1
24553
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24555
+  (0.0ms) SAVEPOINT active_record_1
24556
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24558
+  (0.0ms) SAVEPOINT active_record_1
24559
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24561
+  (0.0ms) SAVEPOINT active_record_1
24562
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24564
+  (0.0ms) SAVEPOINT active_record_1
24565
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24567
+  (0.0ms) SAVEPOINT active_record_1
24568
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24570
+  (0.0ms) SAVEPOINT active_record_1
24571
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24573
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
24574
+  (0.0ms) rollback transaction
24575
+  (0.1ms) begin transaction
24576
+  (0.0ms) SAVEPOINT active_record_1
24577
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24578
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24579
+  (0.0ms) SAVEPOINT active_record_1
24580
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24582
+  (0.0ms) SAVEPOINT active_record_1
24583
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24585
+  (0.0ms) SAVEPOINT active_record_1
24586
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24588
+  (0.0ms) SAVEPOINT active_record_1
24589
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24591
+  (0.0ms) SAVEPOINT active_record_1
24592
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24594
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
24595
+  (0.0ms) rollback transaction
24596
+  (0.1ms) begin transaction
24597
+  (0.0ms) SAVEPOINT active_record_1
24598
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24600
+  (0.0ms) SAVEPOINT active_record_1
24601
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24603
+  (0.0ms) SAVEPOINT active_record_1
24604
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24606
+  (0.0ms) SAVEPOINT active_record_1
24607
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24609
+  (0.0ms) SAVEPOINT active_record_1
24610
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24612
+  (0.0ms) SAVEPOINT active_record_1
24613
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24615
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
24616
+  (0.0ms) rollback transaction
24617
+  (0.1ms) begin transaction
24618
+  (0.0ms) SAVEPOINT active_record_1
24619
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24620
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24621
+  (0.0ms) SAVEPOINT active_record_1
24622
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24624
+  (0.0ms) SAVEPOINT active_record_1
24625
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24627
+  (0.0ms) SAVEPOINT active_record_1
24628
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:36.789491' WHERE "audit_rails_audits"."id" = 1
24629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24630
+  (0.0ms) SAVEPOINT active_record_1
24631
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:36.789491' WHERE "audit_rails_audits"."id" = 2
24632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24633
+  (0.0ms) SAVEPOINT active_record_1
24634
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:36.789491' WHERE "audit_rails_audits"."id" = 3
24635
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24636
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24637
+  (0.0ms) rollback transaction
24638
+  (0.1ms) begin transaction
24639
+  (0.0ms) SAVEPOINT active_record_1
24640
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24642
+  (0.0ms) SAVEPOINT active_record_1
24643
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24644
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24645
+  (0.0ms) SAVEPOINT active_record_1
24646
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24648
+  (0.0ms) SAVEPOINT active_record_1
24649
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:36.804330' WHERE "audit_rails_audits"."id" = 1
24650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24651
+  (0.0ms) SAVEPOINT active_record_1
24652
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:36.804330' WHERE "audit_rails_audits"."id" = 2
24653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24654
+  (0.0ms) SAVEPOINT active_record_1
24655
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:36.804330' WHERE "audit_rails_audits"."id" = 3
24656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24657
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24658
+  (0.0ms) rollback transaction
24659
+  (0.1ms) begin transaction
24660
+  (0.0ms) SAVEPOINT active_record_1
24661
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24663
+  (0.0ms) SAVEPOINT active_record_1
24664
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24666
+  (0.0ms) SAVEPOINT active_record_1
24667
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "John Smith"]]
24668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24669
+  (0.0ms) SAVEPOINT active_record_1
24670
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:36.814772' WHERE "audit_rails_audits"."id" = 1
24671
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24672
+  (0.0ms) SAVEPOINT active_record_1
24673
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:36.814772' WHERE "audit_rails_audits"."id" = 2
24674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24675
+  (0.0ms) SAVEPOINT active_record_1
24676
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:36.814772' WHERE "audit_rails_audits"."id" = 3
24677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24678
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24679
+  (0.0ms) rollback transaction
24680
+  (0.1ms) begin transaction
24681
+  (0.0ms) rollback transaction
24682
+  (0.1ms) begin transaction
24683
+  (0.0ms) rollback transaction
24684
+  (0.1ms) begin transaction
24685
+  (0.0ms) rollback transaction
24686
+  (0.1ms) begin transaction
24687
+ Processing by AuditRails::AuditsController#create as HTML
24688
+  (0.0ms) SAVEPOINT active_record_1
24689
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["description", nil], ["ip_address", "0.0.0.0"], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24691
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
24692
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24693
+  (0.0ms) rollback transaction
24694
+  (0.1ms) begin transaction
24695
+ Processing by AuditRails::AuditsController#analytics as HTML
24696
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" 
24697
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
24698
+  (0.0ms) rollback transaction
24699
+  (0.0ms) begin transaction
24700
+  (0.0ms) SAVEPOINT active_record_1
24701
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:34:36 UTC +00:00], ["description", "User logged on at 2013-11-22 20:34:36 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24703
+  (0.0ms) SAVEPOINT active_record_1
24704
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:34:36 UTC +00:00], ["description", "User logged on at 2013-11-21 20:34:36 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24706
+  (0.0ms) SAVEPOINT active_record_1
24707
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:34:36 UTC +00:00], ["description", "User logged on at 2013-11-20 20:34:36 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24709
+ Processing by AuditRails::AuditsController#index as HTML
24710
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
24711
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
24712
+  (0.0ms) rollback transaction
24713
+  (0.1ms) begin transaction
24714
+  (0.0ms) SAVEPOINT active_record_1
24715
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:34:36 UTC +00:00], ["description", "User logged on at 2013-11-22 20:34:36 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24717
+  (0.0ms) SAVEPOINT active_record_1
24718
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:34:36 UTC +00:00], ["description", "User logged on at 2013-11-21 20:34:36 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24720
+  (0.0ms) SAVEPOINT active_record_1
24721
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:34:36 UTC +00:00], ["description", "User logged on at 2013-11-20 20:34:36 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:34:36 UTC +00:00], ["user_name", "Fake User"]]
24722
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24723
+ Processing by AuditRails::AuditsController#index as HTML
24724
+ Parameters: {"commit"=>"Download Filtered Report"}
24725
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
24726
+ Sent data audits.xls (0.0ms)
24727
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
24728
+  (0.0ms) rollback transaction
24729
+ Connecting to database specified by database.yml
24730
+  (0.3ms) begin transaction
24731
+  (0.0ms) SAVEPOINT active_record_1
24732
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:16 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:16 UTC +00:00], ["user_name", "John Smith"]]
24733
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24734
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24735
+  (0.0ms) rollback transaction
24736
+  (0.1ms) begin transaction
24737
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
24738
+  (0.0ms) rollback transaction
24739
+  (0.1ms) begin transaction
24740
+  (0.0ms) SAVEPOINT active_record_1
24741
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24743
+  (0.0ms) SAVEPOINT active_record_1
24744
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "Fake User"]]
24745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24746
+  (0.0ms) SAVEPOINT active_record_1
24747
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24749
+  (0.0ms) SAVEPOINT active_record_1
24750
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "Fake User"]]
24751
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24752
+  (0.0ms) SAVEPOINT active_record_1
24753
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24754
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24755
+  (0.0ms) SAVEPOINT active_record_1
24756
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "Fake User"]]
24757
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24758
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
24759
+  (0.0ms) rollback transaction
24760
+  (0.1ms) begin transaction
24761
+  (0.0ms) SAVEPOINT active_record_1
24762
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24763
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24764
+  (0.0ms) SAVEPOINT active_record_1
24765
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "Fake User"]]
24766
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24767
+  (0.0ms) SAVEPOINT active_record_1
24768
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24770
+  (0.0ms) SAVEPOINT active_record_1
24771
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "Fake User"]]
24772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24773
+  (0.0ms) SAVEPOINT active_record_1
24774
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24775
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24776
+  (0.0ms) SAVEPOINT active_record_1
24777
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "Fake User"]]
24778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24779
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
24780
+  (0.0ms) rollback transaction
24781
+  (0.1ms) begin transaction
24782
+  (0.0ms) SAVEPOINT active_record_1
24783
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24785
+  (0.0ms) SAVEPOINT active_record_1
24786
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24788
+  (0.0ms) SAVEPOINT active_record_1
24789
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24790
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24791
+  (0.0ms) SAVEPOINT active_record_1
24792
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:35:17.026347' WHERE "audit_rails_audits"."id" = 1
24793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24794
+  (0.0ms) SAVEPOINT active_record_1
24795
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:35:17.026347' WHERE "audit_rails_audits"."id" = 2
24796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24797
+  (0.0ms) SAVEPOINT active_record_1
24798
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:35:17.026347' WHERE "audit_rails_audits"."id" = 3
24799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24800
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24801
+  (0.0ms) rollback transaction
24802
+  (0.1ms) begin transaction
24803
+  (0.0ms) SAVEPOINT active_record_1
24804
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24805
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24806
+  (0.0ms) SAVEPOINT active_record_1
24807
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24809
+  (0.0ms) SAVEPOINT active_record_1
24810
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24811
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24812
+  (0.0ms) SAVEPOINT active_record_1
24813
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:35:17.037912' WHERE "audit_rails_audits"."id" = 1
24814
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24815
+  (0.0ms) SAVEPOINT active_record_1
24816
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:35:17.037912' WHERE "audit_rails_audits"."id" = 2
24817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24818
+  (0.0ms) SAVEPOINT active_record_1
24819
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:35:17.037912' WHERE "audit_rails_audits"."id" = 3
24820
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24821
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24822
+  (0.0ms) rollback transaction
24823
+  (0.1ms) begin transaction
24824
+  (0.0ms) SAVEPOINT active_record_1
24825
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24826
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24827
+  (0.0ms) SAVEPOINT active_record_1
24828
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24830
+  (0.0ms) SAVEPOINT active_record_1
24831
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24833
+  (0.0ms) SAVEPOINT active_record_1
24834
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:35:17.049854' WHERE "audit_rails_audits"."id" = 1
24835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24836
+  (0.0ms) SAVEPOINT active_record_1
24837
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:35:17.049854' WHERE "audit_rails_audits"."id" = 2
24838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24839
+  (0.0ms) SAVEPOINT active_record_1
24840
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:35:17.049854' WHERE "audit_rails_audits"."id" = 3
24841
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24842
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24843
+  (0.0ms) rollback transaction
24844
+  (0.1ms) begin transaction
24845
+  (0.0ms) SAVEPOINT active_record_1
24846
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24848
+  (0.0ms) SAVEPOINT active_record_1
24849
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24851
+  (0.0ms) SAVEPOINT active_record_1
24852
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "Fake User"]]
24853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24854
+  (0.0ms) SAVEPOINT active_record_1
24855
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24856
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24857
+  (0.0ms) SAVEPOINT active_record_1
24858
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24859
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24860
+  (0.0ms) SAVEPOINT active_record_1
24861
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "Fake User"]]
24862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24863
+  (0.0ms) SAVEPOINT active_record_1
24864
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24866
+  (0.0ms) SAVEPOINT active_record_1
24867
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "John Smith"]]
24868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24869
+  (0.0ms) SAVEPOINT active_record_1
24870
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:35:17 UTC +00:00], ["user_name", "Fake User"]]
24871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24872
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
24873
+  (0.0ms) rollback transaction
24874
+ Connecting to database specified by database.yml
24875
+  (0.3ms) begin transaction
24876
+  (0.0ms) SAVEPOINT active_record_1
24877
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24878
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24879
+  (0.0ms) SAVEPOINT active_record_1
24880
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
24881
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24882
+  (0.0ms) SAVEPOINT active_record_1
24883
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24884
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24885
+  (0.0ms) SAVEPOINT active_record_1
24886
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
24887
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24888
+  (0.0ms) SAVEPOINT active_record_1
24889
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24890
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24891
+  (0.0ms) SAVEPOINT active_record_1
24892
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
24893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24894
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
24895
+  (0.0ms) rollback transaction
24896
+  (0.1ms) begin transaction
24897
+  (0.0ms) SAVEPOINT active_record_1
24898
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24899
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24900
+  (0.0ms) SAVEPOINT active_record_1
24901
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24903
+  (0.0ms) SAVEPOINT active_record_1
24904
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
24905
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24906
+  (0.0ms) SAVEPOINT active_record_1
24907
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24908
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24909
+  (0.0ms) SAVEPOINT active_record_1
24910
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24911
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24912
+  (0.0ms) SAVEPOINT active_record_1
24913
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
24914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24915
+  (0.0ms) SAVEPOINT active_record_1
24916
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24918
+  (0.0ms) SAVEPOINT active_record_1
24919
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24920
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24921
+  (0.0ms) SAVEPOINT active_record_1
24922
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
24923
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24924
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
24925
+  (0.0ms) rollback transaction
24926
+  (0.1ms) begin transaction
24927
+  (0.0ms) SAVEPOINT active_record_1
24928
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24930
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24931
+  (0.0ms) rollback transaction
24932
+  (0.1ms) begin transaction
24933
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
24934
+  (0.0ms) rollback transaction
24935
+  (0.0ms) begin transaction
24936
+  (0.0ms) SAVEPOINT active_record_1
24937
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24939
+  (0.0ms) SAVEPOINT active_record_1
24940
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
24941
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24942
+  (0.0ms) SAVEPOINT active_record_1
24943
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24944
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24945
+  (0.0ms) SAVEPOINT active_record_1
24946
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
24947
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24948
+  (0.0ms) SAVEPOINT active_record_1
24949
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24950
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24951
+  (0.0ms) SAVEPOINT active_record_1
24952
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
24953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24954
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
24955
+  (0.0ms) rollback transaction
24956
+  (0.1ms) begin transaction
24957
+  (0.0ms) SAVEPOINT active_record_1
24958
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24959
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24960
+  (0.0ms) SAVEPOINT active_record_1
24961
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24963
+  (0.0ms) SAVEPOINT active_record_1
24964
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24966
+  (0.0ms) SAVEPOINT active_record_1
24967
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:38:24.496372' WHERE "audit_rails_audits"."id" = 1
24968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24969
+  (0.0ms) SAVEPOINT active_record_1
24970
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:38:24.496372' WHERE "audit_rails_audits"."id" = 2
24971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24972
+  (0.0ms) SAVEPOINT active_record_1
24973
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:38:24.496372' WHERE "audit_rails_audits"."id" = 3
24974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24975
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
24976
+  (0.0ms) rollback transaction
24977
+  (0.1ms) begin transaction
24978
+  (0.0ms) SAVEPOINT active_record_1
24979
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24981
+  (0.0ms) SAVEPOINT active_record_1
24982
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24983
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24984
+  (0.0ms) SAVEPOINT active_record_1
24985
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
24986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24987
+  (0.0ms) SAVEPOINT active_record_1
24988
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:38:24.510441' WHERE "audit_rails_audits"."id" = 1
24989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24990
+  (0.0ms) SAVEPOINT active_record_1
24991
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:38:24.510441' WHERE "audit_rails_audits"."id" = 2
24992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24993
+  (0.0ms) SAVEPOINT active_record_1
24994
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:38:24.510441' WHERE "audit_rails_audits"."id" = 3
24995
+  (0.0ms) RELEASE SAVEPOINT active_record_1
24996
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
24997
+  (0.0ms) rollback transaction
24998
+  (0.1ms) begin transaction
24999
+  (0.0ms) SAVEPOINT active_record_1
25000
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
25001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25002
+  (0.0ms) SAVEPOINT active_record_1
25003
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
25004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25005
+  (0.0ms) SAVEPOINT active_record_1
25006
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
25007
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25008
+  (0.0ms) SAVEPOINT active_record_1
25009
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:38:24.520433' WHERE "audit_rails_audits"."id" = 1
25010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25011
+  (0.0ms) SAVEPOINT active_record_1
25012
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:38:24.520433' WHERE "audit_rails_audits"."id" = 2
25013
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25014
+  (0.0ms) SAVEPOINT active_record_1
25015
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:38:24.520433' WHERE "audit_rails_audits"."id" = 3
25016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25017
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25018
+  (0.0ms) rollback transaction
25019
+  (0.1ms) begin transaction
25020
+  (0.0ms) SAVEPOINT active_record_1
25021
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
25022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25023
+  (0.0ms) SAVEPOINT active_record_1
25024
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
25025
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25026
+  (0.0ms) SAVEPOINT active_record_1
25027
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
25028
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25029
+  (0.0ms) SAVEPOINT active_record_1
25030
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
25031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25032
+  (0.0ms) SAVEPOINT active_record_1
25033
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
25034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25035
+  (0.0ms) SAVEPOINT active_record_1
25036
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
25037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25038
+  (0.0ms) SAVEPOINT active_record_1
25039
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
25040
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25041
+  (0.0ms) SAVEPOINT active_record_1
25042
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "John Smith"]]
25043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25044
+  (0.0ms) SAVEPOINT active_record_1
25045
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:38:24 UTC +00:00], ["user_name", "Fake User"]]
25046
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25047
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
25048
+  (0.0ms) rollback transaction
25049
+ Connecting to database specified by database.yml
25050
+  (0.3ms) begin transaction
25051
+  (0.0ms) SAVEPOINT active_record_1
25052
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25054
+  (0.0ms) SAVEPOINT active_record_1
25055
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25057
+  (0.0ms) SAVEPOINT active_record_1
25058
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "Fake User"]]
25059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25060
+  (0.0ms) SAVEPOINT active_record_1
25061
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25062
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25063
+  (0.0ms) SAVEPOINT active_record_1
25064
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25066
+  (0.0ms) SAVEPOINT active_record_1
25067
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "Fake User"]]
25068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25069
+  (0.0ms) SAVEPOINT active_record_1
25070
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25072
+  (0.0ms) SAVEPOINT active_record_1
25073
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25075
+  (0.0ms) SAVEPOINT active_record_1
25076
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "Fake User"]]
25077
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25078
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
25079
+  (0.0ms) rollback transaction
25080
+  (0.1ms) begin transaction
25081
+  (0.0ms) SAVEPOINT active_record_1
25082
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25084
+  (0.0ms) SAVEPOINT active_record_1
25085
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25087
+  (0.0ms) SAVEPOINT active_record_1
25088
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25090
+  (0.0ms) SAVEPOINT active_record_1
25091
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:31.778359' WHERE "audit_rails_audits"."id" = 1
25092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25093
+  (0.0ms) SAVEPOINT active_record_1
25094
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:31.778359' WHERE "audit_rails_audits"."id" = 2
25095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25096
+  (0.0ms) SAVEPOINT active_record_1
25097
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:31.778359' WHERE "audit_rails_audits"."id" = 3
25098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25099
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25100
+  (0.0ms) rollback transaction
25101
+  (0.1ms) begin transaction
25102
+  (0.0ms) SAVEPOINT active_record_1
25103
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25104
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25105
+  (0.0ms) SAVEPOINT active_record_1
25106
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25108
+  (0.0ms) SAVEPOINT active_record_1
25109
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25111
+  (0.0ms) SAVEPOINT active_record_1
25112
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:31.793375' WHERE "audit_rails_audits"."id" = 1
25113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25114
+  (0.0ms) SAVEPOINT active_record_1
25115
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:31.793375' WHERE "audit_rails_audits"."id" = 2
25116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25117
+  (0.0ms) SAVEPOINT active_record_1
25118
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:31.793375' WHERE "audit_rails_audits"."id" = 3
25119
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25120
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25121
+  (0.0ms) rollback transaction
25122
+  (0.1ms) begin transaction
25123
+  (0.0ms) SAVEPOINT active_record_1
25124
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25126
+  (0.0ms) SAVEPOINT active_record_1
25127
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25128
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25129
+  (0.0ms) SAVEPOINT active_record_1
25130
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25131
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25132
+  (0.0ms) SAVEPOINT active_record_1
25133
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:31.804342' WHERE "audit_rails_audits"."id" = 1
25134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25135
+  (0.0ms) SAVEPOINT active_record_1
25136
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:31.804342' WHERE "audit_rails_audits"."id" = 2
25137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25138
+  (0.0ms) SAVEPOINT active_record_1
25139
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:31.804342' WHERE "audit_rails_audits"."id" = 3
25140
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25141
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25142
+  (0.0ms) rollback transaction
25143
+  (0.0ms) begin transaction
25144
+  (0.0ms) SAVEPOINT active_record_1
25145
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25147
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25148
+  (0.0ms) rollback transaction
25149
+  (0.1ms) begin transaction
25150
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
25151
+  (0.0ms) rollback transaction
25152
+  (0.0ms) begin transaction
25153
+  (0.0ms) SAVEPOINT active_record_1
25154
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25155
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25156
+  (0.0ms) SAVEPOINT active_record_1
25157
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "Fake User"]]
25158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25159
+  (0.0ms) SAVEPOINT active_record_1
25160
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25162
+  (0.0ms) SAVEPOINT active_record_1
25163
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "Fake User"]]
25164
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25165
+  (0.0ms) SAVEPOINT active_record_1
25166
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25167
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25168
+  (0.0ms) SAVEPOINT active_record_1
25169
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "Fake User"]]
25170
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25171
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
25172
+  (0.0ms) rollback transaction
25173
+  (0.1ms) begin transaction
25174
+  (0.0ms) SAVEPOINT active_record_1
25175
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25177
+  (0.0ms) SAVEPOINT active_record_1
25178
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "Fake User"]]
25179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25180
+  (0.0ms) SAVEPOINT active_record_1
25181
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25183
+  (0.0ms) SAVEPOINT active_record_1
25184
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "Fake User"]]
25185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25186
+  (0.0ms) SAVEPOINT active_record_1
25187
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "John Smith"]]
25188
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25189
+  (0.0ms) SAVEPOINT active_record_1
25190
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:31 UTC +00:00], ["user_name", "Fake User"]]
25191
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25192
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
25193
+  (0.0ms) rollback transaction
25194
+  (0.1ms) begin transaction
25195
+  (0.0ms) rollback transaction
25196
+ Connecting to database specified by database.yml
25197
+  (0.3ms) begin transaction
25198
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
25199
+  (0.0ms) rollback transaction
25200
+  (0.0ms) begin transaction
25201
+  (0.0ms) SAVEPOINT active_record_1
25202
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25203
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25204
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25205
+  (0.0ms) rollback transaction
25206
+  (0.1ms) begin transaction
25207
+  (0.0ms) SAVEPOINT active_record_1
25208
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25209
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25210
+  (0.0ms) SAVEPOINT active_record_1
25211
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "Fake User"]]
25212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25213
+  (0.0ms) SAVEPOINT active_record_1
25214
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25216
+  (0.0ms) SAVEPOINT active_record_1
25217
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "Fake User"]]
25218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25219
+  (0.0ms) SAVEPOINT active_record_1
25220
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25221
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25222
+  (0.0ms) SAVEPOINT active_record_1
25223
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "Fake User"]]
25224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25225
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
25226
+  (0.0ms) rollback transaction
25227
+  (0.1ms) begin transaction
25228
+  (0.0ms) rollback transaction
25229
+  (0.1ms) begin transaction
25230
+  (0.0ms) SAVEPOINT active_record_1
25231
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25232
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25233
+  (0.0ms) SAVEPOINT active_record_1
25234
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25236
+  (0.0ms) SAVEPOINT active_record_1
25237
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25239
+  (0.0ms) SAVEPOINT active_record_1
25240
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:39.378883' WHERE "audit_rails_audits"."id" = 1
25241
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25242
+  (0.0ms) SAVEPOINT active_record_1
25243
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:39.378883' WHERE "audit_rails_audits"."id" = 2
25244
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25245
+  (0.0ms) SAVEPOINT active_record_1
25246
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:39.378883' WHERE "audit_rails_audits"."id" = 3
25247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25248
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25249
+  (0.0ms) rollback transaction
25250
+  (0.1ms) begin transaction
25251
+  (0.0ms) SAVEPOINT active_record_1
25252
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25254
+  (0.0ms) SAVEPOINT active_record_1
25255
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25257
+  (0.0ms) SAVEPOINT active_record_1
25258
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25260
+  (0.0ms) SAVEPOINT active_record_1
25261
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:39.390730' WHERE "audit_rails_audits"."id" = 1
25262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25263
+  (0.0ms) SAVEPOINT active_record_1
25264
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:39.390730' WHERE "audit_rails_audits"."id" = 2
25265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25266
+  (0.0ms) SAVEPOINT active_record_1
25267
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:39.390730' WHERE "audit_rails_audits"."id" = 3
25268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25269
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25270
+  (0.0ms) rollback transaction
25271
+  (0.1ms) begin transaction
25272
+  (0.0ms) SAVEPOINT active_record_1
25273
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25275
+  (0.0ms) SAVEPOINT active_record_1
25276
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25278
+  (0.0ms) SAVEPOINT active_record_1
25279
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25280
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25281
+  (0.0ms) SAVEPOINT active_record_1
25282
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:39.401690' WHERE "audit_rails_audits"."id" = 1
25283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25284
+  (0.0ms) SAVEPOINT active_record_1
25285
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:39.401690' WHERE "audit_rails_audits"."id" = 2
25286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25287
+  (0.0ms) SAVEPOINT active_record_1
25288
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:39.401690' WHERE "audit_rails_audits"."id" = 3
25289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25290
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25291
+  (0.0ms) rollback transaction
25292
+  (0.1ms) begin transaction
25293
+  (0.0ms) SAVEPOINT active_record_1
25294
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25295
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25296
+  (0.0ms) SAVEPOINT active_record_1
25297
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "Fake User"]]
25298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25299
+  (0.0ms) SAVEPOINT active_record_1
25300
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25302
+  (0.0ms) SAVEPOINT active_record_1
25303
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "Fake User"]]
25304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25305
+  (0.0ms) SAVEPOINT active_record_1
25306
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25307
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25308
+  (0.0ms) SAVEPOINT active_record_1
25309
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "Fake User"]]
25310
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25311
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
25312
+  (0.0ms) rollback transaction
25313
+  (0.1ms) begin transaction
25314
+  (0.0ms) SAVEPOINT active_record_1
25315
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25317
+  (0.0ms) SAVEPOINT active_record_1
25318
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25320
+  (0.0ms) SAVEPOINT active_record_1
25321
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "Fake User"]]
25322
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25323
+  (0.0ms) SAVEPOINT active_record_1
25324
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25326
+  (0.0ms) SAVEPOINT active_record_1
25327
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25328
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25329
+  (0.0ms) SAVEPOINT active_record_1
25330
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "Fake User"]]
25331
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25332
+  (0.0ms) SAVEPOINT active_record_1
25333
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25334
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25335
+  (0.0ms) SAVEPOINT active_record_1
25336
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "John Smith"]]
25337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25338
+  (0.0ms) SAVEPOINT active_record_1
25339
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:39:39 UTC +00:00], ["user_name", "Fake User"]]
25340
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25341
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
25342
+  (0.0ms) rollback transaction
25343
+ Connecting to database specified by database.yml
25344
+  (0.3ms) begin transaction
25345
+  (0.0ms) SAVEPOINT active_record_1
25346
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25348
+  (0.0ms) SAVEPOINT active_record_1
25349
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25351
+  (0.0ms) SAVEPOINT active_record_1
25352
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25354
+  (0.0ms) SAVEPOINT active_record_1
25355
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25356
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25357
+  (0.0ms) SAVEPOINT active_record_1
25358
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25359
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25360
+  (0.0ms) SAVEPOINT active_record_1
25361
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25362
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25363
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
25364
+  (0.0ms) rollback transaction
25365
+  (0.1ms) begin transaction
25366
+  (0.0ms) SAVEPOINT active_record_1
25367
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25368
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25369
+  (0.0ms) SAVEPOINT active_record_1
25370
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25372
+  (0.0ms) SAVEPOINT active_record_1
25373
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25375
+  (0.0ms) SAVEPOINT active_record_1
25376
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25377
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25378
+  (0.0ms) SAVEPOINT active_record_1
25379
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25380
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25381
+  (0.0ms) SAVEPOINT active_record_1
25382
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25383
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25384
+  (0.0ms) SAVEPOINT active_record_1
25385
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25387
+  (0.0ms) SAVEPOINT active_record_1
25388
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25389
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25390
+  (0.0ms) SAVEPOINT active_record_1
25391
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25392
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25393
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
25394
+  (0.0ms) rollback transaction
25395
+  (0.1ms) begin transaction
25396
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
25397
+  (0.0ms) rollback transaction
25398
+  (0.1ms) begin transaction
25399
+  (0.0ms) SAVEPOINT active_record_1
25400
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25401
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25402
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25403
+  (0.0ms) rollback transaction
25404
+  (0.1ms) begin transaction
25405
+  (0.0ms) SAVEPOINT active_record_1
25406
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25408
+  (0.0ms) SAVEPOINT active_record_1
25409
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25410
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25411
+  (0.0ms) SAVEPOINT active_record_1
25412
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25414
+  (0.0ms) SAVEPOINT active_record_1
25415
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25417
+  (0.0ms) SAVEPOINT active_record_1
25418
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25419
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25420
+  (0.0ms) SAVEPOINT active_record_1
25421
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25423
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
25424
+  (0.0ms) rollback transaction
25425
+  (0.2ms) begin transaction
25426
+  (0.0ms) SAVEPOINT active_record_1
25427
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25429
+  (0.0ms) SAVEPOINT active_record_1
25430
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25432
+  (0.0ms) SAVEPOINT active_record_1
25433
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25434
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25435
+  (0.0ms) SAVEPOINT active_record_1
25436
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:01.498797' WHERE "audit_rails_audits"."id" = 1
25437
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25438
+  (0.0ms) SAVEPOINT active_record_1
25439
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:01.498797' WHERE "audit_rails_audits"."id" = 2
25440
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25441
+  (0.0ms) SAVEPOINT active_record_1
25442
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:01.498797' WHERE "audit_rails_audits"."id" = 3
25443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25444
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25445
+  (0.0ms) rollback transaction
25446
+  (0.1ms) begin transaction
25447
+  (0.0ms) SAVEPOINT active_record_1
25448
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25450
+  (0.0ms) SAVEPOINT active_record_1
25451
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25453
+  (0.0ms) SAVEPOINT active_record_1
25454
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25455
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25456
+  (0.0ms) SAVEPOINT active_record_1
25457
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:01.513459' WHERE "audit_rails_audits"."id" = 1
25458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25459
+  (0.0ms) SAVEPOINT active_record_1
25460
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:01.513459' WHERE "audit_rails_audits"."id" = 2
25461
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25462
+  (0.0ms) SAVEPOINT active_record_1
25463
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:01.513459' WHERE "audit_rails_audits"."id" = 3
25464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25465
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25466
+  (0.0ms) rollback transaction
25467
+  (0.1ms) begin transaction
25468
+  (0.0ms) SAVEPOINT active_record_1
25469
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25470
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25471
+  (0.0ms) SAVEPOINT active_record_1
25472
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25473
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25474
+  (0.0ms) SAVEPOINT active_record_1
25475
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25477
+  (0.0ms) SAVEPOINT active_record_1
25478
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:01.523636' WHERE "audit_rails_audits"."id" = 1
25479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25480
+  (0.0ms) SAVEPOINT active_record_1
25481
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:01.523636' WHERE "audit_rails_audits"."id" = 2
25482
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25483
+  (0.0ms) SAVEPOINT active_record_1
25484
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:01.523636' WHERE "audit_rails_audits"."id" = 3
25485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25486
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25487
+  (0.0ms) rollback transaction
25488
+  (0.1ms) begin transaction
25489
+  (0.0ms) SAVEPOINT active_record_1
25490
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25492
+  (0.0ms) SAVEPOINT active_record_1
25493
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25495
+  (0.0ms) SAVEPOINT active_record_1
25496
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25498
+  (0.0ms) SAVEPOINT active_record_1
25499
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25501
+  (0.0ms) SAVEPOINT active_record_1
25502
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25504
+  (0.0ms) SAVEPOINT active_record_1
25505
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25506
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25507
+  (0.0ms) SAVEPOINT active_record_1
25508
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25509
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25510
+  (0.0ms) SAVEPOINT active_record_1
25511
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "John Smith"]]
25512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25513
+  (0.0ms) SAVEPOINT active_record_1
25514
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:40:01 UTC +00:00], ["user_name", "Fake User"]]
25515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25516
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
25517
+  (0.0ms) rollback transaction
25518
+ Connecting to database specified by database.yml
25519
+  (0.3ms) begin transaction
25520
+ Processing by AnonymousController#login as HTML
25521
+ Parameters: {"id"=>"1"}
25522
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
25523
+  (0.0ms) SAVEPOINT active_record_1
25524
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", "User logged in"], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25525
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25526
+ Rendered text template (0.0ms)
25527
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
25528
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25529
+  (0.0ms) rollback transaction
25530
+  (0.1ms) begin transaction
25531
+  (0.0ms) rollback transaction
25532
+  (0.0ms) begin transaction
25533
+  (0.0ms) rollback transaction
25534
+  (0.0ms) begin transaction
25535
+  (0.0ms) rollback transaction
25536
+  (0.1ms) begin transaction
25537
+  (0.0ms) SAVEPOINT active_record_1
25538
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:40:04 UTC +00:00], ["description", "User logged on at 2013-11-22 20:40:04 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25540
+  (0.0ms) SAVEPOINT active_record_1
25541
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:40:04 UTC +00:00], ["description", "User logged on at 2013-11-21 20:40:04 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25543
+  (0.0ms) SAVEPOINT active_record_1
25544
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:40:04 UTC +00:00], ["description", "User logged on at 2013-11-20 20:40:04 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25546
+ Processing by AuditRails::AuditsController#index as HTML
25547
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
25548
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
25549
+  (0.0ms) rollback transaction
25550
+  (0.1ms) begin transaction
25551
+  (0.0ms) SAVEPOINT active_record_1
25552
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 20:40:04 UTC +00:00], ["description", "User logged on at 2013-11-22 20:40:04 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25553
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25554
+  (0.0ms) SAVEPOINT active_record_1
25555
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 20:40:04 UTC +00:00], ["description", "User logged on at 2013-11-21 20:40:04 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25557
+  (0.0ms) SAVEPOINT active_record_1
25558
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Wed, 20 Nov 2013 20:40:04 UTC +00:00], ["description", "User logged on at 2013-11-20 20:40:04 UTC"], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25559
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25560
+ Processing by AuditRails::AuditsController#index as HTML
25561
+ Parameters: {"commit"=>"Download Filtered Report"}
25562
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999') ORDER BY created_at DESC
25563
+ Sent data audits.xls (0.0ms)
25564
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
25565
+  (0.0ms) rollback transaction
25566
+  (0.1ms) begin transaction
25567
+ Processing by AuditRails::AuditsController#create as HTML
25568
+  (0.0ms) SAVEPOINT active_record_1
25569
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", "0.0.0.0"], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25571
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
25572
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25573
+  (0.0ms) rollback transaction
25574
+  (0.1ms) begin transaction
25575
+ Processing by AuditRails::AuditsController#analytics as HTML
25576
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" 
25577
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
25578
+  (0.0ms) rollback transaction
25579
+  (0.1ms) begin transaction
25580
+  (0.0ms) rollback transaction
25581
+  (0.1ms) begin transaction
25582
+  (0.0ms) SAVEPOINT active_record_1
25583
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "John Smith"]]
25584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25585
+  (0.0ms) SAVEPOINT active_record_1
25586
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "John Smith"]]
25587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25588
+  (0.0ms) SAVEPOINT active_record_1
25589
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25591
+  (0.0ms) SAVEPOINT active_record_1
25592
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "John Smith"]]
25593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25594
+  (0.0ms) SAVEPOINT active_record_1
25595
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "John Smith"]]
25596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25597
+  (0.0ms) SAVEPOINT active_record_1
25598
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25600
+  (0.0ms) SAVEPOINT active_record_1
25601
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "John Smith"]]
25602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25603
+  (0.0ms) SAVEPOINT active_record_1
25604
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "John Smith"]]
25605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25606
+  (0.0ms) SAVEPOINT active_record_1
25607
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "Fake User"]]
25608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25609
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
25610
+  (0.0ms) rollback transaction
25611
+  (0.1ms) begin transaction
25612
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
25613
+  (0.0ms) rollback transaction
25614
+  (0.0ms) begin transaction
25615
+  (0.0ms) SAVEPOINT active_record_1
25616
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "John Smith"]]
25617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25618
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25619
+  (0.0ms) rollback transaction
25620
+  (0.1ms) begin transaction
25621
+  (0.0ms) SAVEPOINT active_record_1
25622
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "John Smith"]]
25623
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25624
+  (0.0ms) SAVEPOINT active_record_1
25625
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "John Smith"]]
25626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25627
+  (0.0ms) SAVEPOINT active_record_1
25628
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:04 UTC +00:00], ["user_name", "John Smith"]]
25629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25630
+  (0.0ms) SAVEPOINT active_record_1
25631
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:04.998431' WHERE "audit_rails_audits"."id" = 1
25632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25633
+  (0.0ms) SAVEPOINT active_record_1
25634
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:04.998431' WHERE "audit_rails_audits"."id" = 2
25635
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25636
+  (0.0ms) SAVEPOINT active_record_1
25637
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:04.998431' WHERE "audit_rails_audits"."id" = 3
25638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25639
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25640
+  (0.0ms) rollback transaction
25641
+  (0.1ms) begin transaction
25642
+  (0.0ms) SAVEPOINT active_record_1
25643
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25644
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25645
+  (0.0ms) SAVEPOINT active_record_1
25646
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25648
+  (0.0ms) SAVEPOINT active_record_1
25649
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25651
+  (0.0ms) SAVEPOINT active_record_1
25652
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:05.010745' WHERE "audit_rails_audits"."id" = 1
25653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25654
+  (0.0ms) SAVEPOINT active_record_1
25655
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:05.010745' WHERE "audit_rails_audits"."id" = 2
25656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25657
+  (0.0ms) SAVEPOINT active_record_1
25658
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:05.010745' WHERE "audit_rails_audits"."id" = 3
25659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25660
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25661
+  (0.0ms) rollback transaction
25662
+  (0.1ms) begin transaction
25663
+  (0.0ms) SAVEPOINT active_record_1
25664
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25666
+  (0.0ms) SAVEPOINT active_record_1
25667
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25669
+  (0.0ms) SAVEPOINT active_record_1
25670
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25671
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25672
+  (0.0ms) SAVEPOINT active_record_1
25673
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:05.020942' WHERE "audit_rails_audits"."id" = 1
25674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25675
+  (0.0ms) SAVEPOINT active_record_1
25676
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:05.020942' WHERE "audit_rails_audits"."id" = 2
25677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25678
+  (0.0ms) SAVEPOINT active_record_1
25679
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:05.020942' WHERE "audit_rails_audits"."id" = 3
25680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25681
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25682
+  (0.0ms) rollback transaction
25683
+  (0.1ms) begin transaction
25684
+  (0.0ms) SAVEPOINT active_record_1
25685
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25687
+  (0.0ms) SAVEPOINT active_record_1
25688
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "Fake User"]]
25689
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25690
+  (0.0ms) SAVEPOINT active_record_1
25691
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25693
+  (0.0ms) SAVEPOINT active_record_1
25694
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "Fake User"]]
25695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25696
+  (0.0ms) SAVEPOINT active_record_1
25697
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25699
+  (0.0ms) SAVEPOINT active_record_1
25700
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "Fake User"]]
25701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25702
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
25703
+  (0.0ms) rollback transaction
25704
+  (0.1ms) begin transaction
25705
+  (0.0ms) SAVEPOINT active_record_1
25706
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25707
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25708
+  (0.0ms) SAVEPOINT active_record_1
25709
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "Fake User"]]
25710
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25711
+  (0.0ms) SAVEPOINT active_record_1
25712
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25713
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25714
+  (0.0ms) SAVEPOINT active_record_1
25715
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "Fake User"]]
25716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25717
+  (0.0ms) SAVEPOINT active_record_1
25718
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25719
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25720
+  (0.0ms) SAVEPOINT active_record_1
25721
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "Fake User"]]
25722
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25723
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
25724
+  (0.0ms) rollback transaction
25725
+  (0.1ms) begin transaction
25726
+  (0.0ms) SAVEPOINT active_record_1
25727
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25729
+  (0.0ms) SAVEPOINT active_record_1
25730
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25732
+  (0.0ms) SAVEPOINT active_record_1
25733
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "Fake User"]]
25734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25735
+  (0.0ms) SAVEPOINT active_record_1
25736
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25738
+  (0.0ms) SAVEPOINT active_record_1
25739
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25741
+  (0.0ms) SAVEPOINT active_record_1
25742
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "Fake User"]]
25743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25744
+  (0.0ms) SAVEPOINT active_record_1
25745
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25746
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25747
+  (0.0ms) SAVEPOINT active_record_1
25748
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "John Smith"]]
25749
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25750
+  (0.0ms) SAVEPOINT active_record_1
25751
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:40:05 UTC +00:00], ["user_name", "Fake User"]]
25752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25753
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
25754
+  (0.0ms) rollback transaction
25755
+ Connecting to database specified by database.yml
25756
+  (0.3ms) begin transaction
25757
+  (0.0ms) SAVEPOINT active_record_1
25758
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25760
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25761
+  (0.0ms) rollback transaction
25762
+  (0.1ms) begin transaction
25763
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
25764
+  (0.0ms) rollback transaction
25765
+  (0.0ms) begin transaction
25766
+  (0.0ms) SAVEPOINT active_record_1
25767
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25769
+  (0.0ms) SAVEPOINT active_record_1
25770
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25771
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25772
+  (0.0ms) SAVEPOINT active_record_1
25773
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25775
+  (0.0ms) SAVEPOINT active_record_1
25776
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25778
+  (0.0ms) SAVEPOINT active_record_1
25779
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25781
+  (0.0ms) SAVEPOINT active_record_1
25782
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25784
+  (0.0ms) SAVEPOINT active_record_1
25785
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25786
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25787
+  (0.0ms) SAVEPOINT active_record_1
25788
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25790
+  (0.0ms) SAVEPOINT active_record_1
25791
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25793
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
25794
+  (0.0ms) rollback transaction
25795
+  (0.1ms) begin transaction
25796
+  (0.0ms) SAVEPOINT active_record_1
25797
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25799
+  (0.0ms) SAVEPOINT active_record_1
25800
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25802
+  (0.0ms) SAVEPOINT active_record_1
25803
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25805
+  (0.0ms) SAVEPOINT active_record_1
25806
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25808
+  (0.0ms) SAVEPOINT active_record_1
25809
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25811
+  (0.0ms) SAVEPOINT active_record_1
25812
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25814
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
25815
+  (0.0ms) rollback transaction
25816
+  (0.1ms) begin transaction
25817
+  (0.0ms) SAVEPOINT active_record_1
25818
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25820
+  (0.0ms) SAVEPOINT active_record_1
25821
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25823
+  (0.0ms) SAVEPOINT active_record_1
25824
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25826
+  (0.0ms) SAVEPOINT active_record_1
25827
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25828
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25829
+  (0.0ms) SAVEPOINT active_record_1
25830
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25832
+  (0.0ms) SAVEPOINT active_record_1
25833
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25835
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
25836
+  (0.0ms) rollback transaction
25837
+  (0.1ms) begin transaction
25838
+  (0.0ms) SAVEPOINT active_record_1
25839
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25841
+  (0.0ms) SAVEPOINT active_record_1
25842
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25844
+  (0.0ms) SAVEPOINT active_record_1
25845
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25847
+  (0.0ms) SAVEPOINT active_record_1
25848
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:02.320671' WHERE "audit_rails_audits"."id" = 1
25849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25850
+  (0.0ms) SAVEPOINT active_record_1
25851
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:02.320671' WHERE "audit_rails_audits"."id" = 2
25852
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25853
+  (0.0ms) SAVEPOINT active_record_1
25854
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:02.320671' WHERE "audit_rails_audits"."id" = 3
25855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25856
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
25857
+  (0.0ms) rollback transaction
25858
+  (0.1ms) begin transaction
25859
+  (0.0ms) SAVEPOINT active_record_1
25860
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25862
+  (0.0ms) SAVEPOINT active_record_1
25863
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25865
+  (0.0ms) SAVEPOINT active_record_1
25866
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25868
+  (0.0ms) SAVEPOINT active_record_1
25869
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:02.334631' WHERE "audit_rails_audits"."id" = 1
25870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25871
+  (0.0ms) SAVEPOINT active_record_1
25872
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:02.334631' WHERE "audit_rails_audits"."id" = 2
25873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25874
+  (0.0ms) SAVEPOINT active_record_1
25875
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:02.334631' WHERE "audit_rails_audits"."id" = 3
25876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25877
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25878
+  (0.0ms) rollback transaction
25879
+  (0.1ms) begin transaction
25880
+  (0.0ms) SAVEPOINT active_record_1
25881
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25883
+  (0.0ms) SAVEPOINT active_record_1
25884
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25886
+  (0.0ms) SAVEPOINT active_record_1
25887
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25889
+  (0.0ms) SAVEPOINT active_record_1
25890
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:02.344403' WHERE "audit_rails_audits"."id" = 1
25891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25892
+  (0.0ms) SAVEPOINT active_record_1
25893
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:02.344403' WHERE "audit_rails_audits"."id" = 2
25894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25895
+  (0.0ms) SAVEPOINT active_record_1
25896
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:02.344403' WHERE "audit_rails_audits"."id" = 3
25897
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25898
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
25899
+  (0.0ms) rollback transaction
25900
+  (0.1ms) begin transaction
25901
+  (0.0ms) SAVEPOINT active_record_1
25902
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25904
+  (0.0ms) SAVEPOINT active_record_1
25905
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25907
+  (0.0ms) SAVEPOINT active_record_1
25908
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25910
+  (0.0ms) SAVEPOINT active_record_1
25911
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25913
+  (0.0ms) SAVEPOINT active_record_1
25914
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25916
+  (0.0ms) SAVEPOINT active_record_1
25917
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25919
+  (0.0ms) SAVEPOINT active_record_1
25920
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25922
+  (0.0ms) SAVEPOINT active_record_1
25923
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25925
+  (0.0ms) SAVEPOINT active_record_1
25926
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25928
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
25929
+  (0.0ms) rollback transaction
25930
+  (0.1ms) begin transaction
25931
+  (0.0ms) SAVEPOINT active_record_1
25932
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25934
+  (0.0ms) SAVEPOINT active_record_1
25935
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25937
+  (0.0ms) SAVEPOINT active_record_1
25938
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25940
+  (0.0ms) SAVEPOINT active_record_1
25941
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25943
+  (0.0ms) SAVEPOINT active_record_1
25944
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25946
+  (0.0ms) SAVEPOINT active_record_1
25947
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25949
+  (0.0ms) SAVEPOINT active_record_1
25950
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25952
+  (0.0ms) SAVEPOINT active_record_1
25953
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "John Smith"]]
25954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25955
+  (0.0ms) SAVEPOINT active_record_1
25956
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:02 UTC +00:00], ["user_name", "Fake User"]]
25957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25958
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
25959
+  (0.0ms) rollback transaction
25960
+ Connecting to database specified by database.yml
25961
+  (0.3ms) begin transaction
25962
+  (0.0ms) SAVEPOINT active_record_1
25963
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
25964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25965
+  (0.0ms) SAVEPOINT active_record_1
25966
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
25967
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25968
+  (0.0ms) SAVEPOINT active_record_1
25969
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
25970
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25971
+  (0.0ms) SAVEPOINT active_record_1
25972
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
25973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25974
+  (0.0ms) SAVEPOINT active_record_1
25975
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
25976
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25977
+  (0.0ms) SAVEPOINT active_record_1
25978
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
25979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25980
+  (0.0ms) SAVEPOINT active_record_1
25981
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
25982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25983
+  (0.0ms) SAVEPOINT active_record_1
25984
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
25985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25986
+  (0.0ms) SAVEPOINT active_record_1
25987
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
25988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25989
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
25990
+  (0.0ms) rollback transaction
25991
+  (0.1ms) begin transaction
25992
+  (0.0ms) SAVEPOINT active_record_1
25993
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
25994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25995
+  (0.0ms) SAVEPOINT active_record_1
25996
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
25997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
25998
+  (0.0ms) SAVEPOINT active_record_1
25999
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26001
+  (0.0ms) SAVEPOINT active_record_1
26002
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26003
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26004
+  (0.0ms) SAVEPOINT active_record_1
26005
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26006
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26007
+  (0.0ms) SAVEPOINT active_record_1
26008
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26010
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
26011
+  (0.0ms) rollback transaction
26012
+  (0.1ms) begin transaction
26013
+  (0.0ms) SAVEPOINT active_record_1
26014
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26016
+  (0.0ms) SAVEPOINT active_record_1
26017
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26019
+  (0.0ms) SAVEPOINT active_record_1
26020
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26022
+  (0.0ms) SAVEPOINT active_record_1
26023
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:17.404051' WHERE "audit_rails_audits"."id" = 1
26024
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26025
+  (0.0ms) SAVEPOINT active_record_1
26026
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:17.404051' WHERE "audit_rails_audits"."id" = 2
26027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26028
+  (0.0ms) SAVEPOINT active_record_1
26029
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:17.404051' WHERE "audit_rails_audits"."id" = 3
26030
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26031
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
26032
+  (0.0ms) rollback transaction
26033
+  (0.1ms) begin transaction
26034
+  (0.0ms) SAVEPOINT active_record_1
26035
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26036
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26037
+  (0.0ms) SAVEPOINT active_record_1
26038
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26040
+  (0.0ms) SAVEPOINT active_record_1
26041
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26042
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26043
+  (0.0ms) SAVEPOINT active_record_1
26044
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:17.420289' WHERE "audit_rails_audits"."id" = 1
26045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26046
+  (0.0ms) SAVEPOINT active_record_1
26047
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:17.420289' WHERE "audit_rails_audits"."id" = 2
26048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26049
+  (0.0ms) SAVEPOINT active_record_1
26050
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:17.420289' WHERE "audit_rails_audits"."id" = 3
26051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26052
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
26053
+  (0.0ms) rollback transaction
26054
+  (0.1ms) begin transaction
26055
+  (0.0ms) SAVEPOINT active_record_1
26056
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26058
+  (0.0ms) SAVEPOINT active_record_1
26059
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26061
+  (0.0ms) SAVEPOINT active_record_1
26062
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26063
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26064
+  (0.0ms) SAVEPOINT active_record_1
26065
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:17.431026' WHERE "audit_rails_audits"."id" = 1
26066
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26067
+  (0.0ms) SAVEPOINT active_record_1
26068
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:17.431026' WHERE "audit_rails_audits"."id" = 2
26069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26070
+  (0.0ms) SAVEPOINT active_record_1
26071
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:17.431026' WHERE "audit_rails_audits"."id" = 3
26072
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26073
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-19 00:00:00.000000' AND '2013-11-22 23:59:59.999999')
26074
+  (0.0ms) rollback transaction
26075
+  (0.1ms) begin transaction
26076
+  (0.0ms) SAVEPOINT active_record_1
26077
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26079
+  (0.0ms) SAVEPOINT active_record_1
26080
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26082
+  (0.0ms) SAVEPOINT active_record_1
26083
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26085
+  (0.0ms) SAVEPOINT active_record_1
26086
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26088
+  (0.0ms) SAVEPOINT active_record_1
26089
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26091
+  (0.0ms) SAVEPOINT active_record_1
26092
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26094
+  (0.0ms) SAVEPOINT active_record_1
26095
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26097
+  (0.0ms) SAVEPOINT active_record_1
26098
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26099
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26100
+  (0.0ms) SAVEPOINT active_record_1
26101
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26103
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
26104
+  (0.0ms) rollback transaction
26105
+  (0.1ms) begin transaction
26106
+  (0.0ms) SAVEPOINT active_record_1
26107
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26109
+  (0.0ms) SAVEPOINT active_record_1
26110
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26111
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26112
+  (0.0ms) SAVEPOINT active_record_1
26113
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26115
+  (0.0ms) SAVEPOINT active_record_1
26116
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26117
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26118
+  (0.0ms) SAVEPOINT active_record_1
26119
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26120
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26121
+  (0.0ms) SAVEPOINT active_record_1
26122
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26123
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26124
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
26125
+  (0.0ms) rollback transaction
26126
+  (0.1ms) begin transaction
26127
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
26128
+  (0.0ms) rollback transaction
26129
+  (0.0ms) begin transaction
26130
+  (0.0ms) SAVEPOINT active_record_1
26131
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26132
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26133
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-23 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
26134
+  (0.0ms) rollback transaction
26135
+  (0.1ms) begin transaction
26136
+  (0.0ms) SAVEPOINT active_record_1
26137
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26139
+  (0.0ms) SAVEPOINT active_record_1
26140
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26141
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26142
+  (0.0ms) SAVEPOINT active_record_1
26143
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26145
+  (0.0ms) SAVEPOINT active_record_1
26146
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26148
+  (0.0ms) SAVEPOINT active_record_1
26149
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26151
+  (0.0ms) SAVEPOINT active_record_1
26152
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26154
+  (0.0ms) SAVEPOINT active_record_1
26155
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26157
+  (0.0ms) SAVEPOINT active_record_1
26158
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "John Smith"]]
26159
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26160
+  (0.0ms) SAVEPOINT active_record_1
26161
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sat, 23 Nov 2013 20:41:17 UTC +00:00], ["user_name", "Fake User"]]
26162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26163
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
26164
+  (0.0ms) rollback transaction
26165
+ Connecting to database specified by database.yml
26166
+  (0.3ms) begin transaction
26167
+  (0.0ms) SAVEPOINT active_record_1
26168
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sat, 23 Nov 2013 09:02:59 UTC +00:00], ["description", "User logged on at 2013-11-23 09:02:59 UTC"], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26170
+  (0.0ms) SAVEPOINT active_record_1
26171
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 09:02:59 UTC +00:00], ["description", "User logged on at 2013-11-22 09:02:59 UTC"], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26172
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26173
+  (0.0ms) SAVEPOINT active_record_1
26174
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 09:02:59 UTC +00:00], ["description", "User logged on at 2013-11-21 09:02:59 UTC"], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26175
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26176
+ Processing by AuditRails::AuditsController#index as HTML
26177
+ Parameters: {"commit"=>"Download Filtered Report"}
26178
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-24 23:59:59.999999') ORDER BY created_at DESC
26179
+ Rendered text template (0.0ms)
26180
+ Sent data audits.xls (0.0ms)
26181
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
26182
+  (0.0ms) rollback transaction
26183
+  (0.1ms) begin transaction
26184
+  (0.0ms) SAVEPOINT active_record_1
26185
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sat, 23 Nov 2013 09:02:59 UTC +00:00], ["description", "User logged on at 2013-11-23 09:02:59 UTC"], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26187
+  (0.0ms) SAVEPOINT active_record_1
26188
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Fri, 22 Nov 2013 09:02:59 UTC +00:00], ["description", "User logged on at 2013-11-22 09:02:59 UTC"], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26190
+  (0.0ms) SAVEPOINT active_record_1
26191
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Thu, 21 Nov 2013 09:02:59 UTC +00:00], ["description", "User logged on at 2013-11-21 09:02:59 UTC"], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26193
+ Processing by AuditRails::AuditsController#index as HTML
26194
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
26195
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-24 23:59:59.999999') ORDER BY created_at DESC
26196
+  (0.0ms) rollback transaction
26197
+  (0.1ms) begin transaction
26198
+  (0.0ms) rollback transaction
26199
+  (0.1ms) begin transaction
26200
+  (0.0ms) rollback transaction
26201
+  (0.1ms) begin transaction
26202
+  (0.0ms) rollback transaction
26203
+  (0.1ms) begin transaction
26204
+ Processing by AuditRails::AuditsController#create as HTML
26205
+  (0.0ms) SAVEPOINT active_record_1
26206
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "0.0.0.0"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26208
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
26209
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
26210
+  (0.0ms) rollback transaction
26211
+  (0.1ms) begin transaction
26212
+ Processing by AuditRails::AuditsController#analytics as HTML
26213
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits"
26214
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
26215
+  (0.0ms) rollback transaction
26216
+  (0.1ms) begin transaction
26217
+ Processing by AnonymousController#login as HTML
26218
+ Parameters: {"id"=>"1"}
26219
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
26220
+  (0.0ms) SAVEPOINT active_record_1
26221
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", "User logged in"], ["ip_address", "127.0.0.1"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26223
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
26224
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
26225
+  (0.0ms) rollback transaction
26226
+  (0.1ms) begin transaction
26227
+  (0.0ms) rollback transaction
26228
+  (0.1ms) begin transaction
26229
+  (0.0ms) SAVEPOINT active_record_1
26230
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26232
+  (0.0ms) SAVEPOINT active_record_1
26233
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26235
+  (0.0ms) SAVEPOINT active_record_1
26236
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26238
+  (0.0ms) SAVEPOINT active_record_1
26239
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26241
+  (0.0ms) SAVEPOINT active_record_1
26242
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26244
+  (0.0ms) SAVEPOINT active_record_1
26245
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26247
+  (0.0ms) SAVEPOINT active_record_1
26248
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26250
+  (0.0ms) SAVEPOINT active_record_1
26251
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26253
+  (0.0ms) SAVEPOINT active_record_1
26254
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26255
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26256
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
26257
+  (0.0ms) rollback transaction
26258
+  (0.1ms) begin transaction
26259
+  (0.0ms) SAVEPOINT active_record_1
26260
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26262
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
26263
+  (0.0ms) rollback transaction
26264
+  (0.1ms) begin transaction
26265
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-11-24 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
26266
+  (0.0ms) rollback transaction
26267
+  (0.0ms) begin transaction
26268
+  (0.0ms) SAVEPOINT active_record_1
26269
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26270
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26271
+  (0.0ms) SAVEPOINT active_record_1
26272
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26273
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26274
+  (0.0ms) SAVEPOINT active_record_1
26275
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26277
+  (0.0ms) SAVEPOINT active_record_1
26278
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26280
+  (0.0ms) SAVEPOINT active_record_1
26281
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26283
+  (0.0ms) SAVEPOINT active_record_1
26284
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26285
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26286
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
26287
+  (0.0ms) rollback transaction
26288
+  (0.1ms) begin transaction
26289
+  (0.0ms) SAVEPOINT active_record_1
26290
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26291
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26292
+  (0.0ms) SAVEPOINT active_record_1
26293
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26295
+  (0.0ms) SAVEPOINT active_record_1
26296
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26297
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26298
+  (0.0ms) SAVEPOINT active_record_1
26299
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26300
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26301
+  (0.0ms) SAVEPOINT active_record_1
26302
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26303
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26304
+  (0.0ms) SAVEPOINT active_record_1
26305
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26307
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
26308
+  (0.0ms) rollback transaction
26309
+  (0.1ms) begin transaction
26310
+  (0.0ms) SAVEPOINT active_record_1
26311
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26312
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26313
+  (0.0ms) SAVEPOINT active_record_1
26314
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26315
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26316
+  (0.0ms) SAVEPOINT active_record_1
26317
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26319
+  (0.0ms) SAVEPOINT active_record_1
26320
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-22 09:02:59.512117' WHERE "audit_rails_audits"."id" = 1
26321
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26322
+  (0.0ms) SAVEPOINT active_record_1
26323
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 09:02:59.512117' WHERE "audit_rails_audits"."id" = 2
26324
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26325
+  (0.0ms) SAVEPOINT active_record_1
26326
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-19 09:02:59.512117' WHERE "audit_rails_audits"."id" = 3
26327
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26328
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-20 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
26329
+  (0.0ms) rollback transaction
26330
+  (0.1ms) begin transaction
26331
+  (0.0ms) SAVEPOINT active_record_1
26332
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26334
+  (0.0ms) SAVEPOINT active_record_1
26335
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26336
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26337
+  (0.0ms) SAVEPOINT active_record_1
26338
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26340
+  (0.0ms) SAVEPOINT active_record_1
26341
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-22 09:02:59.525176' WHERE "audit_rails_audits"."id" = 1
26342
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26343
+  (0.0ms) SAVEPOINT active_record_1
26344
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 09:02:59.525176' WHERE "audit_rails_audits"."id" = 2
26345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26346
+  (0.0ms) SAVEPOINT active_record_1
26347
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-19 09:02:59.525176' WHERE "audit_rails_audits"."id" = 3
26348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26349
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-11-20 00:00:00.000000' AND '2013-11-23 23:59:59.999999')
26350
+  (0.0ms) rollback transaction
26351
+  (0.1ms) begin transaction
26352
+  (0.0ms) SAVEPOINT active_record_1
26353
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26354
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26355
+  (0.0ms) SAVEPOINT active_record_1
26356
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26358
+  (0.0ms) SAVEPOINT active_record_1
26359
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26360
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26361
+  (0.0ms) SAVEPOINT active_record_1
26362
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-22 09:02:59.537961' WHERE "audit_rails_audits"."id" = 1
26363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26364
+  (0.0ms) SAVEPOINT active_record_1
26365
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 09:02:59.537961' WHERE "audit_rails_audits"."id" = 2
26366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26367
+  (0.0ms) SAVEPOINT active_record_1
26368
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2013-11-19 09:02:59.537961' WHERE "audit_rails_audits"."id" = 3
26369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26370
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '1970-01-01 00:00:00.000000' AND '2013-11-24 23:59:59.999999')
26371
+  (0.0ms) rollback transaction
26372
+  (0.1ms) begin transaction
26373
+  (0.0ms) SAVEPOINT active_record_1
26374
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26376
+  (0.0ms) SAVEPOINT active_record_1
26377
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26379
+  (0.0ms) SAVEPOINT active_record_1
26380
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26382
+  (0.0ms) SAVEPOINT active_record_1
26383
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26385
+  (0.0ms) SAVEPOINT active_record_1
26386
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26388
+  (0.0ms) SAVEPOINT active_record_1
26389
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26391
+  (0.0ms) SAVEPOINT active_record_1
26392
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26394
+  (0.0ms) SAVEPOINT active_record_1
26395
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26397
+  (0.0ms) SAVEPOINT active_record_1
26398
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26399
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26400
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
26401
+  (0.0ms) rollback transaction
26402
+  (0.1ms) begin transaction
26403
+  (0.0ms) SAVEPOINT active_record_1
26404
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26406
+  (0.0ms) SAVEPOINT active_record_1
26407
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26409
+  (0.0ms) SAVEPOINT active_record_1
26410
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26412
+  (0.0ms) SAVEPOINT active_record_1
26413
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26415
+  (0.0ms) SAVEPOINT active_record_1
26416
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26418
+  (0.0ms) SAVEPOINT active_record_1
26419
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26420
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26421
+  (0.0ms) SAVEPOINT active_record_1
26422
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26423
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26424
+  (0.0ms) SAVEPOINT active_record_1
26425
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "John Smith"]]
26426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26427
+  (0.0ms) SAVEPOINT active_record_1
26428
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Sun, 24 Nov 2013 09:02:59 UTC +00:00], ["user_name", "Fake User"]]
26429
+  (0.0ms) RELEASE SAVEPOINT active_record_1
26430
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
26431
+  (0.0ms) rollback transaction