think_feel_do_dashboard 1.1.11 → 1.1.12
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/controllers/think_feel_do_dashboard/application_controller.rb +2 -1
- data/app/controllers/think_feel_do_dashboard/concerns/invalid_auth_token.rb +20 -0
- data/config/brakeman.ignore +25 -0
- data/lib/think_feel_do_dashboard/version.rb +1 -1
- data/spec/controllers/think_feel_do_dashboard/arms_controller_spec.rb +28 -0
- data/spec/dummy/log/development.log +329 -0
- data/spec/dummy/log/test.log +1033 -0
- data/spec/support/controller_spec_helpers.rb +14 -2
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75b3f6765d060d1666e03a510f0711c1460b494f
|
4
|
+
data.tar.gz: d84938e2453a439aa8e3ef13152572c8520a2c13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f62a9075eb1aeae3aa9c6b62e0c44170d66be856acab7b249d9a80c6c82069b6454ddccdb8b691e2044f012391f9499ef654a2ce0525fdce869e18285c00153
|
7
|
+
data.tar.gz: 716d5eb2b8603a625087edac24ec727c38d08495c3fc9986b89a1c239d704017ac50c0e9122101fbf79a5c2667f6ad8319e6082e3c1c3ebc21b9ccdd7ee30614
|
@@ -4,7 +4,8 @@ module ThinkFeelDoDashboard
|
|
4
4
|
# Top level engine controller
|
5
5
|
# inherits from host application's ApplicationController.
|
6
6
|
class ApplicationController < ::ApplicationController
|
7
|
-
include
|
7
|
+
include Concerns::BrowserDetective
|
8
|
+
include Concerns::InvalidAuthToken
|
8
9
|
|
9
10
|
before_action :authenticate_user!, :detect_browser
|
10
11
|
check_authorization
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module ThinkFeelDoDashboard
|
2
|
+
module Concerns
|
3
|
+
# Rescues exception when authenticity token has expired
|
4
|
+
module InvalidAuthToken
|
5
|
+
extend ActiveSupport::Concern
|
6
|
+
|
7
|
+
included do
|
8
|
+
rescue_from ActionController::InvalidAuthenticityToken,
|
9
|
+
with: :invalid_auth_token_redirect
|
10
|
+
end
|
11
|
+
|
12
|
+
private
|
13
|
+
|
14
|
+
def invalid_auth_token_redirect
|
15
|
+
redirect_to root_path,
|
16
|
+
alert: "Your authenticity token expired. Please try again."
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"ignored_warnings": [
|
3
|
+
{
|
4
|
+
"warning_type": "File Access",
|
5
|
+
"warning_code": 16,
|
6
|
+
"fingerprint": "9549fb654ae55ba517ae6afb033c6fe4a731ddb1d74bd0fd1e39bb2253bbd141",
|
7
|
+
"message": "Parameter value used in file name",
|
8
|
+
"file": "app/controllers/think_feel_do_dashboard/reports_controller.rb",
|
9
|
+
"line": 17,
|
10
|
+
"link": "http://brakemanscanner.org/docs/warning_types/file_access/",
|
11
|
+
"code": "send_file((reporter.file_path(params[:id]) or {}), :type => \"text/csv\")",
|
12
|
+
"render_path": null,
|
13
|
+
"location": {
|
14
|
+
"type": "method",
|
15
|
+
"class": "ThinkFeelDoDashboard::ReportsController",
|
16
|
+
"method": "show"
|
17
|
+
},
|
18
|
+
"user_input": "params[:id]",
|
19
|
+
"confidence": "Weak",
|
20
|
+
"note": ""
|
21
|
+
}
|
22
|
+
],
|
23
|
+
"updated": "2016-02-15 11:19:07 -0600",
|
24
|
+
"brakeman_version": "3.1.4"
|
25
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require "rails_helper"
|
2
|
+
|
3
|
+
module ThinkFeelDoDashboard
|
4
|
+
RSpec.describe ArmsController, type: :controller do
|
5
|
+
routes { Engine.routes }
|
6
|
+
|
7
|
+
describe "GET new" do
|
8
|
+
context "for unauthenticated requests" do
|
9
|
+
before { get :new }
|
10
|
+
it_behaves_like "a rejected user action"
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
describe "POST create" do
|
15
|
+
describe "when InvalidAuthenticityToken is raised" do
|
16
|
+
before do
|
17
|
+
allow(request.env["warden"])
|
18
|
+
.to receive(:authenticate!)
|
19
|
+
.and_raise ActionController::InvalidAuthenticityToken
|
20
|
+
|
21
|
+
post :create, arm: {}
|
22
|
+
end
|
23
|
+
|
24
|
+
it_behaves_like "an untrusted action"
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -371976,3 +371976,332 @@ Migrating to CreateParticipants (20141020185953)
|
|
371976
371976
|
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020185953_create_participants.rb:8)
|
371977
371977
|
[1m[36m (21.6ms)[0m [1mCREATE TABLE "participants" ("id" serial primary key, "email" character varying DEFAULT '' NOT NULL, "phone_number" character varying, "study_id" character varying, "created_at" timestamp, "updated_at" timestamp) [0m
|
371978
371978
|
[1m[35m (0.3ms)[0m ROLLBACK
|
371979
|
+
[1m[36m (18.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
371980
|
+
[1m[35m (18.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
371981
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
371982
|
+
Migrating to CreateParticipants (20141020185953)
|
371983
|
+
[1m[35m (0.3ms)[0m BEGIN
|
371984
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020185953_create_participants.rb:8)
|
371985
|
+
[1m[36m (22.1ms)[0m [1mCREATE TABLE "participants" ("id" serial primary key, "email" character varying DEFAULT '' NOT NULL, "phone_number" character varying, "study_id" character varying, "created_at" timestamp, "updated_at" timestamp) [0m
|
371986
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_participants_on_email" ON "participants" ("email")
|
371987
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_participants_on_phone_number" ON "participants" ("phone_number")[0m
|
371988
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_participants_on_study_id" ON "participants" ("study_id")
|
371989
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141020185953"]]
|
371990
|
+
[1m[35m (5.4ms)[0m COMMIT
|
371991
|
+
Migrating to CreateMemberships (20141020190822)
|
371992
|
+
[1m[36m (5.4ms)[0m [1mBEGIN[0m
|
371993
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020190822_create_memberships.rb:9)
|
371994
|
+
[1m[35m (7.4ms)[0m CREATE TABLE "memberships" ("id" serial primary key, "group_id" integer NOT NULL, "participant_id" integer NOT NULL, "end_date" date, "start_date" date, "created_at" timestamp, "updated_at" timestamp)
|
371995
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141020190822"]]
|
371996
|
+
[1m[35m (10.5ms)[0m COMMIT
|
371997
|
+
Migrating to CreateCoachAssignments (20141020190824)
|
371998
|
+
[1m[36m (6.0ms)[0m [1mBEGIN[0m
|
371999
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020190824_create_coach_assignments.rb:7)
|
372000
|
+
[1m[35m (9.0ms)[0m CREATE TABLE "coach_assignments" ("id" serial primary key, "coach_id" integer NOT NULL, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
372001
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141020190824"]]
|
372002
|
+
[1m[35m (5.0ms)[0m COMMIT
|
372003
|
+
Migrating to CreateUsers (20141020191622)
|
372004
|
+
[1m[36m (11.6ms)[0m [1mBEGIN[0m
|
372005
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020191622_create_users.rb:6)
|
372006
|
+
[1m[35m (13.6ms)[0m CREATE TABLE "users" ("id" serial primary key, "email" character varying, "created_at" timestamp, "updated_at" timestamp)
|
372007
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141020191622"]]
|
372008
|
+
[1m[35m (0.5ms)[0m COMMIT
|
372009
|
+
Migrating to CreateGroups (20141020191754)
|
372010
|
+
[1m[36m (11.6ms)[0m [1mBEGIN[0m
|
372011
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020191754_create_groups.rb:6)
|
372012
|
+
[1m[35m (13.3ms)[0m CREATE TABLE "groups" ("id" serial primary key, "title" character varying, "created_at" timestamp, "updated_at" timestamp)
|
372013
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141020191754"]]
|
372014
|
+
[1m[35m (0.5ms)[0m COMMIT
|
372015
|
+
Migrating to AddColumnIsAdminToUsers (20141104135632)
|
372016
|
+
[1m[36m (5.4ms)[0m [1mBEGIN[0m
|
372017
|
+
[1m[35m (21.0ms)[0m ALTER TABLE "users" ADD "is_admin" boolean DEFAULT 'f' NOT NULL
|
372018
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141104135632"]]
|
372019
|
+
[1m[35m (1.3ms)[0m COMMIT
|
372020
|
+
Migrating to CreateUserRoles (20141104141420)
|
372021
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
372022
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141104141420_create_user_roles.rb:7)
|
372023
|
+
[1m[35m (20.5ms)[0m CREATE TABLE "user_roles" ("id" serial primary key, "user_id" integer, "role_class_name" character varying, "created_at" timestamp, "updated_at" timestamp)
|
372024
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141104141420"]]
|
372025
|
+
[1m[35m (5.1ms)[0m COMMIT
|
372026
|
+
Migrating to CreateThinkFeelDoDashboardModerators (20141105203408)
|
372027
|
+
[1m[36m (5.5ms)[0m [1mBEGIN[0m
|
372028
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/db/migrate/20141105203408_create_think_feel_do_dashboard_moderators.rb:7)
|
372029
|
+
[1m[35m (13.1ms)[0m CREATE TABLE "think_feel_do_dashboard_moderators" ("id" serial primary key, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
372030
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141105203408"]]
|
372031
|
+
[1m[35m (5.1ms)[0m COMMIT
|
372032
|
+
Migrating to AddColumnDisplayNameToParticipants (20141106202954)
|
372033
|
+
[1m[36m (6.1ms)[0m [1mBEGIN[0m
|
372034
|
+
[1m[35m (22.4ms)[0m ALTER TABLE "participants" ADD "display_name" character varying DEFAULT '' NOT NULL
|
372035
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141106202954"]]
|
372036
|
+
[1m[35m (1.1ms)[0m COMMIT
|
372037
|
+
Migrating to AddColumnContactPreferenceToParticipant (20141106211650)
|
372038
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
372039
|
+
[1m[35m (26.8ms)[0m ALTER TABLE "participants" ADD "contact_preference" character varying DEFAULT ''
|
372040
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141106211650"]]
|
372041
|
+
[1m[35m (1.1ms)[0m COMMIT
|
372042
|
+
Migrating to AddColumnsToUser (20141107170701)
|
372043
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
372044
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "users" ADD "password" character varying
|
372045
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "password_confirmation" character varying[0m
|
372046
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141107170701"]]
|
372047
|
+
[1m[36m (5.9ms)[0m [1mCOMMIT[0m
|
372048
|
+
Migrating to AddColumnsPasswordAndPasswordConfirmationToParticipants (20141111140835)
|
372049
|
+
[1m[35m (0.1ms)[0m BEGIN
|
372050
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "participants" ADD "password" character varying[0m
|
372051
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "participants" ADD "password_confirmation" character varying
|
372052
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141111140835"]]
|
372053
|
+
[1m[35m (11.0ms)[0m COMMIT
|
372054
|
+
Migrating to CreateArms (20141120202053)
|
372055
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
372056
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141120202053_create_arms.rb:7)
|
372057
|
+
[1m[35m (15.1ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying DEFAULT '', "is_social" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)
|
372058
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141120202053"]]
|
372059
|
+
[1m[35m (5.3ms)[0m COMMIT
|
372060
|
+
Migrating to AddArmIdToGroups (20141121201134)
|
372061
|
+
[1m[36m (6.4ms)[0m [1mBEGIN[0m
|
372062
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "groups" ADD "arm_id" integer
|
372063
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141121201134"]]
|
372064
|
+
[1m[35m (5.9ms)[0m COMMIT
|
372065
|
+
Migrating to AddDeviseToUsers (20141125225148)
|
372066
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
372067
|
+
[1m[35m (19.3ms)[0m ALTER TABLE "users" ADD "encrypted_password" character varying DEFAULT '' NOT NULL
|
372068
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "reset_password_token" character varying[0m
|
372069
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "users" ADD "reset_password_sent_at" timestamp
|
372070
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "remember_created_at" timestamp[0m
|
372071
|
+
[1m[35m (7.4ms)[0m ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
|
372072
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "current_sign_in_at" timestamp[0m
|
372073
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "users" ADD "last_sign_in_at" timestamp
|
372074
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "users" ADD "current_sign_in_ip" inet[0m
|
372075
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "users" ADD "last_sign_in_ip" inet
|
372076
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
372077
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
372078
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141125225148"]]
|
372079
|
+
[1m[35m (1.3ms)[0m COMMIT
|
372080
|
+
Migrating to CreateSlideshowAnchors (20141125230628)
|
372081
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
372082
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141125230628_create_slideshow_anchors.rb:7)
|
372083
|
+
[1m[35m (8.5ms)[0m CREATE TABLE "slideshow_anchors" ("id" serial primary key, "bit_core_slideshow_id" integer, "target_name" character varying, "created_at" timestamp, "updated_at" timestamp)
|
372084
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141125230628"]]
|
372085
|
+
[1m[35m (6.3ms)[0m COMMIT
|
372086
|
+
Migrating to RemoveColumnsPasswordAndPasswordConfirmationFromUsers (20141126151510)
|
372087
|
+
[1m[36m (5.6ms)[0m [1mBEGIN[0m
|
372088
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "users" DROP "password"
|
372089
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" DROP "password_confirmation"[0m
|
372090
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141126151510"]]
|
372091
|
+
[1m[36m (11.5ms)[0m [1mCOMMIT[0m
|
372092
|
+
Migrating to AddDeviseToParticipants (20141203195016)
|
372093
|
+
[1m[35m (0.1ms)[0m BEGIN
|
372094
|
+
[1m[36m (26.1ms)[0m [1mALTER TABLE "participants" ADD "encrypted_password" character varying DEFAULT '' NOT NULL[0m
|
372095
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "participants" ADD "reset_password_token" character varying
|
372096
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "participants" ADD "reset_password_sent_at" timestamp[0m
|
372097
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "participants" ADD "remember_created_at" timestamp
|
372098
|
+
[1m[36m (5.4ms)[0m [1mALTER TABLE "participants" ADD "sign_in_count" integer DEFAULT 0 NOT NULL[0m
|
372099
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "participants" ADD "current_sign_in_at" timestamp
|
372100
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "participants" ADD "last_sign_in_at" timestamp[0m
|
372101
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "participants" ADD "current_sign_in_ip" inet
|
372102
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "participants" ADD "last_sign_in_ip" inet[0m
|
372103
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_participants_on_reset_password_token" ON "participants" ("reset_password_token")
|
372104
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141203195016"]]
|
372105
|
+
[1m[35m (1.8ms)[0m COMMIT
|
372106
|
+
Migrating to RemovePasswordFromParticipants (20141203201524)
|
372107
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
372108
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "participants" DROP "password"
|
372109
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "participants" DROP "password_confirmation"[0m
|
372110
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141203201524"]]
|
372111
|
+
[1m[36m (5.6ms)[0m [1mCOMMIT[0m
|
372112
|
+
Migrating to ChangeDisplayNameNotNullTrue (20141211143757)
|
372113
|
+
[1m[35m (0.2ms)[0m BEGIN
|
372114
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "participants" ALTER "display_name" DROP NOT NULL[0m
|
372115
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141211143757"]]
|
372116
|
+
[1m[36m (11.5ms)[0m [1mCOMMIT[0m
|
372117
|
+
Migrating to AddHasWozToArm (20141214203919)
|
372118
|
+
[1m[35m (0.1ms)[0m BEGIN
|
372119
|
+
[1m[36m (15.3ms)[0m [1mALTER TABLE "arms" ADD "has_woz" boolean DEFAULT 'f'[0m
|
372120
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141214203919"]]
|
372121
|
+
[1m[36m (6.8ms)[0m [1mCOMMIT[0m
|
372122
|
+
Migrating to AddColumnModeratorIdToGroup (20141215203425)
|
372123
|
+
[1m[35m (0.2ms)[0m BEGIN
|
372124
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "groups" ADD "moderator_id" integer[0m
|
372125
|
+
[1m[35mGroup Load (0.4ms)[0m SELECT "groups".* FROM "groups"
|
372126
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141215203425"]]
|
372127
|
+
[1m[35m (6.2ms)[0m COMMIT
|
372128
|
+
Migrating to AddIsAdminToParticipant (20141216165853)
|
372129
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
372130
|
+
[1m[35m (0.6ms)[0m ALTER TABLE "participants" ADD "is_admin" boolean
|
372131
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141216165853"]]
|
372132
|
+
[1m[35m (11.7ms)[0m COMMIT
|
372133
|
+
Migrating to CreateSocialNetworkingProfiles (20141217180455)
|
372134
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
372135
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141217180455_create_social_networking_profiles.rb:8)
|
372136
|
+
[1m[35m (15.2ms)[0m CREATE TABLE "social_networking_profiles" ("id" serial primary key, "participant_id" integer, "icon_name" character varying, "active" boolean, "created_at" timestamp, "updated_at" timestamp)
|
372137
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141217180455"]]
|
372138
|
+
[1m[35m (11.7ms)[0m COMMIT
|
372139
|
+
Migrating to CreateGroupReferenceToProfileQuestion (20141217200114)
|
372140
|
+
[1m[36m (6.0ms)[0m [1mBEGIN[0m
|
372141
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141217200114_create_group_reference_to_profile_question.rb:7)
|
372142
|
+
[1m[35m (14.2ms)[0m CREATE TABLE "social_networking_profile_questions" ("id" serial primary key, "group_id" integer, "question_text" text, "created_at" timestamp, "updated_at" timestamp)
|
372143
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141217200114"]]
|
372144
|
+
[1m[35m (2.8ms)[0m COMMIT
|
372145
|
+
Migrating to DropThinkFeelDoDashboardModerator (20141219032108)
|
372146
|
+
[1m[36m (11.5ms)[0m [1mBEGIN[0m
|
372147
|
+
[1m[35m (0.7ms)[0m DROP TABLE "think_feel_do_dashboard_moderators"
|
372148
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141219032108"]]
|
372149
|
+
[1m[35m (5.9ms)[0m COMMIT
|
372150
|
+
Migrating to CreateSocialNetworkingSharedItems (20141229160455)
|
372151
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
372152
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141229160455_create_social_networking_shared_items.rb:7)
|
372153
|
+
[1m[35m (7.8ms)[0m CREATE TABLE "social_networking_shared_items" ("id" serial primary key, "participant_id" integer, "is_public" boolean, "created_at" timestamp, "updated_at" timestamp)
|
372154
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141229160455"]]
|
372155
|
+
[1m[35m (11.8ms)[0m COMMIT
|
372156
|
+
Migrating to AddIsCompleteToMembership (20150127204928)
|
372157
|
+
[1m[36m (6.0ms)[0m [1mBEGIN[0m
|
372158
|
+
[1m[35m (7.5ms)[0m ALTER TABLE "memberships" ADD "is_complete" boolean DEFAULT 'f'
|
372159
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150127204928"]]
|
372160
|
+
[1m[35m (12.0ms)[0m COMMIT
|
372161
|
+
Migrating to DropThinkFeelDoDashboardModerators (20150213215118)
|
372162
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
372163
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150213215118"]]
|
372164
|
+
[1m[36m (5.8ms)[0m [1mCOMMIT[0m
|
372165
|
+
Migrating to AddCanMessageAfterMembershipCompleteToArms (20150410174157)
|
372166
|
+
[1m[35m (0.2ms)[0m BEGIN
|
372167
|
+
[1m[36m (16.1ms)[0m [1mALTER TABLE "arms" ADD "can_message_after_membership_complete" boolean DEFAULT 't' NOT NULL[0m
|
372168
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150410174157"]]
|
372169
|
+
[1m[36m (5.1ms)[0m [1mCOMMIT[0m
|
372170
|
+
Migrating to PopulateArmMessageFlag (20150410175659)
|
372171
|
+
[1m[35m (0.2ms)[0m BEGIN
|
372172
|
+
[1m[36mArm Load (0.4ms)[0m [1mSELECT "arms".* FROM "arms"[0m
|
372173
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150410175659"]]
|
372174
|
+
[1m[36m (5.5ms)[0m [1mCOMMIT[0m
|
372175
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
372176
|
+
[1m[36m (2.3ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372177
|
+
FROM pg_constraint c
|
372178
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372179
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372180
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372181
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372182
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372183
|
+
WHERE c.contype = 'f'
|
372184
|
+
AND t1.relname = 'arms'
|
372185
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372186
|
+
ORDER BY c.conname
|
372187
|
+
[0m
|
372188
|
+
[1m[35m (1.6ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372189
|
+
FROM pg_constraint c
|
372190
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372191
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372192
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372193
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372194
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372195
|
+
WHERE c.contype = 'f'
|
372196
|
+
AND t1.relname = 'coach_assignments'
|
372197
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372198
|
+
ORDER BY c.conname
|
372199
|
+
|
372200
|
+
[1m[36m (2.7ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372201
|
+
FROM pg_constraint c
|
372202
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372203
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372204
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372205
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372206
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372207
|
+
WHERE c.contype = 'f'
|
372208
|
+
AND t1.relname = 'groups'
|
372209
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372210
|
+
ORDER BY c.conname
|
372211
|
+
[0m
|
372212
|
+
[1m[35m (3.4ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372213
|
+
FROM pg_constraint c
|
372214
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372215
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372216
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372217
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372218
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372219
|
+
WHERE c.contype = 'f'
|
372220
|
+
AND t1.relname = 'memberships'
|
372221
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372222
|
+
ORDER BY c.conname
|
372223
|
+
|
372224
|
+
[1m[36m (2.7ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372225
|
+
FROM pg_constraint c
|
372226
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372227
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372228
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372229
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372230
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372231
|
+
WHERE c.contype = 'f'
|
372232
|
+
AND t1.relname = 'participants'
|
372233
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372234
|
+
ORDER BY c.conname
|
372235
|
+
[0m
|
372236
|
+
[1m[35m (2.3ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372237
|
+
FROM pg_constraint c
|
372238
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372239
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372240
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372241
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372242
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372243
|
+
WHERE c.contype = 'f'
|
372244
|
+
AND t1.relname = 'slideshow_anchors'
|
372245
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372246
|
+
ORDER BY c.conname
|
372247
|
+
|
372248
|
+
[1m[36m (1.8ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372249
|
+
FROM pg_constraint c
|
372250
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372251
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372252
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372253
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372254
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372255
|
+
WHERE c.contype = 'f'
|
372256
|
+
AND t1.relname = 'social_networking_profile_questions'
|
372257
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372258
|
+
ORDER BY c.conname
|
372259
|
+
[0m
|
372260
|
+
[1m[35m (1.7ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372261
|
+
FROM pg_constraint c
|
372262
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372263
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372264
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372265
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372266
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372267
|
+
WHERE c.contype = 'f'
|
372268
|
+
AND t1.relname = 'social_networking_profiles'
|
372269
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372270
|
+
ORDER BY c.conname
|
372271
|
+
|
372272
|
+
[1m[36m (1.7ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372273
|
+
FROM pg_constraint c
|
372274
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372275
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372276
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372277
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372278
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372279
|
+
WHERE c.contype = 'f'
|
372280
|
+
AND t1.relname = 'social_networking_shared_items'
|
372281
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372282
|
+
ORDER BY c.conname
|
372283
|
+
[0m
|
372284
|
+
[1m[35m (1.8ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372285
|
+
FROM pg_constraint c
|
372286
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372287
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372288
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372289
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372290
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372291
|
+
WHERE c.contype = 'f'
|
372292
|
+
AND t1.relname = 'user_roles'
|
372293
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372294
|
+
ORDER BY c.conname
|
372295
|
+
|
372296
|
+
[1m[36m (3.8ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
372297
|
+
FROM pg_constraint c
|
372298
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
372299
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
372300
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
372301
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
372302
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
372303
|
+
WHERE c.contype = 'f'
|
372304
|
+
AND t1.relname = 'users'
|
372305
|
+
AND t3.nspname = ANY (current_schemas(false))
|
372306
|
+
ORDER BY c.conname
|
372307
|
+
[0m
|
data/spec/dummy/log/test.log
CHANGED
@@ -3254365,3 +3254365,1036 @@ Redirected to http://test.host/think_feel_do_dashboard/
|
|
3254365
3254365
|
Filter chain halted as :set_group rendered or redirected
|
3254366
3254366
|
Completed 302 Found in 5ms (ActiveRecord: 0.4ms)
|
3254367
3254367
|
[1m[35m (0.3ms)[0m ROLLBACK
|
3254368
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254369
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254370
|
+
Completed 401 Unauthorized in 15ms (ActiveRecord: 0.0ms)
|
3254371
|
+
Rendered text template (0.1ms)
|
3254372
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254373
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3254374
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254375
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3254376
|
+
Rendered text template (0.1ms)
|
3254377
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254378
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254379
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254380
|
+
Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
|
3254381
|
+
Rendered text template (0.1ms)
|
3254382
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
3254383
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254384
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254385
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3254386
|
+
Rendered text template (0.3ms)
|
3254387
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254388
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254389
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254390
|
+
Completed 401 Unauthorized in 14ms (ActiveRecord: 0.0ms)
|
3254391
|
+
Rendered text template (0.1ms)
|
3254392
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254393
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254394
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254395
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
3254396
|
+
Rendered text template (0.1ms)
|
3254397
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
3254398
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254399
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254400
|
+
Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
|
3254401
|
+
Rendered text template (0.1ms)
|
3254402
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254403
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254404
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254405
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3254406
|
+
Rendered text template (0.3ms)
|
3254407
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254408
|
+
[1m[36m (0.4ms)[0m [1mBEGIN[0m
|
3254409
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254410
|
+
Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
|
3254411
|
+
Rendered text template (0.1ms)
|
3254412
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254413
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254414
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254415
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3254416
|
+
Rendered text template (0.2ms)
|
3254417
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
3254418
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254419
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254420
|
+
Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
|
3254421
|
+
Rendered text template (0.1ms)
|
3254422
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254423
|
+
[1m[36m (0.4ms)[0m [1mBEGIN[0m
|
3254424
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254425
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3254426
|
+
Rendered text template (0.2ms)
|
3254427
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254428
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254429
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254430
|
+
Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
|
3254431
|
+
Rendered text template (0.1ms)
|
3254432
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254433
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3254434
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254435
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3254436
|
+
Rendered text template (0.1ms)
|
3254437
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254438
|
+
[1m[36m (0.4ms)[0m [1mBEGIN[0m
|
3254439
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254440
|
+
Completed 401 Unauthorized in 16ms (ActiveRecord: 0.0ms)
|
3254441
|
+
Rendered text template (0.1ms)
|
3254442
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254443
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254444
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254445
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3254446
|
+
Rendered text template (0.1ms)
|
3254447
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254448
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3254449
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254450
|
+
Rendered /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/app/views/think_feel_do_dashboard/arms/new.html.erb within layouts/application (0.8ms)
|
3254451
|
+
Completed 500 Internal Server Error in 26ms (Views: 19.8ms | ActiveRecord: 0.0ms)
|
3254452
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254453
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254454
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254455
|
+
Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
|
3254456
|
+
Rendered text template (0.1ms)
|
3254457
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254458
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3254459
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254460
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3254461
|
+
Completed 302 Found in 89ms (ActiveRecord: 4.4ms)
|
3254462
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254463
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3254464
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254465
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3254466
|
+
Rendered text template (0.1ms)
|
3254467
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254468
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254469
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254470
|
+
Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
|
3254471
|
+
Rendered text template (0.2ms)
|
3254472
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254473
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254474
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254475
|
+
Redirected to http://test.host/
|
3254476
|
+
Completed 302 Found in 15ms (ActiveRecord: 0.0ms)
|
3254477
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254478
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3254479
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254480
|
+
Completed 401 Unauthorized in 15ms (ActiveRecord: 0.0ms)
|
3254481
|
+
Rendered text template (0.1ms)
|
3254482
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254483
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254484
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254485
|
+
Redirected to http://test.host/
|
3254486
|
+
Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
|
3254487
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
3254488
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254489
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254490
|
+
Redirected to http://test.host/
|
3254491
|
+
Completed 302 Found in 17ms (ActiveRecord: 0.0ms)
|
3254492
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254493
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254494
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254495
|
+
Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
|
3254496
|
+
Rendered text template (0.1ms)
|
3254497
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254498
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254499
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254500
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3254501
|
+
Rendered text template (0.1ms)
|
3254502
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254503
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254504
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254505
|
+
Redirected to http://test.host/
|
3254506
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
|
3254507
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
3254508
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254509
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254510
|
+
Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
|
3254511
|
+
Rendered text template (0.1ms)
|
3254512
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254513
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254514
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254515
|
+
Redirected to http://test.host/
|
3254516
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
|
3254517
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254518
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254519
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254520
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3254521
|
+
Rendered text template (0.1ms)
|
3254522
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254523
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254524
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254525
|
+
Redirected to http://test.host/
|
3254526
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
|
3254527
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254528
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254529
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254530
|
+
Redirected to http://test.host/
|
3254531
|
+
Completed 302 Found in 16ms (ActiveRecord: 0.0ms)
|
3254532
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254533
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254534
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254535
|
+
Completed 401 Unauthorized in 5ms (ActiveRecord: 0.0ms)
|
3254536
|
+
Rendered text template (0.3ms)
|
3254537
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254538
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254539
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254540
|
+
Redirected to http://test.host/
|
3254541
|
+
Completed 302 Found in 18ms (ActiveRecord: 0.0ms)
|
3254542
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254543
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254544
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254545
|
+
Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
|
3254546
|
+
Rendered text template (0.1ms)
|
3254547
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254548
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254549
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254550
|
+
Redirected to http://test.host/
|
3254551
|
+
Completed 302 Found in 17ms (ActiveRecord: 0.0ms)
|
3254552
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
3254553
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3254554
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254555
|
+
Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
|
3254556
|
+
Rendered text template (0.1ms)
|
3254557
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254558
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254559
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254560
|
+
Completed 401 Unauthorized in 14ms (ActiveRecord: 0.0ms)
|
3254561
|
+
Rendered text template (0.1ms)
|
3254562
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254563
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254564
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254565
|
+
Redirected to http://test.host/
|
3254566
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.0ms)
|
3254567
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
3254568
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254569
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254570
|
+
Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
|
3254571
|
+
Rendered text template (0.1ms)
|
3254572
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254573
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254574
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254575
|
+
Redirected to http://test.host/
|
3254576
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.0ms)
|
3254577
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254578
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254579
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
3254580
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254581
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254582
|
+
[1m[36m (19.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
3254583
|
+
[1m[35m (18.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3254584
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3254585
|
+
Migrating to CreateParticipants (20141020185953)
|
3254586
|
+
[1m[35m (0.2ms)[0m BEGIN
|
3254587
|
+
[1m[36m (24.4ms)[0m [1mCREATE TABLE "participants" ("id" serial primary key, "email" character varying DEFAULT '' NOT NULL, "phone_number" character varying, "study_id" character varying, "created_at" timestamp, "updated_at" timestamp) [0m
|
3254588
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_participants_on_email" ON "participants" ("email")
|
3254589
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_participants_on_phone_number" ON "participants" ("phone_number")[0m
|
3254590
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_participants_on_study_id" ON "participants" ("study_id")
|
3254591
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141020185953"]]
|
3254592
|
+
[1m[35m (6.4ms)[0m COMMIT
|
3254593
|
+
Migrating to CreateMemberships (20141020190822)
|
3254594
|
+
[1m[36m (5.6ms)[0m [1mBEGIN[0m
|
3254595
|
+
[1m[35m (7.6ms)[0m CREATE TABLE "memberships" ("id" serial primary key, "group_id" integer NOT NULL, "participant_id" integer NOT NULL, "end_date" date, "start_date" date, "created_at" timestamp, "updated_at" timestamp)
|
3254596
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141020190822"]]
|
3254597
|
+
[1m[35m (10.6ms)[0m COMMIT
|
3254598
|
+
Migrating to CreateCoachAssignments (20141020190824)
|
3254599
|
+
[1m[36m (5.9ms)[0m [1mBEGIN[0m
|
3254600
|
+
[1m[35m (7.2ms)[0m CREATE TABLE "coach_assignments" ("id" serial primary key, "coach_id" integer NOT NULL, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
3254601
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141020190824"]]
|
3254602
|
+
[1m[35m (10.4ms)[0m COMMIT
|
3254603
|
+
Migrating to CreateUsers (20141020191622)
|
3254604
|
+
[1m[36m (5.9ms)[0m [1mBEGIN[0m
|
3254605
|
+
[1m[35m (19.1ms)[0m CREATE TABLE "users" ("id" serial primary key, "email" character varying, "created_at" timestamp, "updated_at" timestamp)
|
3254606
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141020191622"]]
|
3254607
|
+
[1m[35m (0.4ms)[0m COMMIT
|
3254608
|
+
Migrating to CreateGroups (20141020191754)
|
3254609
|
+
[1m[36m (5.8ms)[0m [1mBEGIN[0m
|
3254610
|
+
[1m[35m (18.4ms)[0m CREATE TABLE "groups" ("id" serial primary key, "title" character varying, "created_at" timestamp, "updated_at" timestamp)
|
3254611
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141020191754"]]
|
3254612
|
+
[1m[35m (0.5ms)[0m COMMIT
|
3254613
|
+
Migrating to AddColumnIsAdminToUsers (20141104135632)
|
3254614
|
+
[1m[36m (5.8ms)[0m [1mBEGIN[0m
|
3254615
|
+
[1m[35m (15.0ms)[0m ALTER TABLE "users" ADD "is_admin" boolean DEFAULT 'f' NOT NULL
|
3254616
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141104135632"]]
|
3254617
|
+
[1m[35m (2.2ms)[0m COMMIT
|
3254618
|
+
Migrating to CreateUserRoles (20141104141420)
|
3254619
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254620
|
+
[1m[35m (19.6ms)[0m CREATE TABLE "user_roles" ("id" serial primary key, "user_id" integer, "role_class_name" character varying, "created_at" timestamp, "updated_at" timestamp)
|
3254621
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141104141420"]]
|
3254622
|
+
[1m[35m (4.8ms)[0m COMMIT
|
3254623
|
+
Migrating to CreateThinkFeelDoDashboardModerators (20141105203408)
|
3254624
|
+
[1m[36m (5.7ms)[0m [1mBEGIN[0m
|
3254625
|
+
[1m[35m (13.9ms)[0m CREATE TABLE "think_feel_do_dashboard_moderators" ("id" serial primary key, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
|
3254626
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141105203408"]]
|
3254627
|
+
[1m[35m (5.2ms)[0m COMMIT
|
3254628
|
+
Migrating to AddColumnDisplayNameToParticipants (20141106202954)
|
3254629
|
+
[1m[36m (5.9ms)[0m [1mBEGIN[0m
|
3254630
|
+
[1m[35m (20.5ms)[0m ALTER TABLE "participants" ADD "display_name" character varying DEFAULT '' NOT NULL
|
3254631
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141106202954"]]
|
3254632
|
+
[1m[35m (1.1ms)[0m COMMIT
|
3254633
|
+
Migrating to AddColumnContactPreferenceToParticipant (20141106211650)
|
3254634
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254635
|
+
[1m[35m (50.3ms)[0m ALTER TABLE "participants" ADD "contact_preference" character varying DEFAULT ''
|
3254636
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141106211650"]]
|
3254637
|
+
[1m[35m (1.2ms)[0m COMMIT
|
3254638
|
+
Migrating to AddColumnsToUser (20141107170701)
|
3254639
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254640
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "users" ADD "password" character varying
|
3254641
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "users" ADD "password_confirmation" character varying[0m
|
3254642
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141107170701"]]
|
3254643
|
+
[1m[36m (5.5ms)[0m [1mCOMMIT[0m
|
3254644
|
+
Migrating to AddColumnsPasswordAndPasswordConfirmationToParticipants (20141111140835)
|
3254645
|
+
[1m[35m (0.2ms)[0m BEGIN
|
3254646
|
+
[1m[36m (0.4ms)[0m [1mALTER TABLE "participants" ADD "password" character varying[0m
|
3254647
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "participants" ADD "password_confirmation" character varying
|
3254648
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141111140835"]]
|
3254649
|
+
[1m[35m (5.6ms)[0m COMMIT
|
3254650
|
+
Migrating to CreateArms (20141120202053)
|
3254651
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254652
|
+
[1m[35m (20.0ms)[0m CREATE TABLE "arms" ("id" serial primary key, "title" character varying DEFAULT '', "is_social" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)
|
3254653
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141120202053"]]
|
3254654
|
+
[1m[35m (5.3ms)[0m COMMIT
|
3254655
|
+
Migrating to AddArmIdToGroups (20141121201134)
|
3254656
|
+
[1m[36m (5.7ms)[0m [1mBEGIN[0m
|
3254657
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "groups" ADD "arm_id" integer
|
3254658
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141121201134"]]
|
3254659
|
+
[1m[35m (11.7ms)[0m COMMIT
|
3254660
|
+
Migrating to AddDeviseToUsers (20141125225148)
|
3254661
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254662
|
+
[1m[35m (14.7ms)[0m ALTER TABLE "users" ADD "encrypted_password" character varying DEFAULT '' NOT NULL
|
3254663
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "reset_password_token" character varying[0m
|
3254664
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "users" ADD "reset_password_sent_at" timestamp
|
3254665
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "remember_created_at" timestamp[0m
|
3254666
|
+
[1m[35m (9.0ms)[0m ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
|
3254667
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "current_sign_in_at" timestamp[0m
|
3254668
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "users" ADD "last_sign_in_at" timestamp
|
3254669
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "current_sign_in_ip" inet[0m
|
3254670
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "users" ADD "last_sign_in_ip" inet
|
3254671
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
3254672
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
3254673
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141125225148"]]
|
3254674
|
+
[1m[35m (1.4ms)[0m COMMIT
|
3254675
|
+
Migrating to CreateSlideshowAnchors (20141125230628)
|
3254676
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254677
|
+
[1m[35m (20.3ms)[0m CREATE TABLE "slideshow_anchors" ("id" serial primary key, "bit_core_slideshow_id" integer, "target_name" character varying, "created_at" timestamp, "updated_at" timestamp)
|
3254678
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141125230628"]]
|
3254679
|
+
[1m[35m (5.3ms)[0m COMMIT
|
3254680
|
+
Migrating to RemoveColumnsPasswordAndPasswordConfirmationFromUsers (20141126151510)
|
3254681
|
+
[1m[36m (5.9ms)[0m [1mBEGIN[0m
|
3254682
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "users" DROP "password"
|
3254683
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "users" DROP "password_confirmation"[0m
|
3254684
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141126151510"]]
|
3254685
|
+
[1m[36m (11.4ms)[0m [1mCOMMIT[0m
|
3254686
|
+
Migrating to AddDeviseToParticipants (20141203195016)
|
3254687
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3254688
|
+
[1m[36m (37.3ms)[0m [1mALTER TABLE "participants" ADD "encrypted_password" character varying DEFAULT '' NOT NULL[0m
|
3254689
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "participants" ADD "reset_password_token" character varying
|
3254690
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "participants" ADD "reset_password_sent_at" timestamp[0m
|
3254691
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "participants" ADD "remember_created_at" timestamp
|
3254692
|
+
[1m[36m (16.3ms)[0m [1mALTER TABLE "participants" ADD "sign_in_count" integer DEFAULT 0 NOT NULL[0m
|
3254693
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "participants" ADD "current_sign_in_at" timestamp
|
3254694
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "participants" ADD "last_sign_in_at" timestamp[0m
|
3254695
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "participants" ADD "current_sign_in_ip" inet
|
3254696
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "participants" ADD "last_sign_in_ip" inet[0m
|
3254697
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_participants_on_reset_password_token" ON "participants" ("reset_password_token")
|
3254698
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141203195016"]]
|
3254699
|
+
[1m[35m (1.9ms)[0m COMMIT
|
3254700
|
+
Migrating to RemovePasswordFromParticipants (20141203201524)
|
3254701
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254702
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "participants" DROP "password"
|
3254703
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "participants" DROP "password_confirmation"[0m
|
3254704
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141203201524"]]
|
3254705
|
+
[1m[36m (6.3ms)[0m [1mCOMMIT[0m
|
3254706
|
+
Migrating to ChangeDisplayNameNotNullTrue (20141211143757)
|
3254707
|
+
[1m[35m (0.3ms)[0m BEGIN
|
3254708
|
+
[1m[36m (0.6ms)[0m [1mALTER TABLE "participants" ALTER "display_name" DROP NOT NULL[0m
|
3254709
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141211143757"]]
|
3254710
|
+
[1m[36m (11.8ms)[0m [1mCOMMIT[0m
|
3254711
|
+
Migrating to AddHasWozToArm (20141214203919)
|
3254712
|
+
[1m[35m (0.3ms)[0m BEGIN
|
3254713
|
+
[1m[36m (15.5ms)[0m [1mALTER TABLE "arms" ADD "has_woz" boolean DEFAULT 'f'[0m
|
3254714
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141214203919"]]
|
3254715
|
+
[1m[36m (5.9ms)[0m [1mCOMMIT[0m
|
3254716
|
+
Migrating to AddColumnModeratorIdToGroup (20141215203425)
|
3254717
|
+
[1m[35m (0.2ms)[0m BEGIN
|
3254718
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "groups" ADD "moderator_id" integer[0m
|
3254719
|
+
[1m[35mGroup Load (0.4ms)[0m SELECT "groups".* FROM "groups"
|
3254720
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141215203425"]]
|
3254721
|
+
[1m[35m (5.5ms)[0m COMMIT
|
3254722
|
+
Migrating to AddIsAdminToParticipant (20141216165853)
|
3254723
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254724
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "participants" ADD "is_admin" boolean
|
3254725
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141216165853"]]
|
3254726
|
+
[1m[35m (11.6ms)[0m COMMIT
|
3254727
|
+
Migrating to CreateSocialNetworkingProfiles (20141217180455)
|
3254728
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254729
|
+
[1m[35m (14.0ms)[0m CREATE TABLE "social_networking_profiles" ("id" serial primary key, "participant_id" integer, "icon_name" character varying, "active" boolean, "created_at" timestamp, "updated_at" timestamp)
|
3254730
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141217180455"]]
|
3254731
|
+
[1m[35m (9.2ms)[0m COMMIT
|
3254732
|
+
Migrating to CreateGroupReferenceToProfileQuestion (20141217200114)
|
3254733
|
+
[1m[36m (5.3ms)[0m [1mBEGIN[0m
|
3254734
|
+
[1m[35m (19.0ms)[0m CREATE TABLE "social_networking_profile_questions" ("id" serial primary key, "group_id" integer, "question_text" text, "created_at" timestamp, "updated_at" timestamp)
|
3254735
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141217200114"]]
|
3254736
|
+
[1m[35m (0.4ms)[0m COMMIT
|
3254737
|
+
Migrating to DropThinkFeelDoDashboardModerator (20141219032108)
|
3254738
|
+
[1m[36m (5.7ms)[0m [1mBEGIN[0m
|
3254739
|
+
[1m[35m (0.7ms)[0m DROP TABLE "think_feel_do_dashboard_moderators"
|
3254740
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141219032108"]]
|
3254741
|
+
[1m[35m (6.1ms)[0m COMMIT
|
3254742
|
+
Migrating to CreateSocialNetworkingSharedItems (20141229160455)
|
3254743
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254744
|
+
[1m[35m (14.3ms)[0m CREATE TABLE "social_networking_shared_items" ("id" serial primary key, "participant_id" integer, "is_public" boolean, "created_at" timestamp, "updated_at" timestamp)
|
3254745
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20141229160455"]]
|
3254746
|
+
[1m[35m (6.0ms)[0m COMMIT
|
3254747
|
+
Migrating to AddIsCompleteToMembership (20150127204928)
|
3254748
|
+
[1m[36m (5.6ms)[0m [1mBEGIN[0m
|
3254749
|
+
[1m[35m (13.5ms)[0m ALTER TABLE "memberships" ADD "is_complete" boolean DEFAULT 'f'
|
3254750
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150127204928"]]
|
3254751
|
+
[1m[35m (5.8ms)[0m COMMIT
|
3254752
|
+
Migrating to DropThinkFeelDoDashboardModerators (20150213215118)
|
3254753
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3254754
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150213215118"]]
|
3254755
|
+
[1m[36m (6.3ms)[0m [1mCOMMIT[0m
|
3254756
|
+
Migrating to AddCanMessageAfterMembershipCompleteToArms (20150410174157)
|
3254757
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3254758
|
+
[1m[36m (21.0ms)[0m [1mALTER TABLE "arms" ADD "can_message_after_membership_complete" boolean DEFAULT 't' NOT NULL[0m
|
3254759
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150410174157"]]
|
3254760
|
+
[1m[36m (1.0ms)[0m [1mCOMMIT[0m
|
3254761
|
+
Migrating to PopulateArmMessageFlag (20150410175659)
|
3254762
|
+
[1m[35m (0.1ms)[0m BEGIN
|
3254763
|
+
[1m[36mArm Load (0.5ms)[0m [1mSELECT "arms".* FROM "arms"[0m
|
3254764
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150410175659"]]
|
3254765
|
+
[1m[36m (11.7ms)[0m [1mCOMMIT[0m
|
3254766
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
3254767
|
+
[1m[36m (3.6ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254768
|
+
FROM pg_constraint c
|
3254769
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254770
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254771
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254772
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254773
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254774
|
+
WHERE c.contype = 'f'
|
3254775
|
+
AND t1.relname = 'arms'
|
3254776
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254777
|
+
ORDER BY c.conname
|
3254778
|
+
[0m
|
3254779
|
+
[1m[35m (1.9ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254780
|
+
FROM pg_constraint c
|
3254781
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254782
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254783
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254784
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254785
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254786
|
+
WHERE c.contype = 'f'
|
3254787
|
+
AND t1.relname = 'coach_assignments'
|
3254788
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254789
|
+
ORDER BY c.conname
|
3254790
|
+
|
3254791
|
+
[1m[36m (1.7ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254792
|
+
FROM pg_constraint c
|
3254793
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254794
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254795
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254796
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254797
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254798
|
+
WHERE c.contype = 'f'
|
3254799
|
+
AND t1.relname = 'groups'
|
3254800
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254801
|
+
ORDER BY c.conname
|
3254802
|
+
[0m
|
3254803
|
+
[1m[35m (1.7ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254804
|
+
FROM pg_constraint c
|
3254805
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254806
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254807
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254808
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254809
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254810
|
+
WHERE c.contype = 'f'
|
3254811
|
+
AND t1.relname = 'memberships'
|
3254812
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254813
|
+
ORDER BY c.conname
|
3254814
|
+
|
3254815
|
+
[1m[36m (1.7ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254816
|
+
FROM pg_constraint c
|
3254817
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254818
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254819
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254820
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254821
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254822
|
+
WHERE c.contype = 'f'
|
3254823
|
+
AND t1.relname = 'participants'
|
3254824
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254825
|
+
ORDER BY c.conname
|
3254826
|
+
[0m
|
3254827
|
+
[1m[35m (1.7ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254828
|
+
FROM pg_constraint c
|
3254829
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254830
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254831
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254832
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254833
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254834
|
+
WHERE c.contype = 'f'
|
3254835
|
+
AND t1.relname = 'slideshow_anchors'
|
3254836
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254837
|
+
ORDER BY c.conname
|
3254838
|
+
|
3254839
|
+
[1m[36m (1.8ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254840
|
+
FROM pg_constraint c
|
3254841
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254842
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254843
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254844
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254845
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254846
|
+
WHERE c.contype = 'f'
|
3254847
|
+
AND t1.relname = 'social_networking_profile_questions'
|
3254848
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254849
|
+
ORDER BY c.conname
|
3254850
|
+
[0m
|
3254851
|
+
[1m[35m (2.3ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254852
|
+
FROM pg_constraint c
|
3254853
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254854
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254855
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254856
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254857
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254858
|
+
WHERE c.contype = 'f'
|
3254859
|
+
AND t1.relname = 'social_networking_profiles'
|
3254860
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254861
|
+
ORDER BY c.conname
|
3254862
|
+
|
3254863
|
+
[1m[36m (2.0ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254864
|
+
FROM pg_constraint c
|
3254865
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254866
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254867
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254868
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254869
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254870
|
+
WHERE c.contype = 'f'
|
3254871
|
+
AND t1.relname = 'social_networking_shared_items'
|
3254872
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254873
|
+
ORDER BY c.conname
|
3254874
|
+
[0m
|
3254875
|
+
[1m[35m (2.1ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254876
|
+
FROM pg_constraint c
|
3254877
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254878
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254879
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254880
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254881
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254882
|
+
WHERE c.contype = 'f'
|
3254883
|
+
AND t1.relname = 'user_roles'
|
3254884
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254885
|
+
ORDER BY c.conname
|
3254886
|
+
|
3254887
|
+
[1m[36m (2.1ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
3254888
|
+
FROM pg_constraint c
|
3254889
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
3254890
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
3254891
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
3254892
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
3254893
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
3254894
|
+
WHERE c.contype = 'f'
|
3254895
|
+
AND t1.relname = 'users'
|
3254896
|
+
AND t3.nspname = ANY (current_schemas(false))
|
3254897
|
+
ORDER BY c.conname
|
3254898
|
+
[0m
|
3254899
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254900
|
+
Processing by ThinkFeelDoDashboard::ReportsController#show as CSV
|
3254901
|
+
Parameters: {"id"=>"reports"}
|
3254902
|
+
Sent file /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/reports/{}.csv (0.3ms)
|
3254903
|
+
Redirected to http://test.host/think_feel_do_dashboard/reports
|
3254904
|
+
Completed 302 Found in 35ms (ActiveRecord: 0.0ms)
|
3254905
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254906
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254907
|
+
Processing by ThinkFeelDoDashboard::ReportsController#show as CSV
|
3254908
|
+
Parameters: {"id"=>"reports"}
|
3254909
|
+
Sent file /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/reports/{}.csv (0.2ms)
|
3254910
|
+
Redirected to http://test.host/think_feel_do_dashboard/reports
|
3254911
|
+
Completed 302 Found in 33ms (ActiveRecord: 0.0ms)
|
3254912
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254913
|
+
[1m[36m (0.4ms)[0m [1mBEGIN[0m
|
3254914
|
+
Processing by ThinkFeelDoDashboard::ReportsController#show as CSV
|
3254915
|
+
Parameters: {"id"=>"reports"}
|
3254916
|
+
Sent file /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/reports/{}.csv (0.2ms)
|
3254917
|
+
Redirected to http://test.host/think_feel_do_dashboard/reports
|
3254918
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
|
3254919
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254920
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254921
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254922
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3254923
|
+
Rendered text template (0.1ms)
|
3254924
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254925
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254926
|
+
Processing by ThinkFeelDoDashboard::ArmsController#update as HTML
|
3254927
|
+
Parameters: {"id"=>"1"}
|
3254928
|
+
Redirected to http://test.host/
|
3254929
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3254930
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254931
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254932
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254933
|
+
Completed 401 Unauthorized in 14ms (ActiveRecord: 0.0ms)
|
3254934
|
+
Rendered text template (0.1ms)
|
3254935
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254936
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254937
|
+
Processing by ThinkFeelDoDashboard::ArmsController#update as HTML
|
3254938
|
+
Parameters: {"id"=>"1"}
|
3254939
|
+
Redirected to http://test.host/
|
3254940
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3254941
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254942
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254943
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254944
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3254945
|
+
Rendered text template (0.1ms)
|
3254946
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254947
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254948
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254949
|
+
Redirected to http://test.host/
|
3254950
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
3254951
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254952
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254953
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254954
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3254955
|
+
Rendered text template (0.1ms)
|
3254956
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254957
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254958
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254959
|
+
Redirected to http://test.host/
|
3254960
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
3254961
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254962
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254963
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254964
|
+
Redirected to http://test.host/
|
3254965
|
+
Completed 302 Found in 14ms (ActiveRecord: 0.0ms)
|
3254966
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3254967
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254968
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254969
|
+
Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
|
3254970
|
+
Rendered text template (0.1ms)
|
3254971
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254972
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254973
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254974
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3254975
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
|
3254976
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254977
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3254978
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254979
|
+
Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
|
3254980
|
+
Rendered text template (0.1ms)
|
3254981
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254982
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254983
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254984
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3254985
|
+
Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
|
3254986
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
3254987
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254988
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254989
|
+
Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
|
3254990
|
+
Rendered text template (0.3ms)
|
3254991
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254992
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3254993
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254994
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3254995
|
+
Rendered text template (0.1ms)
|
3254996
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3254997
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3254998
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3254999
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255000
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255001
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255002
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255003
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255004
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255005
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255006
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255007
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255008
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255009
|
+
Completed 401 Unauthorized in 19ms (ActiveRecord: 0.0ms)
|
3255010
|
+
Rendered text template (0.1ms)
|
3255011
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255012
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255013
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255014
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255015
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255016
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255017
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255018
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255019
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255020
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255021
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255022
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255023
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255024
|
+
Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
|
3255025
|
+
Rendered text template (0.1ms)
|
3255026
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255027
|
+
[1m[36m (0.7ms)[0m [1mBEGIN[0m
|
3255028
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255029
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255030
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255031
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255032
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255033
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255034
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255035
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255036
|
+
[1m[35m (0.5ms)[0m ROLLBACK
|
3255037
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255038
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255039
|
+
Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
|
3255040
|
+
Rendered text template (0.1ms)
|
3255041
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255042
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255043
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255044
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255045
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255046
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255047
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3255048
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255049
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255050
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255051
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255052
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255053
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255054
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255055
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.0ms)
|
3255056
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255057
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255058
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255059
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255060
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255061
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255062
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255063
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255064
|
+
Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
|
3255065
|
+
Rendered text template (0.2ms)
|
3255066
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255067
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255068
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255069
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255070
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
3255071
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255072
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255073
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255074
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255075
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255076
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255077
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255078
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255079
|
+
Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
|
3255080
|
+
Rendered text template (0.1ms)
|
3255081
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255082
|
+
[1m[36m (0.4ms)[0m [1mBEGIN[0m
|
3255083
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255084
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3255085
|
+
Rendered text template (0.1ms)
|
3255086
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255087
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255088
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255089
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255090
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255091
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255092
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255093
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255094
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255095
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255096
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255097
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255098
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255099
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255100
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
|
3255101
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255102
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255103
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255104
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255105
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255106
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255107
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255108
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255109
|
+
Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
|
3255110
|
+
Rendered text template (0.1ms)
|
3255111
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255112
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255113
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255114
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3255115
|
+
Rendered text template (0.1ms)
|
3255116
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255117
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255118
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255119
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255120
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255121
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255122
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255123
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255124
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255125
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255126
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255127
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255128
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255129
|
+
Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
|
3255130
|
+
Rendered text template (0.1ms)
|
3255131
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255132
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255133
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255134
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255135
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255136
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255137
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255138
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255139
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255140
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255141
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255142
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255143
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255144
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255145
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
|
3255146
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255147
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255148
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255149
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255150
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
|
3255151
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255152
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255153
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255154
|
+
Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
|
3255155
|
+
Rendered text template (0.1ms)
|
3255156
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255157
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255158
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255159
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255160
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
3255161
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255162
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255163
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255164
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255165
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255166
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255167
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255168
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255169
|
+
Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
|
3255170
|
+
Rendered text template (0.1ms)
|
3255171
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
3255172
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255173
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255174
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3255175
|
+
Rendered text template (0.1ms)
|
3255176
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255177
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255178
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255179
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255180
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255181
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255182
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255183
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255184
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255185
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255186
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255187
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3255188
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255189
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3255190
|
+
Rendered text template (0.1ms)
|
3255191
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255192
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255193
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255194
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255195
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255196
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255197
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255198
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255199
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255200
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
|
3255201
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255202
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255203
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255204
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255205
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
3255206
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255207
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255208
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255209
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255210
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255211
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255212
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255213
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255214
|
+
Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
|
3255215
|
+
Rendered text template (0.1ms)
|
3255216
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255217
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255218
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255219
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255220
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
3255221
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255222
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255223
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255224
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255225
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255226
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255227
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255228
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255229
|
+
Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
|
3255230
|
+
Rendered text template (0.1ms)
|
3255231
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255232
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255233
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255234
|
+
Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
|
3255235
|
+
Rendered text template (0.1ms)
|
3255236
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255237
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255238
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255239
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255240
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255241
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255242
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255243
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255244
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255245
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255246
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255247
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255248
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255249
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255250
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
|
3255251
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255252
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255253
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255254
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255255
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255256
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255257
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255258
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255259
|
+
Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
|
3255260
|
+
Rendered text template (0.1ms)
|
3255261
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255262
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255263
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255264
|
+
Completed 401 Unauthorized in 14ms (ActiveRecord: 0.0ms)
|
3255265
|
+
Rendered text template (0.3ms)
|
3255266
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255267
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255268
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255269
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255270
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255271
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255272
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255273
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255274
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255275
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
|
3255276
|
+
[1m[35m (0.6ms)[0m ROLLBACK
|
3255277
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3255278
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255279
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255280
|
+
Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
|
3255281
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255282
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255283
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255284
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255285
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255286
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255287
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255288
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255289
|
+
Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
|
3255290
|
+
Rendered text template (0.2ms)
|
3255291
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255292
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3255293
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255294
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255295
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
3255296
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255297
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255298
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255299
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255300
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255301
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255302
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255303
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255304
|
+
Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
|
3255305
|
+
Rendered text template (0.1ms)
|
3255306
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255307
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255308
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255309
|
+
Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
|
3255310
|
+
Rendered text template (0.1ms)
|
3255311
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255312
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255313
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255314
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255315
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255316
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255317
|
+
[1m[36m (0.4ms)[0m [1mBEGIN[0m
|
3255318
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255319
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255320
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255321
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255322
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3255323
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255324
|
+
Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
|
3255325
|
+
Rendered text template (0.1ms)
|
3255326
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255327
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255328
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255329
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255330
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
|
3255331
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255332
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255333
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255334
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255335
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255336
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255337
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255338
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255339
|
+
Completed 401 Unauthorized in 14ms (ActiveRecord: 0.0ms)
|
3255340
|
+
Rendered text template (0.1ms)
|
3255341
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255342
|
+
[1m[36m (0.4ms)[0m [1mBEGIN[0m
|
3255343
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255344
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3255345
|
+
Rendered text template (0.1ms)
|
3255346
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255347
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255348
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255349
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3255350
|
+
Rendered text template (0.2ms)
|
3255351
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255352
|
+
[1m[36m (0.5ms)[0m [1mBEGIN[0m
|
3255353
|
+
Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
|
3255354
|
+
Completed 401 Unauthorized in 10ms (ActiveRecord: 0.0ms)
|
3255355
|
+
Rendered text template (0.2ms)
|
3255356
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255357
|
+
[1m[36m (0.4ms)[0m [1mBEGIN[0m
|
3255358
|
+
Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
|
3255359
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
3255360
|
+
Rendered text template (0.1ms)
|
3255361
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255362
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255363
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255364
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3255365
|
+
Rendered text template (0.1ms)
|
3255366
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255367
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255368
|
+
Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
|
3255369
|
+
Parameters: {"arm"=>{}}
|
3255370
|
+
Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
|
3255371
|
+
Rendered text template (0.1ms)
|
3255372
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255373
|
+
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
3255374
|
+
Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
|
3255375
|
+
Parameters: {"arm"=>{}}
|
3255376
|
+
Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
|
3255377
|
+
Rendered text template (0.1ms)
|
3255378
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255379
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255380
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255381
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
3255382
|
+
Rendered text template (0.1ms)
|
3255383
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|
3255384
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255385
|
+
Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
|
3255386
|
+
Parameters: {"arm"=>{}}
|
3255387
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255388
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
|
3255389
|
+
[1m[35m (0.3ms)[0m ROLLBACK
|
3255390
|
+
[1m[36m (0.1ms)[0m [1mBEGIN[0m
|
3255391
|
+
Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
|
3255392
|
+
Parameters: {"arm"=>{}}
|
3255393
|
+
Redirected to http://test.host/think_feel_do_dashboard/
|
3255394
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
|
3255395
|
+
[1m[35m (0.4ms)[0m ROLLBACK
|
3255396
|
+
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
3255397
|
+
Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
|
3255398
|
+
Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
|
3255399
|
+
Rendered text template (0.4ms)
|
3255400
|
+
[1m[35m (0.2ms)[0m ROLLBACK
|