bookingsync-engine 1.0.2 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bookingsync/engine/version.rb +1 -1
- data/spec/dummy/config/database.yml +8 -10
- data/spec/dummy/config/database.yml.travis +3 -0
- data/spec/dummy/db/schema.rb +2 -6
- data/spec/dummy/log/development.log +437 -0
- data/spec/dummy/log/test.log +6308 -0
- data/spec/models/account_spec.rb +6 -1
- data/spec/spec_helper.rb +7 -0
- metadata +14 -14
- data/spec/dummy/db/test.sqlite3 +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 09059e6ed1793e6948824832daf3a4c8de73f4b3
|
4
|
+
data.tar.gz: 77c6aea006a204cf8100db306f7da9bdf196d4a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf59001d3dda1fb97647717f084b6ee0999b9aa8020ba015dbabc34d6a5c6729e4aa150a77e22f6276585fed24845cafb7d823243b06b7ef0c855fb9b93fa9d2
|
7
|
+
data.tar.gz: dcca71ead0417a1a6add3611e77b8305c4fc55314266fd5ba26101ec36b9c8d57c758a5c7739d95c9a2ab54ed8e30e80f33c174d7a4b2b876a745189a277c118
|
@@ -1,17 +1,15 @@
|
|
1
1
|
development:
|
2
|
-
adapter:
|
2
|
+
adapter: postgresql
|
3
3
|
encoding: unicode
|
4
|
-
database:
|
4
|
+
database: bookingsync_engine_development
|
5
5
|
pool: 5
|
6
|
+
username: manda
|
7
|
+
password:
|
6
8
|
|
7
9
|
test:
|
8
|
-
adapter:
|
10
|
+
adapter: postgresql
|
9
11
|
encoding: unicode
|
10
|
-
database:
|
11
|
-
pool: 5
|
12
|
-
|
13
|
-
production:
|
14
|
-
adapter: sqlite3
|
15
|
-
encoding: unicode
|
16
|
-
database: db/production.sqlite3
|
12
|
+
database: bookingsync_engine_test
|
17
13
|
pool: 5
|
14
|
+
username: manda
|
15
|
+
password:
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
# encoding: UTF-8
|
2
1
|
# This file is auto-generated from the current state of the database. Instead
|
3
2
|
# of editing this file, please use the migrations feature of Active Record to
|
4
3
|
# incrementally modify your database, and then regenerate this schema definition.
|
@@ -12,8 +11,7 @@
|
|
12
11
|
# It's strongly recommended that you check this file into your version control system.
|
13
12
|
|
14
13
|
ActiveRecord::Schema.define(version: 20140522110454) do
|
15
|
-
|
16
|
-
create_table "accounts", force: true do |t|
|
14
|
+
create_table "accounts", force: :cascade do |t|
|
17
15
|
t.datetime "created_at"
|
18
16
|
t.datetime "updated_at"
|
19
17
|
t.string "provider"
|
@@ -22,8 +20,6 @@ ActiveRecord::Schema.define(version: 20140522110454) do
|
|
22
20
|
t.string "oauth_access_token"
|
23
21
|
t.string "oauth_refresh_token"
|
24
22
|
t.string "oauth_expires_at"
|
23
|
+
t.index ["synced_id"], name: "index_accounts_on_synced_id", using: :btree
|
25
24
|
end
|
26
|
-
|
27
|
-
add_index "accounts", ["synced_id"], name: "index_accounts_on_synced_id"
|
28
|
-
|
29
25
|
end
|
@@ -14,3 +14,440 @@
|
|
14
14
|
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
15
15
|
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
16
16
|
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
|
17
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) [0m
|
18
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
19
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
20
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
21
|
+
[1m[36m (2.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
22
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
23
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
24
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
|
25
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar(255), "synced_id" integer, "name" varchar(255), "oauth_access_token" varchar(255), "oauth_refresh_token" varchar(255), "oauth_expires_at" varchar(255)) [0m
|
26
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
27
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
28
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
29
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
30
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
31
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
32
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
|
33
|
+
[1m[36m (2.2ms)[0m [1mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) [0m
|
34
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
35
|
+
[1m[36m (1.4ms)[0m [1mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
36
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
37
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
38
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
39
|
+
[1m[36m (1.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
40
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
|
41
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)[0m
|
42
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
43
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
44
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
45
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
46
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
47
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
48
|
+
|
49
|
+
[0m
|
50
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
51
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
52
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
53
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 17:45:51 UTC], ["updated_at", 2016-08-22 17:45:51 UTC]]
|
54
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
55
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
56
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
57
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
58
|
+
[1m[35m (3.0ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)[0m
|
59
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
60
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
61
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
62
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
63
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
64
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
65
|
+
|
66
|
+
[0m
|
67
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
68
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
69
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 17:48:52 UTC], ["updated_at", 2016-08-22 17:48:52 UTC]]
|
71
|
+
[1m[35m (2.7ms)[0m [1m[36mcommit transaction[0m
|
72
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
73
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
74
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
75
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)[0m
|
76
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
77
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
78
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
79
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
80
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
81
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
82
|
+
|
83
|
+
[0m
|
84
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
85
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
86
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
87
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 17:51:11 UTC], ["updated_at", 2016-08-22 17:51:11 UTC]]
|
88
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
89
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
90
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
91
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
92
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)[0m
|
93
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
94
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
95
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
96
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
97
|
+
[1m[35m (1.2ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
98
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
99
|
+
|
100
|
+
[0m
|
101
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
102
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
103
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
104
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 17:53:46 UTC], ["updated_at", 2016-08-22 17:53:46 UTC]]
|
105
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
106
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
107
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
108
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
109
|
+
[1m[35m (1.8ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)[0m
|
110
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
111
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
112
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
113
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
114
|
+
[1m[35m (1.2ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
115
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
116
|
+
|
117
|
+
[0m
|
118
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
119
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
120
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
121
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 17:54:47 UTC], ["updated_at", 2016-08-22 17:54:47 UTC]]
|
122
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
123
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
124
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
125
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
126
|
+
[1m[35m (3.1ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)[0m
|
127
|
+
[1m[35m (0.2ms)[0m [1m[34mselect sqlite_version(*)[0m
|
128
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
129
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
130
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
131
|
+
[1m[35m (1.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
132
|
+
[1m[35m (1.1ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
133
|
+
|
134
|
+
[0m
|
135
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
136
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
137
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
138
|
+
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 17:55:44 UTC], ["updated_at", 2016-08-22 17:55:44 UTC]]
|
139
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
140
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
141
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
142
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
143
|
+
[1m[35m (3.8ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)[0m
|
144
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
145
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
146
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
147
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
148
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
149
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
150
|
+
|
151
|
+
[0m
|
152
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
153
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
154
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
155
|
+
[1m[35mSQL (0.7ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 17:56:05 UTC], ["updated_at", 2016-08-22 17:56:05 UTC]]
|
156
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
157
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
158
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
159
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
160
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) [0m
|
161
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
162
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
163
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
164
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
165
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
166
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
167
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
|
168
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) [0m
|
169
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
170
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
171
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
172
|
+
[1m[36m (1.5ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
173
|
+
[1m[35m (0.3ms)[0m SELECT version FROM "schema_migrations"
|
174
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
175
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
|
176
|
+
[1m[35m (3.7ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)[0m
|
177
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
178
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
179
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
180
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
181
|
+
[1m[35m (1.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
182
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
183
|
+
|
184
|
+
[0m
|
185
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
186
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
187
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
188
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 18:00:52 UTC], ["updated_at", 2016-08-22 18:00:52 UTC]]
|
189
|
+
[1m[35m (1.0ms)[0m [1m[36mcommit transaction[0m
|
190
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
191
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
192
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
193
|
+
[1m[35m (2.8ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)[0m
|
194
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
195
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
196
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
197
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
198
|
+
[1m[35m (1.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
199
|
+
[1m[35m (0.9ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
200
|
+
|
201
|
+
[0m
|
202
|
+
[1m[35m (1.2ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
203
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
204
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
205
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 18:02:08 UTC], ["updated_at", 2016-08-22 18:02:08 UTC]]
|
206
|
+
[1m[35m (0.9ms)[0m [1m[36mcommit transaction[0m
|
207
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
208
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
209
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
210
|
+
[1m[35m (2.9ms)[0m [1m[35mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar)[0m
|
211
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
212
|
+
[1m[35m (1.0ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
213
|
+
[1m[35m (1.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
214
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
215
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
216
|
+
[1m[35m (1.0ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
217
|
+
|
218
|
+
[0m
|
219
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
220
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
221
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
222
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 18:02:43 UTC], ["updated_at", 2016-08-22 18:02:43 UTC]]
|
223
|
+
[1m[35m (1.0ms)[0m [1m[36mcommit transaction[0m
|
224
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
225
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
226
|
+
[1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
227
|
+
[1m[35m (2.7ms)[0m [1m[35mDROP DATABASE IF EXISTS "bookingsync_engine_test"[0m
|
228
|
+
[1m[35m (591.6ms)[0m [1m[35mCREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'[0m
|
229
|
+
[1m[35m (16.2ms)[0m [1m[35mCREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying)[0m
|
230
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
231
|
+
[1m[35m (3.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)[0m
|
232
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
233
|
+
[1m[35m (0.5ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
234
|
+
[1m[35m (0.3ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
235
|
+
|
236
|
+
[0m
|
237
|
+
[1m[35m (2.7ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
238
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.7ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", :environment], ["LIMIT", 1]]
|
239
|
+
[1m[35m (0.4ms)[0m [1m[35mBEGIN[0m
|
240
|
+
[1m[35mSQL (2.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 18:16:07 UTC], ["updated_at", 2016-08-22 18:16:07 UTC]]
|
241
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
242
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", :environment], ["LIMIT", 1]]
|
243
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
244
|
+
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
|
245
|
+
[1m[36m (119.7ms)[0m [1mDROP DATABASE IF EXISTS "bookingsync_engine_test"[0m
|
246
|
+
[1m[35m (251.9ms)[0m CREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'
|
247
|
+
[1m[36m (6.8ms)[0m [1mCREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) [0m
|
248
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
|
249
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
250
|
+
[1m[35m (1.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
251
|
+
[1m[36m (0.6ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
252
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
|
253
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110326')[0m
|
254
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "provider" varchar, "synced_id" integer, "name" varchar, "oauth_access_token" varchar, "oauth_refresh_token" varchar, "oauth_expires_at" varchar) [0m
|
255
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
256
|
+
[1m[36m (1.3ms)[0m [1mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
257
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
258
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
259
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
260
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
261
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
|
262
|
+
[1m[36m (33.7ms)[0m [1mCREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) [0m
|
263
|
+
[1m[35m (1.1ms)[0m CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
|
264
|
+
[1m[36m (4.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
265
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
266
|
+
[1m[36m (1.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
267
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
|
268
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110326')[0m
|
269
|
+
[1m[36m (122.5ms)[0m [1mDROP DATABASE IF EXISTS "bookingsync_engine_test"[0m
|
270
|
+
[1m[35m (394.5ms)[0m CREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'
|
271
|
+
[1m[36m (24.8ms)[0m [1mCREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "synced_id" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255)) [0m
|
272
|
+
[1m[35m (1.5ms)[0m CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
|
273
|
+
[1m[36m (12.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
274
|
+
[1m[35m (12.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
275
|
+
[1m[36m (1.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
276
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
|
277
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110326')[0m
|
278
|
+
[1m[36m (119.7ms)[0m [1mDROP DATABASE IF EXISTS "bookingsync_engine_test"[0m
|
279
|
+
[1m[35m (245.7ms)[0m CREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'
|
280
|
+
[1m[36m (31.1ms)[0m [1mCREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) [0m
|
281
|
+
[1m[35m (8.2ms)[0m CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
|
282
|
+
[1m[36m (19.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
283
|
+
[1m[35m (2.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
284
|
+
[1m[36m (0.6ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
285
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
|
286
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110326')[0m
|
287
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.7ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
288
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
289
|
+
[1m[36m (28.6ms)[0m [1mCREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying) [0m
|
290
|
+
[1m[35m (1.6ms)[0m CREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")
|
291
|
+
[1m[36m (23.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
292
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
293
|
+
[1m[36m (0.4ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
294
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110454')
|
295
|
+
[1m[36m (0.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110326')[0m
|
296
|
+
[1m[35m (7.4ms)[0m CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying)
|
297
|
+
[1m[36m (1.5ms)[0m [1mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
298
|
+
[1m[35m (2.3ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
299
|
+
[1m[36m (2.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
300
|
+
[1m[35m (2.5ms)[0m SELECT version FROM "schema_migrations"
|
301
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
302
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
|
303
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
304
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
305
|
+
[1m[36m (26.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
306
|
+
[1m[35m (6.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
307
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
308
|
+
Migrating to CreateAccounts (20140522110326)
|
309
|
+
[1m[35m (11.6ms)[0m BEGIN
|
310
|
+
DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/manda/projects/bookingsync-engine/spec/dummy/db/migrate/20140522110326_create_accounts.rb:5)
|
311
|
+
[1m[36m (11.3ms)[0m [1mCREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp) [0m
|
312
|
+
[1m[35mSQL (12.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140522110326"]]
|
313
|
+
[1m[36m (11.1ms)[0m [1mCOMMIT[0m
|
314
|
+
Migrating to AddOAuthFieldsToAccounts (20140522110454)
|
315
|
+
[1m[35m (5.6ms)[0m BEGIN
|
316
|
+
[1m[36m (3.9ms)[0m [1mALTER TABLE "accounts" ADD "provider" character varying[0m
|
317
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "accounts" ADD "synced_id" integer
|
318
|
+
[1m[36m (1.1ms)[0m [1mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
319
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "accounts" ADD "name" character varying
|
320
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "accounts" ADD "oauth_access_token" character varying[0m
|
321
|
+
[1m[35m (0.3ms)[0m ALTER TABLE "accounts" ADD "oauth_refresh_token" character varying
|
322
|
+
[1m[36m (0.3ms)[0m [1mALTER TABLE "accounts" ADD "oauth_expires_at" character varying[0m
|
323
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140522110454"]]
|
324
|
+
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
325
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.3ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
326
|
+
[1m[36m (4.3ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
327
|
+
FROM pg_constraint c
|
328
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
329
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
330
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
331
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
332
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
333
|
+
WHERE c.contype = 'f'
|
334
|
+
AND t1.relname = 'accounts'
|
335
|
+
AND t3.nspname = ANY (current_schemas(false))
|
336
|
+
ORDER BY c.conname
|
337
|
+
[0m
|
338
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
339
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
340
|
+
[1m[35m (19.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)[0m
|
341
|
+
[1m[35m (25.6ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
342
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT pg_try_advisory_lock(4021716121895623095);[0m
|
343
|
+
[1m[36mActiveRecord::SchemaMigration Load (6.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
344
|
+
Migrating to CreateAccounts (20140522110326)
|
345
|
+
[1m[35m (5.7ms)[0m [1m[35mBEGIN[0m
|
346
|
+
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
|
347
|
+
|
348
|
+
class CreateAccounts < ActiveRecord::Migration[4.2] (called from load at /Users/manda/.rvm/gems/ruby-2.3.1/bin/rake:23)
|
349
|
+
[1m[35m (13.9ms)[0m [1m[35mCREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp)[0m
|
350
|
+
[1m[35mSQL (6.2ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140522110326"]]
|
351
|
+
[1m[35m (12.5ms)[0m [1m[35mCOMMIT[0m
|
352
|
+
Migrating to AddOAuthFieldsToAccounts (20140522110454)
|
353
|
+
[1m[35m (5.6ms)[0m [1m[35mBEGIN[0m
|
354
|
+
DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
|
355
|
+
|
356
|
+
class AddOAuthFieldsToAccounts < ActiveRecord::Migration[4.2] (called from load at /Users/manda/.rvm/gems/ruby-2.3.1/bin/rake:23)
|
357
|
+
[1m[35m (14.6ms)[0m [1m[35mALTER TABLE "accounts" ADD "provider" character varying[0m
|
358
|
+
[1m[35m (4.7ms)[0m [1m[35mALTER TABLE "accounts" ADD "synced_id" integer[0m
|
359
|
+
[1m[35m (1.5ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" ("synced_id")[0m
|
360
|
+
[1m[35m (0.7ms)[0m [1m[35mALTER TABLE "accounts" ADD "name" character varying[0m
|
361
|
+
[1m[35m (0.4ms)[0m [1m[35mALTER TABLE "accounts" ADD "oauth_access_token" character varying[0m
|
362
|
+
[1m[35m (0.6ms)[0m [1m[35mALTER TABLE "accounts" ADD "oauth_refresh_token" character varying[0m
|
363
|
+
[1m[35m (0.8ms)[0m [1m[35mALTER TABLE "accounts" ADD "oauth_expires_at" character varying[0m
|
364
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20140522110454"]]
|
365
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
366
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.8ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", :environment], ["LIMIT", 1]]
|
367
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
368
|
+
[1m[35mSQL (6.4ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 19:43:57 UTC], ["updated_at", 2016-08-22 19:43:57 UTC]]
|
369
|
+
[1m[35m (11.7ms)[0m [1m[35mCOMMIT[0m
|
370
|
+
[1m[35m (5.9ms)[0m [1m[34mSELECT pg_advisory_unlock(4021716121895623095)[0m
|
371
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
372
|
+
[1m[35m (3.5ms)[0m [1m[34mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
373
|
+
FROM pg_constraint c
|
374
|
+
JOIN pg_class t1 ON c.conrelid = t1.oid
|
375
|
+
JOIN pg_class t2 ON c.confrelid = t2.oid
|
376
|
+
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
377
|
+
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
378
|
+
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
379
|
+
WHERE c.contype = 'f'
|
380
|
+
AND t1.relname = 'accounts'
|
381
|
+
AND t3.nspname = ANY (current_schemas(false))
|
382
|
+
ORDER BY c.conname
|
383
|
+
[0m
|
384
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
385
|
+
[1m[35m (12.7ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
386
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
387
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
388
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
389
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
390
|
+
[1m[35m (117.7ms)[0m [1m[35mDROP DATABASE IF EXISTS "bookingsync_engine_test"[0m
|
391
|
+
[1m[35m (403.2ms)[0m [1m[35mCREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'[0m
|
392
|
+
[1m[35mSQL (1.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
393
|
+
[1m[35m (6.4ms)[0m [1m[35mCREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying)[0m
|
394
|
+
[1m[35m (1.4ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" USING btree ("synced_id")[0m
|
395
|
+
[1m[35m (4.0ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)[0m
|
396
|
+
[1m[35m (0.7ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
397
|
+
[1m[35m (0.6ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
398
|
+
[1m[35m (0.5ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
399
|
+
|
400
|
+
[0m
|
401
|
+
[1m[35m (3.3ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
402
|
+
[1m[36mActiveRecord::InternalMetadata Load (5.8ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", :environment], ["LIMIT", 1]]
|
403
|
+
[1m[35m (6.1ms)[0m [1m[35mBEGIN[0m
|
404
|
+
[1m[35mSQL (6.0ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 19:44:14 UTC], ["updated_at", 2016-08-22 19:44:14 UTC]]
|
405
|
+
[1m[35m (0.5ms)[0m [1m[35mCOMMIT[0m
|
406
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", :environment], ["LIMIT", 1]]
|
407
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
408
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|
409
|
+
[1m[36m (120.7ms)[0m [1mDROP DATABASE IF EXISTS "bookingsync_engine_test"[0m
|
410
|
+
[1m[35m (246.8ms)[0m CREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'
|
411
|
+
[1m[36mSQL (0.5ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
412
|
+
[1m[35m (17.4ms)[0m CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying(255), "synced_id" integer, "name" character varying(255), "oauth_access_token" character varying(255), "oauth_refresh_token" character varying(255), "oauth_expires_at" character varying(255))
|
413
|
+
[1m[36m (3.1ms)[0m [1mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" USING btree ("synced_id")[0m
|
414
|
+
[1m[35m (12.1ms)[0m CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL)
|
415
|
+
[1m[36m (11.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
416
|
+
[1m[35m (0.7ms)[0m SELECT version FROM "schema_migrations"
|
417
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
418
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
|
419
|
+
[1m[36m (118.5ms)[0m [1mDROP DATABASE IF EXISTS "bookingsync_engine_test"[0m
|
420
|
+
[1m[35m (245.2ms)[0m CREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'
|
421
|
+
[1m[36mSQL (0.6ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
422
|
+
[1m[35m (18.7ms)[0m CREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying)
|
423
|
+
[1m[36m (1.2ms)[0m [1mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" USING btree ("synced_id")[0m
|
424
|
+
[1m[35m (24.6ms)[0m CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
|
425
|
+
[1m[36m (1.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
426
|
+
[1m[35m (0.6ms)[0m SELECT version FROM "schema_migrations"
|
427
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
428
|
+
[1m[35m (0.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140522110326')
|
429
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.8ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
430
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
431
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
432
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
433
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1m[34mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
434
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", :environment]]
|
435
|
+
[1m[35m (124.2ms)[0m [1m[35mDROP DATABASE IF EXISTS "bookingsync_engine_test"[0m
|
436
|
+
[1m[35m (250.2ms)[0m [1m[35mCREATE DATABASE "bookingsync_engine_test" ENCODING = 'unicode'[0m
|
437
|
+
[1m[35mSQL (0.4ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
438
|
+
[1m[35m (6.5ms)[0m [1m[35mCREATE TABLE "accounts" ("id" serial primary key, "created_at" timestamp, "updated_at" timestamp, "provider" character varying, "synced_id" integer, "name" character varying, "oauth_access_token" character varying, "oauth_refresh_token" character varying, "oauth_expires_at" character varying)[0m
|
439
|
+
[1m[35m (1.3ms)[0m [1m[35mCREATE INDEX "index_accounts_on_synced_id" ON "accounts" USING btree ("synced_id")[0m
|
440
|
+
[1m[35m (3.3ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying PRIMARY KEY)[0m
|
441
|
+
[1m[35m (0.6ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
442
|
+
[1m[35m (0.8ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140522110454')[0m
|
443
|
+
[1m[35m (0.5ms)[0m [1m[32mINSERT INTO schema_migrations (version) VALUES ('20140522110326');
|
444
|
+
|
445
|
+
[0m
|
446
|
+
[1m[35m (2.7ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" character varying PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)[0m
|
447
|
+
[1m[36mActiveRecord::InternalMetadata Load (6.5ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", :environment], ["LIMIT", 1]]
|
448
|
+
[1m[35m (5.8ms)[0m [1m[35mBEGIN[0m
|
449
|
+
[1m[35mSQL (6.0ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", 2016-08-22 19:44:49 UTC], ["updated_at", 2016-08-22 19:44:49 UTC]]
|
450
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
451
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", :environment], ["LIMIT", 1]]
|
452
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
453
|
+
[1m[35m (0.1ms)[0m [1m[35mCOMMIT[0m
|