audit_rails 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/audit_rails/application.js +2 -0
- data/app/assets/javascripts/audit_rails/audit.js +45 -1
- data/app/assets/javascripts/audit_rails/page-view-user-contribution.js +61 -0
- data/app/assets/javascripts/audit_rails/page-views-for-user.js +72 -0
- data/app/assets/stylesheets/audit_rails/audit_rails.css +63 -0
- data/app/controllers/audit_rails/audits_controller.rb +2 -0
- data/app/helpers/audit_rails/audits_helper.rb +8 -0
- data/app/models/audit_rails/audit.rb +9 -0
- data/app/views/audit_rails/audits/_page_views.html.erb +2 -9
- data/app/views/audit_rails/audits/_page_views_by_user_bar.html.erb +18 -0
- data/app/views/audit_rails/audits/_page_views_by_user_pie.html.erb +18 -0
- data/app/views/audit_rails/audits/_sub_menu.html.erb +6 -0
- data/app/views/audit_rails/audits/_user_clicks.html.erb +1 -7
- data/app/views/audit_rails/audits/analytics.html.erb +5 -1
- data/lib/audit_rails/version.rb +1 -1
- data/spec/controllers/audit_rails/audits_controller_spec.rb +7 -1
- data/spec/dummy/log/test.log +3209 -0
- data/spec/models/audit_rails/audit_spec.rb +45 -1
- metadata +7 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe0a86c301641cc72ea888e13177fb4c57cd6d37
|
4
|
+
data.tar.gz: f2b59ba961f9da264d83fc173588efbb56e9eeef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
15
|
+
<%= render partial: 'page_views_by_user_bar' %>
|
16
|
+
<%= render partial: 'page_views_by_user_pie' %>
|
17
|
+
<% end %>
|
data/lib/audit_rails/version.rb
CHANGED
@@ -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
|
data/spec/dummy/log/test.log
CHANGED
@@ -23220,3 +23220,3212 @@ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
|
23220
23220
|
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23221
23221
|
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action[0m
|
23222
23222
|
[1m[35m (0.0ms)[0m rollback transaction
|
23223
|
+
Connecting to database specified by database.yml
|
23224
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
23225
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23226
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23228
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23229
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23231
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23232
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23234
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23235
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23237
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23238
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23240
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23241
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23243
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
23244
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23245
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23246
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23247
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23249
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23250
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23252
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23253
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23255
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23256
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:26:47.585959' WHERE "audit_rails_audits"."id" = 1[0m
|
23257
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23258
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23259
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:26:47.585959' WHERE "audit_rails_audits"."id" = 2
|
23260
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23261
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23262
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:26:47.585959' WHERE "audit_rails_audits"."id" = 3[0m
|
23263
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23264
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23265
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23266
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23267
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23268
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23270
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23271
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23273
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23274
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23276
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23277
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:26:47.601142' WHERE "audit_rails_audits"."id" = 1
|
23278
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23279
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23280
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:26:47.601142' WHERE "audit_rails_audits"."id" = 2[0m
|
23281
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23282
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23283
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:26:47.601142' WHERE "audit_rails_audits"."id" = 3
|
23284
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23285
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23287
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23288
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23289
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23291
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23292
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23294
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23295
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23297
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23298
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:26:47.612393' WHERE "audit_rails_audits"."id" = 1[0m
|
23299
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23300
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23301
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:26:47.612393' WHERE "audit_rails_audits"."id" = 2
|
23302
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23303
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23304
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:26:47.612393' WHERE "audit_rails_audits"."id" = 3[0m
|
23305
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23306
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23307
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23308
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23309
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23310
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23312
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23313
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23315
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23316
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23318
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23319
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23321
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23322
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23324
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23325
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23327
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
23328
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23329
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23330
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23331
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23333
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23335
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23336
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23337
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23338
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23339
|
+
Processing by AuditRails::AuditsController#analytics as HTML
|
23340
|
+
Completed 500 Internal Server Error in 0ms
|
23341
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23342
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23343
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23344
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23346
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23347
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23349
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23350
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23352
|
+
Processing by AuditRails::AuditsController#index as HTML
|
23353
|
+
Parameters: {"commit"=>"Download Filtered Report"}
|
23354
|
+
[1m[36mAuditRails::Audit Load (0.0ms)[0m [1mSELECT "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[0m
|
23355
|
+
Sent data audits.xls (0.0ms)
|
23356
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23357
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23358
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23359
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23360
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23362
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23363
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23365
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23366
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mAuditRails::Audit Load (0.0ms)[0m [1mSELECT "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[0m
|
23371
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23372
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23373
|
+
Processing by AuditRails::AuditsController#create as HTML
|
23374
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23375
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23377
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23378
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23379
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23380
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23381
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23382
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23383
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23384
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23385
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23386
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23387
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23388
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23389
|
+
Processing by AnonymousController#login as HTML
|
23390
|
+
Parameters: {"id"=>"1"}
|
23391
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23393
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23395
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23396
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23398
|
+
Connecting to database specified by database.yml
|
23399
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
23400
|
+
Processing by AuditRails::AuditsController#analytics as HTML
|
23401
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23405
|
+
[1m[35m (0.0ms)[0m begin transaction
|
23406
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23407
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23409
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23410
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23412
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23413
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23415
|
+
Processing by AuditRails::AuditsController#index as HTML
|
23416
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23417
|
+
[1m[35mAuditRails::Audit Load (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23419
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23420
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23421
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23423
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23424
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23426
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23427
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23429
|
+
Processing by AuditRails::AuditsController#index as HTML
|
23430
|
+
Parameters: {"commit"=>"Download Filtered Report"}
|
23431
|
+
[1m[35mAuditRails::Audit Load (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23435
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23436
|
+
Processing by AuditRails::AuditsController#create as HTML
|
23437
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23438
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23440
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23441
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23443
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23444
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23445
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23446
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23447
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23448
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23449
|
+
Connecting to database specified by database.yml
|
23450
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
23451
|
+
Processing by AnonymousController#login as HTML
|
23452
|
+
Parameters: {"id"=>"1"}
|
23453
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23455
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23457
|
+
Rendered text template (0.0ms)
|
23458
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23459
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23461
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23462
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23463
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23464
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
23465
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23466
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23468
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23469
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23470
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23471
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23472
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23474
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23475
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23477
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23478
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23480
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23481
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23483
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23484
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23486
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23487
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23489
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
23490
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23491
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23492
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23493
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23495
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23496
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23498
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23499
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23501
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23502
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:31:53.096869' WHERE "audit_rails_audits"."id" = 1[0m
|
23503
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23504
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23505
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:31:53.096869' WHERE "audit_rails_audits"."id" = 2
|
23506
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23507
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23508
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:31:53.096869' WHERE "audit_rails_audits"."id" = 3[0m
|
23509
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23510
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23511
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23512
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23513
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23514
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23516
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23517
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23519
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23520
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23522
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23523
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:31:53.110547' WHERE "audit_rails_audits"."id" = 1
|
23524
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23525
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23526
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:31:53.110547' WHERE "audit_rails_audits"."id" = 2[0m
|
23527
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23528
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23529
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:31:53.110547' WHERE "audit_rails_audits"."id" = 3
|
23530
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23531
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23533
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23534
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23535
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23537
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23538
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23540
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23541
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23543
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23544
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:31:53.120830' WHERE "audit_rails_audits"."id" = 1[0m
|
23545
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23546
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23547
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:31:53.120830' WHERE "audit_rails_audits"."id" = 2
|
23548
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23549
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23550
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:31:53.120830' WHERE "audit_rails_audits"."id" = 3[0m
|
23551
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23552
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23553
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23554
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23555
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23556
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23558
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23559
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23561
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23562
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23564
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23565
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23567
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23568
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23570
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23571
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23573
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
23574
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23575
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23576
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23577
|
+
[1m[35m (0.0ms)[0m begin transaction
|
23578
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23579
|
+
[1m[35m (0.0ms)[0m begin transaction
|
23580
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23581
|
+
[1m[35m (0.0ms)[0m begin transaction
|
23582
|
+
Processing by AuditRails::AuditsController#analytics as HTML
|
23583
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "audit_rails_audits" [0m
|
23584
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23585
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23586
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23587
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23588
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23590
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23591
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23593
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23594
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mAuditRails::Audit Load (0.0ms)[0m [1mSELECT "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[0m
|
23599
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23600
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23601
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23602
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23604
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23605
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23607
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23608
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23610
|
+
Processing by AuditRails::AuditsController#index as HTML
|
23611
|
+
Parameters: {"commit"=>"Download Filtered Report"}
|
23612
|
+
[1m[36mAuditRails::Audit Load (0.0ms)[0m [1mSELECT "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[0m
|
23613
|
+
Sent data audits.xls (0.0ms)
|
23614
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23615
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23616
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23617
|
+
Processing by AuditRails::AuditsController#create as HTML
|
23618
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23619
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23621
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23622
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23623
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23624
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23625
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23626
|
+
Connecting to database specified by database.yml
|
23627
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
23628
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23629
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23631
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23632
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23634
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23635
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23637
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23638
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23640
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23641
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23643
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23644
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23646
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
23647
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23648
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23649
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23650
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23652
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23653
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23655
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23656
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23658
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23659
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:30.302416' WHERE "audit_rails_audits"."id" = 1[0m
|
23660
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23661
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23662
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:30.302416' WHERE "audit_rails_audits"."id" = 2
|
23663
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23664
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23665
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:30.302416' WHERE "audit_rails_audits"."id" = 3[0m
|
23666
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23667
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23668
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23669
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23670
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23671
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23673
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23674
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23676
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23677
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23679
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23680
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:30.319537' WHERE "audit_rails_audits"."id" = 1
|
23681
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23682
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23683
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:30.319537' WHERE "audit_rails_audits"."id" = 2[0m
|
23684
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23685
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23686
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:30.319537' WHERE "audit_rails_audits"."id" = 3
|
23687
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23688
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23690
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23691
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23692
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23694
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23695
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23697
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23698
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23700
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23701
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:30.329420' WHERE "audit_rails_audits"."id" = 1[0m
|
23702
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23703
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23704
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:30.329420' WHERE "audit_rails_audits"."id" = 2
|
23705
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23706
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23707
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:30.329420' WHERE "audit_rails_audits"."id" = 3[0m
|
23708
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23709
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23710
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23711
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23712
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23713
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23715
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23716
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23718
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23719
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23721
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23722
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23724
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23725
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23727
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23728
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23730
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
23731
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23732
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23733
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23734
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23735
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23736
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23737
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23739
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23740
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23741
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23742
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23743
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23745
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23746
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23748
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23749
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23751
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23752
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23754
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23755
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23757
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23758
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23760
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23762
|
+
Connecting to database specified by database.yml
|
23763
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
23764
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23766
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23767
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23768
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23770
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23772
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23773
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23774
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23776
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23777
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23779
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23780
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23782
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23783
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23785
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23786
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23788
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23789
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23791
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
23792
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23793
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23794
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23795
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23797
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23798
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23800
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23801
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23803
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23804
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23806
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23807
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23809
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23810
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23812
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
23813
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23814
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23815
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23816
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23818
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23819
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23821
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23822
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23824
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23825
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:48.008616' WHERE "audit_rails_audits"."id" = 1[0m
|
23826
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23827
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23828
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:48.008616' WHERE "audit_rails_audits"."id" = 2
|
23829
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23830
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23831
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:48.008616' WHERE "audit_rails_audits"."id" = 3[0m
|
23832
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23833
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23834
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23835
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23836
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23837
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23839
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23840
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23842
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23843
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23845
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23846
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:48.024678' WHERE "audit_rails_audits"."id" = 1
|
23847
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23848
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23849
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:48.024678' WHERE "audit_rails_audits"."id" = 2[0m
|
23850
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23851
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23852
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:48.024678' WHERE "audit_rails_audits"."id" = 3
|
23853
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23854
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23856
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23857
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23858
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23860
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23861
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23863
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23864
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23866
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23867
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:48.040511' WHERE "audit_rails_audits"."id" = 1[0m
|
23868
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23869
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23870
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:48.040511' WHERE "audit_rails_audits"."id" = 2
|
23871
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23872
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23873
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:48.040511' WHERE "audit_rails_audits"."id" = 3[0m
|
23874
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23875
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23876
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23877
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23878
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23879
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23881
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23882
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23884
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23885
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23887
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23888
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23890
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23891
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23893
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23894
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23896
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
23897
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23898
|
+
Connecting to database specified by database.yml
|
23899
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
23900
|
+
Processing by AnonymousController#login as HTML
|
23901
|
+
Parameters: {"id"=>"1"}
|
23902
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23904
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23906
|
+
Rendered text template (0.0ms)
|
23907
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23908
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23910
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23911
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23912
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23913
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23914
|
+
[1m[35m (0.0ms)[0m begin transaction
|
23915
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23916
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23917
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23918
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23920
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23921
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23923
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23924
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23926
|
+
Processing by AuditRails::AuditsController#index as HTML
|
23927
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23928
|
+
[1m[35mAuditRails::Audit Load (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23930
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23931
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23932
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23934
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23935
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23937
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23938
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23940
|
+
Processing by AuditRails::AuditsController#index as HTML
|
23941
|
+
Parameters: {"commit"=>"Download Filtered Report"}
|
23942
|
+
[1m[35mAuditRails::Audit Load (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23946
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23947
|
+
Processing by AuditRails::AuditsController#analytics as HTML
|
23948
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "audit_rails_audits" [0m
|
23949
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23950
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23951
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23952
|
+
Processing by AuditRails::AuditsController#create as HTML
|
23953
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23954
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23956
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
23957
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
23958
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
23959
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
23960
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23961
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23963
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23964
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23966
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23967
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23969
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23970
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23972
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23973
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23975
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23976
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23978
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
23979
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
23980
|
+
[1m[35m (0.1ms)[0m begin transaction
|
23981
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23982
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23984
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23985
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23987
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23988
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23990
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23991
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:51.480625' WHERE "audit_rails_audits"."id" = 1[0m
|
23992
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23993
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
23994
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:51.480625' WHERE "audit_rails_audits"."id" = 2
|
23995
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
23996
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
23997
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:51.480625' WHERE "audit_rails_audits"."id" = 3[0m
|
23998
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
23999
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24000
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24001
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24002
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24003
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24005
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24006
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24008
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24009
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24011
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24012
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:51.496091' WHERE "audit_rails_audits"."id" = 1
|
24013
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24014
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24015
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:51.496091' WHERE "audit_rails_audits"."id" = 2[0m
|
24016
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24017
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24018
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:51.496091' WHERE "audit_rails_audits"."id" = 3
|
24019
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24020
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24022
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24023
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24024
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24026
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24027
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24029
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24030
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24032
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24033
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:51.509605' WHERE "audit_rails_audits"."id" = 1[0m
|
24034
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24035
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24036
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:51.509605' WHERE "audit_rails_audits"."id" = 2
|
24037
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24038
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24039
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:51.509605' WHERE "audit_rails_audits"."id" = 3[0m
|
24040
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24041
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24042
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24043
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24044
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24045
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24047
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24048
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24050
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24051
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24053
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24054
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24056
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24057
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24059
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24060
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24062
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24064
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24065
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24066
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24068
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24069
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24071
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24072
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24074
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24075
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24077
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24078
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24080
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24081
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24083
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name[0m
|
24084
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24085
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24086
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24088
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24089
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24090
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24092
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24094
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24095
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24096
|
+
Connecting to database specified by database.yml
|
24097
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
24098
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24099
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24101
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24102
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24104
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24105
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24107
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24108
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24110
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24111
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24113
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24114
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24116
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24118
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24119
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24120
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24122
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24123
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24125
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24126
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24128
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24129
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24131
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24132
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24134
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24135
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24137
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name[0m
|
24138
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24139
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24140
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24141
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24143
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24144
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24146
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24147
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24149
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24150
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:55.223261' WHERE "audit_rails_audits"."id" = 1
|
24151
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24152
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24153
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:55.223261' WHERE "audit_rails_audits"."id" = 2[0m
|
24154
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24155
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24156
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:55.223261' WHERE "audit_rails_audits"."id" = 3
|
24157
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24158
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24160
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24161
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24162
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24164
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24165
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24167
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24168
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24170
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24171
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:55.240493' WHERE "audit_rails_audits"."id" = 1[0m
|
24172
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24173
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24174
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:55.240493' WHERE "audit_rails_audits"."id" = 2
|
24175
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24176
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24177
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:55.240493' WHERE "audit_rails_audits"."id" = 3[0m
|
24178
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24179
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24180
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24181
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24182
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24183
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24185
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24186
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24188
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24189
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24191
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24192
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:33:55.255296' WHERE "audit_rails_audits"."id" = 1
|
24193
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24194
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24195
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:33:55.255296' WHERE "audit_rails_audits"."id" = 2[0m
|
24196
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24197
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24198
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:33:55.255296' WHERE "audit_rails_audits"."id" = 3
|
24199
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24200
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24202
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24203
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24204
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24205
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24206
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24207
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24209
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24210
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24211
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24212
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24213
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24215
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24216
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24218
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24219
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24221
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24222
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24224
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24225
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24227
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24228
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24230
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
24231
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24232
|
+
Connecting to database specified by database.yml
|
24233
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
24234
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24235
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24237
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24238
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24240
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24241
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24243
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24244
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24246
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24247
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24249
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24250
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24252
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
24253
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24254
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24255
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24256
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24258
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24259
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24261
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24262
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24264
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24265
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24267
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24268
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24270
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24271
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24273
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action[0m
|
24274
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24275
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24276
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24277
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24279
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24280
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24282
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24283
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24285
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24286
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24288
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24289
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24291
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24292
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24294
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24295
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24297
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24298
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24300
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24301
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24303
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
24304
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24305
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
24306
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24307
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24309
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24310
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24311
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24312
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24314
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24315
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24316
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24318
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24319
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24321
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24322
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24324
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24325
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:16.891718' WHERE "audit_rails_audits"."id" = 1[0m
|
24326
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24327
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24328
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:16.891718' WHERE "audit_rails_audits"."id" = 2
|
24329
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24330
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24331
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:16.891718' WHERE "audit_rails_audits"."id" = 3[0m
|
24332
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24333
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24334
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24335
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24336
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24337
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24339
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24340
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24342
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24343
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24345
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24346
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:16.905411' WHERE "audit_rails_audits"."id" = 1
|
24347
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24348
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24349
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:16.905411' WHERE "audit_rails_audits"."id" = 2[0m
|
24350
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24351
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24352
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:16.905411' WHERE "audit_rails_audits"."id" = 3
|
24353
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24354
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24356
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24357
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24358
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24360
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24361
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24363
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24364
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24366
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24367
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:16.915761' WHERE "audit_rails_audits"."id" = 1[0m
|
24368
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24369
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24370
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:16.915761' WHERE "audit_rails_audits"."id" = 2
|
24371
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24372
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24373
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:16.915761' WHERE "audit_rails_audits"."id" = 3[0m
|
24374
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24375
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24376
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24377
|
+
Connecting to database specified by database.yml
|
24378
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
24379
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24380
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24382
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24383
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24385
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24386
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24388
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24389
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24391
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24392
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24394
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24395
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24397
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
24398
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24399
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24400
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24401
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24403
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24404
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24406
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24407
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24409
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24410
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24412
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24413
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24415
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24416
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24418
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name[0m
|
24419
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24420
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24421
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24423
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24424
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24425
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24427
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24429
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24430
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24431
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24433
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24434
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24436
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24437
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24439
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24440
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:33.383877' WHERE "audit_rails_audits"."id" = 1[0m
|
24441
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24442
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24443
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:33.383877' WHERE "audit_rails_audits"."id" = 2
|
24444
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24445
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24446
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:33.383877' WHERE "audit_rails_audits"."id" = 3[0m
|
24447
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24448
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24449
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24450
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24451
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24452
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24454
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24455
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24457
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24458
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24460
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24461
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:33.396895' WHERE "audit_rails_audits"."id" = 1
|
24462
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24463
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24464
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:33.396895' WHERE "audit_rails_audits"."id" = 2[0m
|
24465
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24466
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24467
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:33.396895' WHERE "audit_rails_audits"."id" = 3
|
24468
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24469
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24471
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24472
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24473
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24475
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24476
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24478
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24479
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24481
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24482
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:33.408908' WHERE "audit_rails_audits"."id" = 1[0m
|
24483
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24484
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24485
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:33.408908' WHERE "audit_rails_audits"."id" = 2
|
24486
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24487
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24488
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:33.408908' WHERE "audit_rails_audits"."id" = 3[0m
|
24489
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24490
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24491
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24492
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24493
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24494
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24496
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24497
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24499
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24500
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24502
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24503
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24505
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24506
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24508
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24509
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24511
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24512
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24514
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24515
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24517
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24518
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24520
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
24521
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24522
|
+
Connecting to database specified by database.yml
|
24523
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
24524
|
+
Processing by AnonymousController#login as HTML
|
24525
|
+
Parameters: {"id"=>"1"}
|
24526
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24528
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24530
|
+
Rendered text template (0.0ms)
|
24531
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
24532
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24534
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24535
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24536
|
+
[1m[35m (0.0ms)[0m begin transaction
|
24537
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24538
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24539
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24540
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24541
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24543
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24544
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24545
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24546
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24547
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24549
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24550
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24552
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24553
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24555
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24556
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24558
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24559
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24561
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24562
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24564
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24565
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24567
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24568
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24570
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24571
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24573
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
24574
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24575
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24576
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24577
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24579
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24580
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24582
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24583
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24585
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24586
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24588
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24589
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24591
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24592
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24594
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
24595
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24596
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24597
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24598
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24600
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24601
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24603
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24604
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24606
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24607
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24609
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24610
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24612
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24613
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24615
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action[0m
|
24616
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24617
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24618
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24619
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24621
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24622
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24624
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24625
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24627
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24628
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:36.789491' WHERE "audit_rails_audits"."id" = 1
|
24629
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24630
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24631
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:36.789491' WHERE "audit_rails_audits"."id" = 2[0m
|
24632
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24633
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24634
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:36.789491' WHERE "audit_rails_audits"."id" = 3
|
24635
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24636
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24638
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24639
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24640
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24642
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24643
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24645
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24646
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24648
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24649
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:36.804330' WHERE "audit_rails_audits"."id" = 1[0m
|
24650
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24651
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24652
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:36.804330' WHERE "audit_rails_audits"."id" = 2
|
24653
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24654
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24655
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:36.804330' WHERE "audit_rails_audits"."id" = 3[0m
|
24656
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24657
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24658
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24659
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24660
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24661
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24663
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24664
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24666
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24667
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24669
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24670
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:34:36.814772' WHERE "audit_rails_audits"."id" = 1
|
24671
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24672
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24673
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:34:36.814772' WHERE "audit_rails_audits"."id" = 2[0m
|
24674
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24675
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24676
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:34:36.814772' WHERE "audit_rails_audits"."id" = 3
|
24677
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24678
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24680
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24681
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24682
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24683
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24684
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24685
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24686
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24687
|
+
Processing by AuditRails::AuditsController#create as HTML
|
24688
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24689
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24691
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
24692
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24694
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24695
|
+
Processing by AuditRails::AuditsController#analytics as HTML
|
24696
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "audit_rails_audits" [0m
|
24697
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
24698
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24699
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
24700
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24701
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24703
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24704
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24706
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24707
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mAuditRails::Audit Load (0.0ms)[0m [1mSELECT "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[0m
|
24712
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24713
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24714
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24715
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24717
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24718
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24720
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24721
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24723
|
+
Processing by AuditRails::AuditsController#index as HTML
|
24724
|
+
Parameters: {"commit"=>"Download Filtered Report"}
|
24725
|
+
[1m[36mAuditRails::Audit Load (0.0ms)[0m [1mSELECT "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[0m
|
24726
|
+
Sent data audits.xls (0.0ms)
|
24727
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
24728
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24729
|
+
Connecting to database specified by database.yml
|
24730
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
24731
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24732
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24734
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24735
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24736
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24737
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24739
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24740
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24741
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24743
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24744
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24746
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24747
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24749
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24750
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24752
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24753
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24755
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24756
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24758
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action[0m
|
24759
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24760
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24761
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24762
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24764
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24765
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24767
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24768
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24770
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24771
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24773
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24774
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24776
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24777
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24779
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
24780
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24781
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24782
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24783
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24785
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24786
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24788
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24789
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24791
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24792
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:35:17.026347' WHERE "audit_rails_audits"."id" = 1[0m
|
24793
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24794
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24795
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:35:17.026347' WHERE "audit_rails_audits"."id" = 2
|
24796
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24797
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24798
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:35:17.026347' WHERE "audit_rails_audits"."id" = 3[0m
|
24799
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24800
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24801
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24802
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24803
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24804
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24806
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24807
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24809
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24810
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24812
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24813
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:35:17.037912' WHERE "audit_rails_audits"."id" = 1
|
24814
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24815
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24816
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:35:17.037912' WHERE "audit_rails_audits"."id" = 2[0m
|
24817
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24818
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24819
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:35:17.037912' WHERE "audit_rails_audits"."id" = 3
|
24820
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24821
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24823
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24824
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24825
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24827
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24828
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24830
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24831
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24833
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24834
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:35:17.049854' WHERE "audit_rails_audits"."id" = 1[0m
|
24835
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24836
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24837
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:35:17.049854' WHERE "audit_rails_audits"."id" = 2
|
24838
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24839
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24840
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:35:17.049854' WHERE "audit_rails_audits"."id" = 3[0m
|
24841
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24842
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24843
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24844
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24845
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24846
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24848
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24849
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24851
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24852
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24854
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24855
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24857
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24858
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24860
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24861
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24863
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24864
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24866
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24867
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24869
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24870
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24872
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
24873
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24874
|
+
Connecting to database specified by database.yml
|
24875
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
24876
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24877
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24879
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24880
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24882
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24883
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24885
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24886
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24888
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24889
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24891
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24892
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24894
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
24895
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24896
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24897
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24898
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24900
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24901
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24903
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24904
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24906
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24907
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24909
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24910
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24912
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24913
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24915
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24916
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24918
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24919
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24921
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24922
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24924
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24926
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24927
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24928
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24930
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24932
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24933
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24934
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24935
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
24936
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24937
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24939
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24940
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24942
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24943
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24945
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24946
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24948
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24949
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24951
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24952
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24954
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
24955
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24956
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24957
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24958
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24960
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24961
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24963
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24964
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24966
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24967
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:38:24.496372' WHERE "audit_rails_audits"."id" = 1[0m
|
24968
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24969
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24970
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:38:24.496372' WHERE "audit_rails_audits"."id" = 2
|
24971
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24972
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24973
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:38:24.496372' WHERE "audit_rails_audits"."id" = 3[0m
|
24974
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24975
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
24976
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
24977
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
24978
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24979
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24981
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24982
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24984
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24985
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24987
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24988
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:38:24.510441' WHERE "audit_rails_audits"."id" = 1
|
24989
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24990
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
24991
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:38:24.510441' WHERE "audit_rails_audits"."id" = 2[0m
|
24992
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
24993
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
24994
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:38:24.510441' WHERE "audit_rails_audits"."id" = 3
|
24995
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
24996
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
24998
|
+
[1m[35m (0.1ms)[0m begin transaction
|
24999
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25000
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25002
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25003
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25005
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25006
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25008
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25009
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:38:24.520433' WHERE "audit_rails_audits"."id" = 1[0m
|
25010
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25011
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25012
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:38:24.520433' WHERE "audit_rails_audits"."id" = 2
|
25013
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25014
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25015
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:38:24.520433' WHERE "audit_rails_audits"."id" = 3[0m
|
25016
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25017
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25018
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25019
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25020
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25021
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25023
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25024
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25026
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25027
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25029
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25030
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25032
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25033
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25035
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25036
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25038
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25039
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25041
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25042
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25044
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25045
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25047
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
25048
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25049
|
+
Connecting to database specified by database.yml
|
25050
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
25051
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25052
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25054
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25055
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25057
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25058
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25060
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25061
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25063
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25064
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25066
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25067
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25069
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25070
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25072
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25073
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25075
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25076
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25078
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
25079
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25080
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25081
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25082
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25084
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25085
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25087
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25088
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25090
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25091
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:31.778359' WHERE "audit_rails_audits"."id" = 1
|
25092
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25093
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25094
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:31.778359' WHERE "audit_rails_audits"."id" = 2[0m
|
25095
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25096
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25097
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:31.778359' WHERE "audit_rails_audits"."id" = 3
|
25098
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25099
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25101
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25102
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25103
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25105
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25106
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25108
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25109
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25111
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25112
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:31.793375' WHERE "audit_rails_audits"."id" = 1[0m
|
25113
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25114
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25115
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:31.793375' WHERE "audit_rails_audits"."id" = 2
|
25116
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25117
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25118
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:31.793375' WHERE "audit_rails_audits"."id" = 3[0m
|
25119
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25120
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25121
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25122
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25123
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25124
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25126
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25127
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25129
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25130
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25132
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25133
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:31.804342' WHERE "audit_rails_audits"."id" = 1
|
25134
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25135
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25136
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:31.804342' WHERE "audit_rails_audits"."id" = 2[0m
|
25137
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25138
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25139
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:31.804342' WHERE "audit_rails_audits"."id" = 3
|
25140
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25141
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25143
|
+
[1m[35m (0.0ms)[0m begin transaction
|
25144
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25145
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25147
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25149
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25150
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25151
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25152
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
25153
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25154
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25156
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25157
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25159
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25160
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25162
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25163
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25165
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25166
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25168
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25169
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25171
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
25172
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25173
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25174
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25175
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25177
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25178
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25180
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25181
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25183
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25184
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25186
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25187
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25189
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25190
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25192
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action[0m
|
25193
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25194
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25195
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25196
|
+
Connecting to database specified by database.yml
|
25197
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
25198
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25200
|
+
[1m[35m (0.0ms)[0m begin transaction
|
25201
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25202
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25204
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25206
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25207
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25208
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25210
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25211
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25213
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25214
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25216
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25217
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25219
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25220
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25222
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25223
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25225
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name[0m
|
25226
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25227
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25228
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25229
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25230
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25231
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25233
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25234
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25236
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25237
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25239
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25240
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:39.378883' WHERE "audit_rails_audits"."id" = 1
|
25241
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25242
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25243
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:39.378883' WHERE "audit_rails_audits"."id" = 2[0m
|
25244
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25245
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25246
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:39.378883' WHERE "audit_rails_audits"."id" = 3
|
25247
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25248
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25250
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25251
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25252
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25254
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25255
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25257
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25258
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25260
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25261
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:39.390730' WHERE "audit_rails_audits"."id" = 1[0m
|
25262
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25263
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25264
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:39.390730' WHERE "audit_rails_audits"."id" = 2
|
25265
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25266
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25267
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:39.390730' WHERE "audit_rails_audits"."id" = 3[0m
|
25268
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25269
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25270
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25271
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25272
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25273
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25275
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25276
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25278
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25279
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25281
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25282
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:39:39.401690' WHERE "audit_rails_audits"."id" = 1
|
25283
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25284
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25285
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:39:39.401690' WHERE "audit_rails_audits"."id" = 2[0m
|
25286
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25287
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25288
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:39:39.401690' WHERE "audit_rails_audits"."id" = 3
|
25289
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25290
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25292
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25293
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25294
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25296
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25297
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25299
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25300
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25302
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25303
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25305
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25306
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25308
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25309
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25311
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action[0m
|
25312
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25314
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25315
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25317
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25318
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25320
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25321
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25323
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25324
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25326
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25327
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25329
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25330
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25332
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25333
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25335
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25336
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25338
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25339
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25341
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
25342
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25343
|
+
Connecting to database specified by database.yml
|
25344
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
25345
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25346
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25348
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25349
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25351
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25352
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25354
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25355
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25357
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25358
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25360
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25361
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25363
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
25364
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25365
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25366
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25367
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25369
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25370
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25372
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25373
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25375
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25376
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25378
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25379
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25381
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25382
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25384
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25385
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25387
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25388
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25390
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25391
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25393
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25395
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25396
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25397
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25398
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25399
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25400
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25402
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25403
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25404
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25405
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25406
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25408
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25409
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25411
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25412
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25414
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25415
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25417
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25418
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25420
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25421
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25423
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
25424
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25425
|
+
[1m[35m (0.2ms)[0m begin transaction
|
25426
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25427
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25429
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25430
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25432
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25433
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25435
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25436
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:01.498797' WHERE "audit_rails_audits"."id" = 1[0m
|
25437
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25438
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25439
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:01.498797' WHERE "audit_rails_audits"."id" = 2
|
25440
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25441
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25442
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:01.498797' WHERE "audit_rails_audits"."id" = 3[0m
|
25443
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25444
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25445
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25446
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25447
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25448
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25450
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25451
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25453
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25454
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25456
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25457
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:01.513459' WHERE "audit_rails_audits"."id" = 1
|
25458
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25459
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25460
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:01.513459' WHERE "audit_rails_audits"."id" = 2[0m
|
25461
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25462
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25463
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:01.513459' WHERE "audit_rails_audits"."id" = 3
|
25464
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25465
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25467
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25468
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25469
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25471
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25472
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25474
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25475
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25477
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25478
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:01.523636' WHERE "audit_rails_audits"."id" = 1[0m
|
25479
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25480
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25481
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:01.523636' WHERE "audit_rails_audits"."id" = 2
|
25482
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25483
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25484
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:01.523636' WHERE "audit_rails_audits"."id" = 3[0m
|
25485
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25486
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25487
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25488
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25489
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25490
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25492
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25493
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25495
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25496
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25498
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25499
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25501
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25502
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25504
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25505
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25507
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25508
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25510
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25511
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25513
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25514
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25516
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address[0m
|
25517
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25518
|
+
Connecting to database specified by database.yml
|
25519
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
25520
|
+
Processing by AnonymousController#login as HTML
|
25521
|
+
Parameters: {"id"=>"1"}
|
25522
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25524
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25526
|
+
Rendered text template (0.0ms)
|
25527
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
25528
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25530
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25531
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25532
|
+
[1m[35m (0.0ms)[0m begin transaction
|
25533
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25534
|
+
[1m[35m (0.0ms)[0m begin transaction
|
25535
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25536
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25537
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25538
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25540
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25541
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25543
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25544
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25546
|
+
Processing by AuditRails::AuditsController#index as HTML
|
25547
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
25548
|
+
[1m[35mAuditRails::Audit Load (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25550
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25551
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25552
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25554
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25555
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25557
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25558
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25560
|
+
Processing by AuditRails::AuditsController#index as HTML
|
25561
|
+
Parameters: {"commit"=>"Download Filtered Report"}
|
25562
|
+
[1m[35mAuditRails::Audit Load (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25566
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25567
|
+
Processing by AuditRails::AuditsController#create as HTML
|
25568
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25569
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25571
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
25572
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25574
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25575
|
+
Processing by AuditRails::AuditsController#analytics as HTML
|
25576
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) FROM "audit_rails_audits" [0m
|
25577
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
25578
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25579
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25580
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25581
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25582
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25583
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25585
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25586
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25588
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25589
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25591
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25592
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25594
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25595
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25597
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25598
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25600
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25601
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25603
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25604
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25606
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25607
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25609
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
25610
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25611
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25612
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25614
|
+
[1m[35m (0.0ms)[0m begin transaction
|
25615
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25616
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25618
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25620
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25621
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25622
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25624
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25625
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25627
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25628
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25630
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25631
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:04.998431' WHERE "audit_rails_audits"."id" = 1[0m
|
25632
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25633
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25634
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:04.998431' WHERE "audit_rails_audits"."id" = 2
|
25635
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25636
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25637
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:04.998431' WHERE "audit_rails_audits"."id" = 3[0m
|
25638
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25639
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25640
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25641
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25642
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25643
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25645
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25646
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25648
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25649
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25651
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25652
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:05.010745' WHERE "audit_rails_audits"."id" = 1
|
25653
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25654
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25655
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:05.010745' WHERE "audit_rails_audits"."id" = 2[0m
|
25656
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25657
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25658
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:05.010745' WHERE "audit_rails_audits"."id" = 3
|
25659
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25660
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25662
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25663
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25664
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25666
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25667
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25669
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25670
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25672
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25673
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:40:05.020942' WHERE "audit_rails_audits"."id" = 1[0m
|
25674
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25675
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25676
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:40:05.020942' WHERE "audit_rails_audits"."id" = 2
|
25677
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25678
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25679
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:40:05.020942' WHERE "audit_rails_audits"."id" = 3[0m
|
25680
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25681
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25682
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25683
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25684
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25685
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25687
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25688
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25690
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25691
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25693
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25694
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25696
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25697
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25699
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25700
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25702
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
25703
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25704
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25705
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25706
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25708
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25709
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25711
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25712
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25714
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25715
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25717
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25718
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25720
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25721
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25723
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action[0m
|
25724
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25725
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25726
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25727
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25729
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25730
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25732
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25733
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25735
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25736
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25738
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25739
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25741
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25742
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25744
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25745
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25747
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25748
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25750
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25751
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25753
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address[0m
|
25754
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25755
|
+
Connecting to database specified by database.yml
|
25756
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
25757
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25758
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25760
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25761
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25762
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25763
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25765
|
+
[1m[35m (0.0ms)[0m begin transaction
|
25766
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25767
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25769
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25770
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25772
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25773
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25775
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25776
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25778
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25779
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25781
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25782
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25784
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25785
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25787
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25788
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25790
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25791
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25793
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
|
25794
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25795
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25796
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25797
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25799
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25800
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25802
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25803
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25805
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25806
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25808
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25809
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25811
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25812
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25814
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action[0m
|
25815
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25816
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25817
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25818
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25820
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25821
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25823
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25824
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25826
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25827
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25829
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25830
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25832
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25833
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25835
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
25836
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25837
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25838
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25839
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25841
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25842
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25844
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25845
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25847
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25848
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:02.320671' WHERE "audit_rails_audits"."id" = 1[0m
|
25849
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25850
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25851
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:02.320671' WHERE "audit_rails_audits"."id" = 2
|
25852
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25853
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25854
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:02.320671' WHERE "audit_rails_audits"."id" = 3[0m
|
25855
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25856
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25857
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25858
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25859
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25860
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25862
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25863
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25865
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25866
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25868
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25869
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:02.334631' WHERE "audit_rails_audits"."id" = 1
|
25870
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25871
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25872
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:02.334631' WHERE "audit_rails_audits"."id" = 2[0m
|
25873
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25874
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25875
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:02.334631' WHERE "audit_rails_audits"."id" = 3
|
25876
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25877
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
25879
|
+
[1m[35m (0.1ms)[0m begin transaction
|
25880
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25881
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25883
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25884
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25886
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25887
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25889
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25890
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:02.344403' WHERE "audit_rails_audits"."id" = 1[0m
|
25891
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25892
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25893
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:02.344403' WHERE "audit_rails_audits"."id" = 2
|
25894
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25895
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25896
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:02.344403' WHERE "audit_rails_audits"."id" = 3[0m
|
25897
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25898
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
25899
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25900
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25901
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25902
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25904
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25905
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25907
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25908
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25910
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25911
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25913
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25914
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25916
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25917
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25919
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25920
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25922
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25923
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25925
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25926
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25928
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
25929
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25930
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25931
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25932
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25934
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25935
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25937
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25938
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25940
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25941
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25943
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25944
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25946
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25947
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25949
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25950
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25952
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25953
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25955
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25956
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25958
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address[0m
|
25959
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25960
|
+
Connecting to database specified by database.yml
|
25961
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
25962
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25963
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25965
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25966
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25968
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25969
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25971
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25972
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25974
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25975
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25977
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25978
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25980
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25981
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25983
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25984
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25986
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25987
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25989
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address[0m
|
25990
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25991
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
25992
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25993
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
25995
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
25996
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
25998
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
25999
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26001
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26002
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26004
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26005
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26007
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26008
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26010
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
|
26011
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
26012
|
+
[1m[35m (0.1ms)[0m begin transaction
|
26013
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26014
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26016
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26017
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26019
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26020
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26022
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26023
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:17.404051' WHERE "audit_rails_audits"."id" = 1[0m
|
26024
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26025
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26026
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:17.404051' WHERE "audit_rails_audits"."id" = 2
|
26027
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26028
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26029
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:17.404051' WHERE "audit_rails_audits"."id" = 3[0m
|
26030
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26031
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
26032
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26033
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26034
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26035
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26037
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26038
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26040
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26041
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26043
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26044
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:17.420289' WHERE "audit_rails_audits"."id" = 1
|
26045
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26046
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26047
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:17.420289' WHERE "audit_rails_audits"."id" = 2[0m
|
26048
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26049
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26050
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:17.420289' WHERE "audit_rails_audits"."id" = 3
|
26051
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26052
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
26054
|
+
[1m[35m (0.1ms)[0m begin transaction
|
26055
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26056
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26058
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26059
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26061
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26062
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26064
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26065
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 20:41:17.431026' WHERE "audit_rails_audits"."id" = 1[0m
|
26066
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26067
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26068
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-20 20:41:17.431026' WHERE "audit_rails_audits"."id" = 2
|
26069
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26070
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26071
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-18 20:41:17.431026' WHERE "audit_rails_audits"."id" = 3[0m
|
26072
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26073
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
26074
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26075
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26076
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26077
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26079
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26080
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26082
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26083
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26085
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26086
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26088
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26089
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26091
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26092
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26094
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26095
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26097
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26098
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26100
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26101
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26103
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
26104
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26105
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26106
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26107
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26109
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26110
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26112
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26113
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26115
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26116
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26118
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26119
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26121
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26122
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26124
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
26125
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
26126
|
+
[1m[35m (0.1ms)[0m begin transaction
|
26127
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
26128
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
26130
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26131
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26133
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
26134
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26135
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26136
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26137
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26139
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26140
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26142
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26143
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26145
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26146
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26148
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26149
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26151
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26152
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26154
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26155
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26157
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26158
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26160
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26161
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26163
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address[0m
|
26164
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26165
|
+
Connecting to database specified by database.yml
|
26166
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
26167
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26168
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26170
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26171
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26173
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26174
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26176
|
+
Processing by AuditRails::AuditsController#index as HTML
|
26177
|
+
Parameters: {"commit"=>"Download Filtered Report"}
|
26178
|
+
[1m[36mAuditRails::Audit Load (0.0ms)[0m [1mSELECT "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[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26183
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26184
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26185
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26187
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26188
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26190
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26191
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mAuditRails::Audit Load (0.0ms)[0m [1mSELECT "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[0m
|
26196
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26197
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26198
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26199
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26200
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26201
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26202
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26203
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26204
|
+
Processing by AuditRails::AuditsController#create as HTML
|
26205
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26206
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26208
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
26209
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
26210
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26211
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26212
|
+
Processing by AuditRails::AuditsController#analytics as HTML
|
26213
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "audit_rails_audits"
|
26214
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
26215
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
26216
|
+
[1m[35m (0.1ms)[0m begin transaction
|
26217
|
+
Processing by AnonymousController#login as HTML
|
26218
|
+
Parameters: {"id"=>"1"}
|
26219
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
26220
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26221
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26223
|
+
Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
|
26224
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
26225
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26226
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26227
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26228
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26229
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26230
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26232
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26233
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26235
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26236
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26238
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26239
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26241
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26242
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26244
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26245
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26247
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26248
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26250
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26251
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26253
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26254
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26256
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address[0m
|
26257
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26258
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26259
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26260
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26262
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
26263
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26264
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26265
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
26267
|
+
[1m[35m (0.0ms)[0m begin transaction
|
26268
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26269
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26271
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26272
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26274
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26275
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26277
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26278
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26280
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26281
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26283
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26284
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26286
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name[0m
|
26287
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26288
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26289
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26290
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26292
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26293
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26295
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26296
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26298
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26299
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26301
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26302
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26304
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26305
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26307
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
|
26308
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
26309
|
+
[1m[35m (0.1ms)[0m begin transaction
|
26310
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26311
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26313
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26314
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26316
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26317
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26319
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26320
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-22 09:02:59.512117' WHERE "audit_rails_audits"."id" = 1[0m
|
26321
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26322
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26323
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 09:02:59.512117' WHERE "audit_rails_audits"."id" = 2
|
26324
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26325
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26326
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-19 09:02:59.512117' WHERE "audit_rails_audits"."id" = 3[0m
|
26327
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26328
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
26329
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26330
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26331
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26332
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26334
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26335
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26337
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26338
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26340
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26341
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-22 09:02:59.525176' WHERE "audit_rails_audits"."id" = 1
|
26342
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26343
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26344
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 09:02:59.525176' WHERE "audit_rails_audits"."id" = 2[0m
|
26345
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26346
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26347
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-19 09:02:59.525176' WHERE "audit_rails_audits"."id" = 3
|
26348
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26349
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
26351
|
+
[1m[35m (0.1ms)[0m begin transaction
|
26352
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26353
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26355
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26356
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26358
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26359
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26361
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26362
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-22 09:02:59.537961' WHERE "audit_rails_audits"."id" = 1[0m
|
26363
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26364
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26365
|
+
[1m[35m (0.0ms)[0m UPDATE "audit_rails_audits" SET "created_at" = '2013-11-21 09:02:59.537961' WHERE "audit_rails_audits"."id" = 2
|
26366
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26367
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26368
|
+
[1m[36m (0.0ms)[0m [1mUPDATE "audit_rails_audits" SET "created_at" = '2013-11-19 09:02:59.537961' WHERE "audit_rails_audits"."id" = 3[0m
|
26369
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26370
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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')[0m
|
26371
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26372
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26373
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26374
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26376
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26377
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26379
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26380
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26382
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26383
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26385
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26386
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26388
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26389
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26391
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26392
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26394
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26395
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26397
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26398
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26400
|
+
[1m[36m (0.0ms)[0m [1mSELECT 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[0m
|
26401
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26402
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
26403
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26404
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26406
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26407
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26409
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26410
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26412
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26413
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26415
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26416
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26418
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26419
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26421
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26422
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26424
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
26425
|
+
[1m[35mSQL (0.0ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
26427
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
26428
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
26430
|
+
[1m[36m (0.0ms)[0m [1mSELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address[0m
|
26431
|
+
[1m[35m (0.0ms)[0m rollback transaction
|