openstax_exchange 0.0.0
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 +15 -0
- data/MIT-LICENSE +20 -0
- data/README.md +44 -0
- data/Rakefile +22 -0
- data/lib/openstax/exchange/version.rb +5 -0
- data/lib/openstax_exchange.rb +112 -0
- data/spec/dummy/README.md +1 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/api/dummy_controller.rb +11 -0
- data/spec/dummy/app/controllers/api/events_controller.rb +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +7 -0
- data/spec/dummy/app/controllers/oauth_controller.rb +8 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/config/application.rb +55 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +69 -0
- data/spec/dummy/config/environments/test.rb +35 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/openstax_exchange.rb +10 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +11 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +16 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +929 -0
- data/spec/dummy/log/test.log +46753 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/lib/openstax_exchange_spec.rb +23 -0
- data/spec/spec_helper.rb +39 -0
- metadata +224 -0
@@ -0,0 +1,929 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
4
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
5
|
+
[1m[35m (1.7ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
6
|
+
Connecting to database specified by database.yml
|
7
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
8
|
+
Migrating to CreateOpenStaxAccountsAccounts (0)
|
9
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
10
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
12
|
+
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
13
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
14
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
15
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
16
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
17
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('0')
|
18
|
+
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
|
19
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
20
|
+
Connecting to database specified by database.yml
|
21
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
22
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
23
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
24
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
25
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
26
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
27
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
28
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
29
|
+
[1m[36m (0.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
30
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
31
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
32
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
33
|
+
Connecting to database specified by database.yml
|
34
|
+
[1m[36m (1.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
35
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
36
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
37
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
38
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
39
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
40
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
41
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
42
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
43
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
44
|
+
Connecting to database specified by database.yml
|
45
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
46
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
47
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
48
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
49
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
50
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
51
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
52
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
53
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
54
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
55
|
+
Connecting to database specified by database.yml
|
56
|
+
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
57
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
58
|
+
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
59
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
60
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
61
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
62
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
63
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
64
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
65
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
66
|
+
Connecting to database specified by database.yml
|
67
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
68
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
69
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
70
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
71
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
72
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
73
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
74
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
75
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
76
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
77
|
+
Connecting to database specified by database.yml
|
78
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
79
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
80
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
81
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
82
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
83
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
84
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
85
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
86
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
87
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
88
|
+
Connecting to database specified by database.yml
|
89
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
90
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
91
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
92
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
93
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
94
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
95
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
96
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
97
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
98
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
99
|
+
Connecting to database specified by database.yml
|
100
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
101
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
102
|
+
[1m[36m (1.9ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
103
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer, "username" varchar(255), "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
104
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
105
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
106
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
107
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
108
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
109
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
110
|
+
Connecting to database specified by database.yml
|
111
|
+
Connecting to database specified by database.yml
|
112
|
+
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
113
|
+
Migrating to CreateOpenStaxAccountsAccounts (0)
|
114
|
+
Migrating to CreateUsers (1)
|
115
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
116
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
117
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
118
|
+
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
119
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('1')
|
120
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
121
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
122
|
+
Connecting to database specified by database.yml
|
123
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
124
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
125
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
126
|
+
[1m[35m (28.6ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
127
|
+
Migrating to CreateOpenStaxAccountsAccounts (0)
|
128
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
129
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
130
|
+
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
131
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
132
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
133
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
134
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
135
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
136
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('0')[0m
|
137
|
+
[1m[35m (0.7ms)[0m commit transaction
|
138
|
+
Migrating to CreateUsers (1)
|
139
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
140
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
141
|
+
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
142
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('1')
|
143
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
144
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
145
|
+
Connecting to database specified by database.yml
|
146
|
+
[1m[36m (1.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
147
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
148
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
149
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")
|
150
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")[0m
|
151
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")
|
152
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")[0m
|
153
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")
|
154
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")[0m
|
155
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
156
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
157
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
158
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
159
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
160
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('1')[0m
|
161
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
162
|
+
Connecting to database specified by database.yml
|
163
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
164
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
165
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
166
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
167
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
168
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
169
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
170
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
171
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
172
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
173
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
174
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
175
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
176
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
177
|
+
Connecting to database specified by database.yml
|
178
|
+
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
179
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
180
|
+
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
181
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
182
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
183
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
184
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
185
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
186
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
187
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
188
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
189
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
190
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
191
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
192
|
+
Connecting to database specified by database.yml
|
193
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
194
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
195
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
196
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
197
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
198
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
199
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
200
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
201
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
202
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
203
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
204
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
205
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
206
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
207
|
+
Connecting to database specified by database.yml
|
208
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
209
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
210
|
+
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
211
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
212
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
213
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
214
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
215
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
216
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
217
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
218
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
219
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
220
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
221
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
222
|
+
Connecting to database specified by database.yml
|
223
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
224
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
225
|
+
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
226
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
227
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
228
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
229
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
230
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
231
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
232
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
233
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
234
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
235
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
236
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
237
|
+
Connecting to database specified by database.yml
|
238
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
239
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
240
|
+
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
241
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
242
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
243
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
244
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
245
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
246
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
247
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
248
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
249
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
250
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
251
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
252
|
+
Connecting to database specified by database.yml
|
253
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
254
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
255
|
+
[1m[36m (1.4ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
256
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
257
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
258
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
259
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
260
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
261
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
262
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
263
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
264
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
265
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
266
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
267
|
+
Connecting to database specified by database.yml
|
268
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
269
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
270
|
+
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
271
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
272
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
273
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
274
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
275
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
276
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
277
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
278
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
279
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
280
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
281
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
282
|
+
Connecting to database specified by database.yml
|
283
|
+
[1m[36m (1.6ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
284
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
285
|
+
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
286
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
287
|
+
[1m[36m (6.6ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
288
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
289
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
290
|
+
[1m[35m (5.6ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
291
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
292
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
293
|
+
[1m[36m (4.1ms)[0m [1mDROP TABLE "users"[0m
|
294
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
295
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
296
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
297
|
+
Connecting to database specified by database.yml
|
298
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
299
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
300
|
+
[1m[36m (1.4ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
301
|
+
[1m[35m (4.6ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
302
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
303
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
304
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
305
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
306
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
307
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
308
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
309
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
310
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
311
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
312
|
+
Connecting to database specified by database.yml
|
313
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
314
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
315
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
316
|
+
[1m[35m (7.1ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
317
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
318
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
319
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
320
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
321
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
322
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
323
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
324
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
325
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
326
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
327
|
+
Connecting to database specified by database.yml
|
328
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
329
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
330
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
331
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
332
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
333
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
334
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
335
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
336
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
337
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
338
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
339
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
340
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
341
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
342
|
+
Connecting to database specified by database.yml
|
343
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
344
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
345
|
+
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
346
|
+
[1m[35m (2.1ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
347
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
348
|
+
[1m[35m (2.5ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
349
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
350
|
+
[1m[35m (5.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
351
|
+
[1m[36m (5.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
352
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
353
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
354
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
355
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
356
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
357
|
+
Connecting to database specified by database.yml
|
358
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
359
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
360
|
+
[1m[36m (1.0ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
361
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
362
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
363
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
364
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
365
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
366
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
367
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
368
|
+
[1m[36m (0.6ms)[0m [1mDROP TABLE "users"[0m
|
369
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
370
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
371
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
372
|
+
Connecting to database specified by database.yml
|
373
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
374
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
375
|
+
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
376
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
377
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
378
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
379
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
380
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
381
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
382
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
383
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
384
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
385
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
386
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
387
|
+
Connecting to database specified by database.yml
|
388
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
389
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
390
|
+
[1m[36m (1.2ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
391
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
392
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
393
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
394
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
395
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
396
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
397
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
398
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
399
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
400
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
401
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
402
|
+
Connecting to database specified by database.yml
|
403
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
404
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
405
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
406
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
407
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
408
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
409
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
410
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
411
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
412
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
413
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
414
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
415
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
416
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
417
|
+
Connecting to database specified by database.yml
|
418
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
419
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
420
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
421
|
+
[1m[35m (1.7ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
422
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
423
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
424
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
425
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
426
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
427
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
428
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
429
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
430
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
431
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
432
|
+
Connecting to database specified by database.yml
|
433
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
434
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
435
|
+
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
436
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
437
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
438
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
439
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
440
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
441
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
442
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
443
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
444
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
445
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
446
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
447
|
+
Connecting to database specified by database.yml
|
448
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
449
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
450
|
+
[1m[36m (1.4ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
451
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
452
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
453
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
454
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
455
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
456
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
457
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
458
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
459
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
460
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
461
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
462
|
+
Connecting to database specified by database.yml
|
463
|
+
[1m[36m (1.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
464
|
+
[1m[35m (1.0ms)[0m select sqlite_version(*)
|
465
|
+
[1m[36m (1.4ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
466
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
467
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
468
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
469
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
470
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
471
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
472
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
473
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
474
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
475
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
476
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
477
|
+
Connecting to database specified by database.yml
|
478
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
479
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
480
|
+
[1m[36m (1.8ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
481
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
482
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
483
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
484
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
485
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
486
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
487
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
488
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
489
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
490
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
491
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
492
|
+
Connecting to database specified by database.yml
|
493
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
494
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
495
|
+
[1m[36m (1.7ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
496
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
497
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
498
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
499
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
500
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
501
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
502
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
503
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
504
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
505
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
506
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
507
|
+
Connecting to database specified by database.yml
|
508
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
509
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
510
|
+
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
511
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
512
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
513
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
514
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
515
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
516
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
517
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
518
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
519
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
520
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
521
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
522
|
+
Connecting to database specified by database.yml
|
523
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
524
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
525
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
526
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
527
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
528
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
529
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
530
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
531
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
532
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
533
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
534
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
535
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
536
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
537
|
+
Connecting to database specified by database.yml
|
538
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
539
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
540
|
+
[1m[36m (1.8ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
541
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
542
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
543
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
544
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
545
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
546
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
547
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
548
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
549
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
550
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
551
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
552
|
+
Connecting to database specified by database.yml
|
553
|
+
[1m[36m (2.5ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
554
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
555
|
+
[1m[36m (1.2ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
556
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
557
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
558
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
559
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
560
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
561
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
562
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
563
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
564
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
565
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
566
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
567
|
+
Connecting to database specified by database.yml
|
568
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
569
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
570
|
+
[1m[36m (1.6ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
571
|
+
[1m[35m (1.6ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
572
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
573
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
574
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
575
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
576
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
577
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
578
|
+
[1m[36m (0.8ms)[0m [1mDROP TABLE "users"[0m
|
579
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
580
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
581
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
582
|
+
Connecting to database specified by database.yml
|
583
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
584
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
585
|
+
[1m[36m (1.3ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
586
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
587
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
588
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
589
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
590
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
591
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
592
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
593
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
594
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
595
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
596
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
597
|
+
Connecting to database specified by database.yml
|
598
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
599
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
600
|
+
[1m[36m (1.5ms)[0m [1mDROP TABLE "openstax_accounts_accounts"[0m
|
601
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "openstax_accounts_accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_uid" integer NOT NULL, "username" varchar(255) NOT NULL, "first_name" varchar(255), "last_name" varchar(255), "full_name" varchar(255), "title" varchar(255), "access_token" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
602
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_access_token" ON "openstax_accounts_accounts" ("access_token")[0m
|
603
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_first_name" ON "openstax_accounts_accounts" ("first_name")
|
604
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_openstax_accounts_accounts_on_full_name" ON "openstax_accounts_accounts" ("full_name")[0m
|
605
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_openstax_accounts_accounts_on_last_name" ON "openstax_accounts_accounts" ("last_name")
|
606
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_openstax_uid" ON "openstax_accounts_accounts" ("openstax_uid")[0m
|
607
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_openstax_accounts_accounts_on_username" ON "openstax_accounts_accounts" ("username")
|
608
|
+
[1m[36m (0.7ms)[0m [1mDROP TABLE "users"[0m
|
609
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "openstax_accounts_account_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
610
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_openstax_accounts_account_id" ON "users" ("openstax_accounts_account_id")[0m
|
611
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
612
|
+
|
613
|
+
|
614
|
+
Started POST "/oauth/token" for 127.0.0.1 at 2014-07-22 10:58:39 -0500
|
615
|
+
Processing by OauthController#token as */*
|
616
|
+
Parameters: {"grant_type"=>"client_credentials"}
|
617
|
+
Can't verify CSRF token authenticity
|
618
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
619
|
+
|
620
|
+
|
621
|
+
Started GET "/api/events" for 127.0.0.1 at 2014-07-22 10:58:39 -0500
|
622
|
+
|
623
|
+
ActionController::RoutingError (No route matches [GET] "/api/events"):
|
624
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
625
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
626
|
+
railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
|
627
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
|
628
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
629
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
630
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
|
631
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
|
632
|
+
quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
|
633
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
634
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
635
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
636
|
+
activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
637
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
638
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
639
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
640
|
+
railties (4.1.1) lib/rails/engine.rb:514:in `call'
|
641
|
+
railties (4.1.1) lib/rails/application.rb:144:in `call'
|
642
|
+
capybara (2.2.1) lib/capybara/server.rb:19:in `call'
|
643
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
644
|
+
/Users/dante/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
645
|
+
/Users/dante/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
646
|
+
/Users/dante/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
647
|
+
|
648
|
+
|
649
|
+
Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
|
650
|
+
Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
|
651
|
+
Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.7ms)
|
652
|
+
Rendered /Users/dante/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.5ms)
|
653
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
654
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
655
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
656
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
657
|
+
|
658
|
+
|
659
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:35:36 -0500
|
660
|
+
|
661
|
+
AbstractController::ActionNotFound (The action 'index' could not be found for ApplicationController):
|
662
|
+
actionpack (4.1.1) lib/abstract_controller/base.rb:131:in `process'
|
663
|
+
actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
|
664
|
+
actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
|
665
|
+
actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
666
|
+
actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
|
667
|
+
actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
668
|
+
actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
669
|
+
actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
670
|
+
actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
671
|
+
actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
|
672
|
+
actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
|
673
|
+
actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
674
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
675
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
676
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
677
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
678
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
679
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
680
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
681
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
682
|
+
activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
|
683
|
+
activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
684
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
685
|
+
activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
686
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
687
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
688
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
689
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
690
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
691
|
+
railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
|
692
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
|
693
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
694
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
695
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
|
696
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
|
697
|
+
quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
|
698
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
699
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
700
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
701
|
+
activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
702
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
703
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
704
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
705
|
+
railties (4.1.1) lib/rails/engine.rb:514:in `call'
|
706
|
+
railties (4.1.1) lib/rails/application.rb:144:in `call'
|
707
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
708
|
+
thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
|
709
|
+
thin (1.6.2) lib/thin/connection.rb:84:in `catch'
|
710
|
+
thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
|
711
|
+
thin (1.6.2) lib/thin/connection.rb:53:in `process'
|
712
|
+
thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
|
713
|
+
eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
|
714
|
+
eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
|
715
|
+
thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
|
716
|
+
thin (1.6.2) lib/thin/server.rb:162:in `start'
|
717
|
+
rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
|
718
|
+
rack (1.5.2) lib/rack/server.rb:264:in `start'
|
719
|
+
railties (4.1.1) lib/rails/commands/server.rb:69:in `start'
|
720
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:81:in `block in server'
|
721
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `tap'
|
722
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `server'
|
723
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:40:in `run_command!'
|
724
|
+
railties (4.1.1) lib/rails/commands.rb:17:in `<top (required)>'
|
725
|
+
script/rails:6:in `require'
|
726
|
+
script/rails:6:in `<main>'
|
727
|
+
|
728
|
+
|
729
|
+
Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (2.4ms)
|
730
|
+
|
731
|
+
|
732
|
+
Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:35:44 -0500
|
733
|
+
Processing by Api::EventsController#index as HTML
|
734
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
735
|
+
|
736
|
+
|
737
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:34 -0500
|
738
|
+
Processing by ApplicationController#index as HTML
|
739
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
740
|
+
|
741
|
+
|
742
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:38 -0500
|
743
|
+
Processing by ApplicationController#index as HTML
|
744
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
745
|
+
|
746
|
+
|
747
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:41 -0500
|
748
|
+
Processing by ApplicationController#index as HTML
|
749
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
750
|
+
|
751
|
+
|
752
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:36:42 -0500
|
753
|
+
Processing by ApplicationController#index as HTML
|
754
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
755
|
+
|
756
|
+
|
757
|
+
Started GET "/api/dummt" for 127.0.0.1 at 2014-07-22 11:36:53 -0500
|
758
|
+
|
759
|
+
ActionController::RoutingError (No route matches [GET] "/api/dummt"):
|
760
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
761
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
762
|
+
railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
|
763
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
|
764
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
765
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
766
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
|
767
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
|
768
|
+
quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
|
769
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
770
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
771
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
772
|
+
activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
773
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
774
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
775
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
776
|
+
railties (4.1.1) lib/rails/engine.rb:514:in `call'
|
777
|
+
railties (4.1.1) lib/rails/application.rb:144:in `call'
|
778
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
779
|
+
thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
|
780
|
+
thin (1.6.2) lib/thin/connection.rb:84:in `catch'
|
781
|
+
thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
|
782
|
+
thin (1.6.2) lib/thin/connection.rb:53:in `process'
|
783
|
+
thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
|
784
|
+
eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
|
785
|
+
eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
|
786
|
+
thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
|
787
|
+
thin (1.6.2) lib/thin/server.rb:162:in `start'
|
788
|
+
rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
|
789
|
+
rack (1.5.2) lib/rack/server.rb:264:in `start'
|
790
|
+
railties (4.1.1) lib/rails/commands/server.rb:69:in `start'
|
791
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:81:in `block in server'
|
792
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `tap'
|
793
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `server'
|
794
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:40:in `run_command!'
|
795
|
+
railties (4.1.1) lib/rails/commands.rb:17:in `<top (required)>'
|
796
|
+
script/rails:6:in `require'
|
797
|
+
script/rails:6:in `<main>'
|
798
|
+
|
799
|
+
|
800
|
+
Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms)
|
801
|
+
Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
|
802
|
+
Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.2ms)
|
803
|
+
Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.5ms)
|
804
|
+
|
805
|
+
|
806
|
+
Started GET "/api/dummy" for 127.0.0.1 at 2014-07-22 11:36:56 -0500
|
807
|
+
|
808
|
+
ActionController::RoutingError (No route matches [GET] "/api/dummy"):
|
809
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
810
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
811
|
+
railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
|
812
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
|
813
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
814
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
815
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
|
816
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
|
817
|
+
quiet_assets (1.0.2) lib/quiet_assets.rb:18:in `call_with_quiet_assets'
|
818
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
819
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
820
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
821
|
+
activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
822
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
823
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
824
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
825
|
+
railties (4.1.1) lib/rails/engine.rb:514:in `call'
|
826
|
+
railties (4.1.1) lib/rails/application.rb:144:in `call'
|
827
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
828
|
+
thin (1.6.2) lib/thin/connection.rb:86:in `block in pre_process'
|
829
|
+
thin (1.6.2) lib/thin/connection.rb:84:in `catch'
|
830
|
+
thin (1.6.2) lib/thin/connection.rb:84:in `pre_process'
|
831
|
+
thin (1.6.2) lib/thin/connection.rb:53:in `process'
|
832
|
+
thin (1.6.2) lib/thin/connection.rb:39:in `receive_data'
|
833
|
+
eventmachine (1.0.3) lib/eventmachine.rb:187:in `run_machine'
|
834
|
+
eventmachine (1.0.3) lib/eventmachine.rb:187:in `run'
|
835
|
+
thin (1.6.2) lib/thin/backends/base.rb:73:in `start'
|
836
|
+
thin (1.6.2) lib/thin/server.rb:162:in `start'
|
837
|
+
rack (1.5.2) lib/rack/handler/thin.rb:16:in `run'
|
838
|
+
rack (1.5.2) lib/rack/server.rb:264:in `start'
|
839
|
+
railties (4.1.1) lib/rails/commands/server.rb:69:in `start'
|
840
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:81:in `block in server'
|
841
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `tap'
|
842
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:76:in `server'
|
843
|
+
railties (4.1.1) lib/rails/commands/commands_tasks.rb:40:in `run_command!'
|
844
|
+
railties (4.1.1) lib/rails/commands.rb:17:in `<top (required)>'
|
845
|
+
script/rails:6:in `require'
|
846
|
+
script/rails:6:in `<main>'
|
847
|
+
|
848
|
+
|
849
|
+
Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
850
|
+
Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
|
851
|
+
Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
|
852
|
+
Rendered /Users/dante/.rvm/gems/ruby-1.9.3-p545@exchange-ruby/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (12.6ms)
|
853
|
+
|
854
|
+
|
855
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:07 -0500
|
856
|
+
Processing by ApplicationController#index as HTML
|
857
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
858
|
+
|
859
|
+
|
860
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:08 -0500
|
861
|
+
Processing by ApplicationController#index as HTML
|
862
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
863
|
+
|
864
|
+
|
865
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:12 -0500
|
866
|
+
Processing by ApplicationController#index as HTML
|
867
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
868
|
+
|
869
|
+
|
870
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:18 -0500
|
871
|
+
Processing by ApplicationController#index as HTML
|
872
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
873
|
+
|
874
|
+
|
875
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:21 -0500
|
876
|
+
Processing by ApplicationController#index as HTML
|
877
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
878
|
+
|
879
|
+
|
880
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:22 -0500
|
881
|
+
Processing by ApplicationController#index as HTML
|
882
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
883
|
+
|
884
|
+
|
885
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:29 -0500
|
886
|
+
Processing by ApplicationController#index as HTML
|
887
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
888
|
+
|
889
|
+
|
890
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:31 -0500
|
891
|
+
Processing by ApplicationController#index as HTML
|
892
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
893
|
+
|
894
|
+
|
895
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:33 -0500
|
896
|
+
Processing by ApplicationController#index as HTML
|
897
|
+
Completed 204 No Content in 0ms (ActiveRecord: 0.0ms)
|
898
|
+
|
899
|
+
|
900
|
+
Started GET "/" for 127.0.0.1 at 2014-07-22 11:37:54 -0500
|
901
|
+
Processing by ApplicationController#index as HTML
|
902
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
903
|
+
|
904
|
+
|
905
|
+
Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:37:58 -0500
|
906
|
+
Processing by Api::EventsController#index as HTML
|
907
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
908
|
+
|
909
|
+
|
910
|
+
Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:38:00 -0500
|
911
|
+
Processing by Api::EventsController#index as HTML
|
912
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
913
|
+
|
914
|
+
|
915
|
+
Started GET "/api/events" for 127.0.0.1 at 2014-07-22 11:38:04 -0500
|
916
|
+
Processing by Api::EventsController#index as HTML
|
917
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
918
|
+
|
919
|
+
|
920
|
+
Started GET "/api/events?q=" for 127.0.0.1 at 2014-07-22 11:38:08 -0500
|
921
|
+
Processing by Api::EventsController#index as HTML
|
922
|
+
Parameters: {"q"=>""}
|
923
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
924
|
+
|
925
|
+
|
926
|
+
Started GET "/api/events?q=" for 127.0.0.1 at 2014-07-22 11:38:11 -0500
|
927
|
+
Processing by Api::EventsController#index as HTML
|
928
|
+
Parameters: {"q"=>""}
|
929
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|