squint 1.0.1 → 1.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 0c6a9e87b5624ce88ea76649b81a76ff8a69192d
4
- data.tar.gz: f27f8604410c77febea1950d4fd6738ce656ce2a
2
+ SHA256:
3
+ metadata.gz: 98ccf8823024cfaf1d97d0a7042dcb6269af96158ade06703aedf79b3e158447
4
+ data.tar.gz: 1370797c3fa4b327983125277f6abe717f3b8b79e6e7bf38c9994ead82300a2b
5
5
  SHA512:
6
- metadata.gz: 712cff71d6a449dbb123e674f5ec7938b0e7c3ddac67b2e4d6255c912bd59efa67959f8f457a4ca7966c6b24eee73021f5b3558ff5e8287dd41d5a2590abf9dc
7
- data.tar.gz: ee5b00337013866ffddc92061a5ec41771fc2f3fcc2207cacf3525f736425048491b9f62c29111aaaa8a76588d83c9a9715ea91be0c52fb69fe4d0387a6b4e20
6
+ metadata.gz: b32b509cf15138f03ea7215fab15271c97a0ae1b17d98743a2ba2f2c02eba47561d5e276cd3fe62f18ccbf90fdcbe283e3291855697e02fc7def8255b29282da
7
+ data.tar.gz: 9ab6e3389ec91dec76d90244da33a010b87d5d4d14f27ba58940f821e690a7abfaffe8599cd57a7cd14fd212773fe62232a497dc52293b37fee0c7145e53ad0f
@@ -23,7 +23,8 @@
23
23
  "avatar_url": "https://avatars2.githubusercontent.com/u/1741179?v=3",
24
24
  "profile": "http://andrewfomera.com",
25
25
  "contributions": [
26
- "review"
26
+ "review",
27
+ "code"
27
28
  ]
28
29
  },
29
30
  {
@@ -39,7 +39,12 @@ module Squint
39
39
  end
40
40
  memo
41
41
  end
42
- if ActiveRecord::VERSION::STRING > '5'
42
+ if ActiveRecord::VERSION::STRING >= '5.2'
43
+ # In 5.2 the WhereClause private class no longer takes two arguments.
44
+ # Commit where it was removed:
45
+ # https://github.com/rails/rails/commit/213796fb4936dce1da2f0c097a054e1af5c25c2c#diff-c9d167bac00ff2f45c5b5e035e8a80e8
46
+ reln = ActiveRecord::Relation::WhereClause.new(reln)
47
+ elsif ActiveRecord::VERSION::STRING > '5'
43
48
  reln = ActiveRecord::Relation::WhereClause.new(reln, [])
44
49
  end
45
50
  save_args << [] if save_args.size == 1
@@ -1,3 +1,3 @@
1
1
  module Squint
2
- VERSION = "1.0.1".freeze
2
+ VERSION = "1.1.0".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: squint
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David H. Wilkins
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-08-17 00:00:00.000000000 Z
12
+ date: 2018-12-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -70,26 +70,17 @@ files:
70
70
  - readme.md
71
71
  - test/dummy/Rakefile
72
72
  - test/dummy/app/models/post.rb
73
- - test/dummy/app/models/post.rb~
74
73
  - test/dummy/config.ru
75
74
  - test/dummy/config/application.rb
76
75
  - test/dummy/config/boot.rb
77
76
  - test/dummy/config/database.yml
78
- - test/dummy/config/database.yml~
79
77
  - test/dummy/config/environment.rb
80
78
  - test/dummy/config/environments/test.rb
81
79
  - test/dummy/db/migrate/20170512185941_create_posts.rb
82
- - test/dummy/db/migrate/20170512185941_create_posts.rb~
83
80
  - test/dummy/db/schema.rb
84
- - test/dummy/log/development.log
85
- - test/dummy/log/test.log
86
81
  - test/dummy/test/fixtures/posts.yml
87
- - test/dummy/test/fixtures/posts.yml~
88
- - test/dummy/test/models/post_test.rb~
89
- - test/reports/TEST-SquintTest.xml
90
82
  - test/squint_test.rb
91
83
  - test/test_helper.rb
92
- - test/test_helper.rb~
93
84
  homepage: https://github.com/ProctorU/squint
94
85
  licenses:
95
86
  - MIT
@@ -110,30 +101,21 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
101
  version: '0'
111
102
  requirements: []
112
103
  rubyforge_project:
113
- rubygems_version: 2.6.12
104
+ rubygems_version: 2.7.6
114
105
  signing_key:
115
106
  specification_version: 4
116
107
  summary: Search PostgreSQL jsonb and hstore columns
117
108
  test_files:
118
- - test/reports/TEST-SquintTest.xml
119
- - test/test_helper.rb
120
- - test/dummy/Rakefile
121
- - test/dummy/app/models/post.rb~
122
109
  - test/dummy/app/models/post.rb
123
- - test/dummy/test/models/post_test.rb~
124
- - test/dummy/test/fixtures/posts.yml~
125
110
  - test/dummy/test/fixtures/posts.yml
126
- - test/dummy/config/database.yml~
127
111
  - test/dummy/config/environments/test.rb
128
- - test/dummy/config/application.rb
129
- - test/dummy/config/boot.rb
130
112
  - test/dummy/config/environment.rb
113
+ - test/dummy/config/application.rb
131
114
  - test/dummy/config/database.yml
115
+ - test/dummy/config/boot.rb
132
116
  - test/dummy/config.ru
133
- - test/dummy/log/development.log
134
- - test/dummy/log/test.log
117
+ - test/dummy/Rakefile
135
118
  - test/dummy/db/schema.rb
136
- - test/dummy/db/migrate/20170512185941_create_posts.rb~
137
119
  - test/dummy/db/migrate/20170512185941_create_posts.rb
138
- - test/test_helper.rb~
139
120
  - test/squint_test.rb
121
+ - test/test_helper.rb
@@ -1,2 +0,0 @@
1
- class Post < ActiveRecord::Base
2
- end
@@ -1,25 +0,0 @@
1
- # SQLite version 3.x
2
- # gem install sqlite3
3
- #
4
- # Ensure the SQLite 3 gem is defined in your Gemfile
5
- # gem 'sqlite3'
6
- #
7
- default: &default
8
- adapter: sqlite3
9
- pool: 5
10
- timeout: 5000
11
-
12
- development:
13
- <<: *default
14
- database: db/development.sqlite3
15
-
16
- # Warning: The database defined as "test" will be erased and
17
- # re-generated from your development database when you run "rake".
18
- # Do not set this db to the same as development or production.
19
- test:
20
- <<: *default
21
- database: db/test.sqlite3
22
-
23
- production:
24
- <<: *default
25
- database: db/production.sqlite3
@@ -1,12 +0,0 @@
1
- class CreatePosts < ActiveRecord::Migration
2
- def change
3
- create_table :posts do |t|
4
- t.string :title
5
- t.string :body
6
- t.jsonb :request_info
7
- t.hstore :properties
8
-
9
- t.timestamps null: false
10
- end
11
- end
12
- end
@@ -1,390 +0,0 @@
1
-  (1.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2
-  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
- Migrating to CreatePosts (20170512185941)
5
-  (0.1ms) BEGIN
6
-  (0.3ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
7
-  (0.1ms) ROLLBACK
8
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
9
- Migrating to CreatePosts (20170512185941)
10
-  (0.2ms) BEGIN
11
- SQL (15.5ms) CREATE EXTENSION IF NOT EXISTS "hstore"
12
-  (1.9ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
13
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20170512185941"]]
14
-  (0.2ms) COMMIT
15
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
-  (2.2ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
17
- FROM pg_constraint c
18
- JOIN pg_class t1 ON c.conrelid = t1.oid
19
- JOIN pg_class t2 ON c.confrelid = t2.oid
20
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
21
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
22
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
23
- WHERE c.contype = 'f'
24
- AND t1.relname = 'posts'
25
- AND t3.nspname = ANY (current_schemas(false))
26
- ORDER BY c.conname
27
-
28
-  (108.2ms) DROP DATABASE IF EXISTS "search_semi_structured_data_development"
29
-  (3275.6ms) DROP DATABASE IF EXISTS "search_semi_structured_data_test"
30
-  (223.1ms) CREATE DATABASE "search_semi_structured_data_development" ENCODING = 'unicode'
31
-  (0.7ms) CREATE DATABASE "search_semi_structured_data_test" ENCODING = 'unicode'
32
- SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
33
- SQL (12.7ms) CREATE EXTENSION IF NOT EXISTS "hstore"
34
-  (2.0ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
35
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
36
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
37
-  (0.3ms) SELECT version FROM "schema_migrations"
38
-  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
39
- SQL (1.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
40
- SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "hstore"
41
-  (4.8ms) DROP TABLE "posts" CASCADE
42
-  (6.4ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
43
-  (0.4ms) SELECT version FROM "schema_migrations"
44
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
45
-  (5008.8ms) DROP DATABASE IF EXISTS "search_semi_structured_data_test"
46
-  (108.9ms) DROP DATABASE IF EXISTS "search_semi_structured_data_test"
47
-  (222.2ms) CREATE DATABASE "search_semi_structured_data_test" ENCODING = 'unicode'
48
- SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
49
- SQL (13.3ms) CREATE EXTENSION IF NOT EXISTS "hstore"
50
-  (2.0ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
51
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
52
-  (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
53
-  (0.2ms) SELECT version FROM "schema_migrations"
54
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
55
-  (110.9ms) DROP DATABASE IF EXISTS "search_semi_structured_data_development"
56
-  (221.8ms) CREATE DATABASE "search_semi_structured_data_development" ENCODING = 'unicode'
57
- SQL (0.7ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
58
- SQL (17.5ms) CREATE EXTENSION IF NOT EXISTS "hstore"
59
-  (2.0ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
60
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
61
-  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
62
-  (0.3ms) SELECT version FROM "schema_migrations"
63
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
64
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
65
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
66
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
67
-  (1.9ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
68
- FROM pg_constraint c
69
- JOIN pg_class t1 ON c.conrelid = t1.oid
70
- JOIN pg_class t2 ON c.confrelid = t2.oid
71
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
72
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
73
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
74
- WHERE c.contype = 'f'
75
- AND t1.relname = 'posts'
76
- AND t3.nspname = ANY (current_schemas(false))
77
- ORDER BY c.conname
78
- 
79
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
80
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
81
- Migrating to CreatePosts (20170512185941)
82
-  (0.2ms) BEGIN
83
-  (3.2ms) DROP TABLE "posts"
84
- SQL (7.4ms) DROP EXTENSION IF EXISTS "hstore" CASCADE
85
- SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = $1 [["version", "20170512185941"]]
86
-  (0.9ms) COMMIT
87
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
88
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
89
- Migrating to CreatePosts (20170512185941)
90
-  (0.2ms) BEGIN
91
- SQL (19.0ms) CREATE EXTENSION IF NOT EXISTS "hstore"
92
-  (3.9ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" jsonb, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
93
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20170512185941"]]
94
-  (0.2ms) COMMIT
95
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
96
-  (1.5ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
97
- FROM pg_constraint c
98
- JOIN pg_class t1 ON c.conrelid = t1.oid
99
- JOIN pg_class t2 ON c.confrelid = t2.oid
100
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
101
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
102
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
103
- WHERE c.contype = 'f'
104
- AND t1.relname = 'posts'
105
- AND t3.nspname = ANY (current_schemas(false))
106
- ORDER BY c.conname
107
-
108
-  (109.9ms) DROP DATABASE IF EXISTS "search_semi_structured_data_test"
109
-  (245.4ms) CREATE DATABASE "search_semi_structured_data_test" ENCODING = 'unicode'
110
- SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
111
- SQL (15.5ms) CREATE EXTENSION IF NOT EXISTS "hstore"
112
-  (2.7ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" jsonb, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
113
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
114
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
115
-  (0.4ms) SELECT version FROM "schema_migrations"
116
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
117
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
118
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
119
- Migrating to CreatePosts (20170512185941)
120
-  (0.2ms) BEGIN
121
-  (0.8ms) DROP TABLE "posts"
122
- SQL (2.6ms) DROP EXTENSION IF EXISTS "hstore" CASCADE
123
- SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = $1 [["version", "20170512185941"]]
124
-  (1.1ms) COMMIT
125
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
126
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
127
- Migrating to CreatePosts (20170512185941)
128
-  (0.2ms) BEGIN
129
- SQL (14.5ms) CREATE EXTENSION IF NOT EXISTS "hstore"
130
-  (2.6ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
131
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20170512185941"]]
132
-  (0.2ms) COMMIT
133
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
134
-  (1.6ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
135
- FROM pg_constraint c
136
- JOIN pg_class t1 ON c.conrelid = t1.oid
137
- JOIN pg_class t2 ON c.confrelid = t2.oid
138
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
139
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
140
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
141
- WHERE c.contype = 'f'
142
- AND t1.relname = 'posts'
143
- AND t3.nspname = ANY (current_schemas(false))
144
- ORDER BY c.conname
145
-
146
-  (110.8ms) DROP DATABASE IF EXISTS "search_semi_structured_data_test"
147
-  (224.8ms) CREATE DATABASE "search_semi_structured_data_test" ENCODING = 'unicode'
148
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
149
- SQL (15.2ms) CREATE EXTENSION IF NOT EXISTS "hstore"
150
-  (2.6ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
151
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
152
-  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
153
-  (0.3ms) SELECT version FROM "schema_migrations"
154
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
155
-  (0.1ms) DROP DATABASE IF EXISTS "squint_test"
156
-  (231.6ms) CREATE DATABASE "squint_test" ENCODING = 'unicode'
157
- SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
158
- SQL (16.7ms) CREATE EXTENSION IF NOT EXISTS "hstore"
159
-  (2.9ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
160
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
161
-  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
162
-  (0.4ms) SELECT version FROM "schema_migrations"
163
-  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
164
-  (5013.0ms) DROP DATABASE IF EXISTS "squint_test"
165
-  (110.7ms) DROP DATABASE IF EXISTS "squint_test"
166
-  (212.9ms) CREATE DATABASE "squint_test" ENCODING = 'unicode'
167
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
168
- SQL (15.0ms) CREATE EXTENSION IF NOT EXISTS "hstore"
169
-  (2.7ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
170
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
171
-  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
172
-  (0.3ms) SELECT version FROM "schema_migrations"
173
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
174
-  (105.9ms) DROP DATABASE IF EXISTS "squint_development"
175
-  (112.3ms) DROP DATABASE IF EXISTS "squint_test"
176
-  (225.8ms) CREATE DATABASE "squint_development" ENCODING = 'unicode'
177
-  (224.7ms) CREATE DATABASE "squint_test" ENCODING = 'unicode'
178
- SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
179
- SQL (12.3ms) CREATE EXTENSION IF NOT EXISTS "hstore"
180
-  (1.9ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
181
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
182
-  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
183
-  (0.3ms) SELECT version FROM "schema_migrations"
184
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
185
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
186
- SQL (11.7ms) CREATE EXTENSION IF NOT EXISTS "hstore"
187
-  (1.8ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
188
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
189
-  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
190
-  (0.3ms) SELECT version FROM "schema_migrations"
191
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
192
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
193
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
194
- SQL (10.3ms) CREATE EXTENSION IF NOT EXISTS "hstore"
195
-  (1.7ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
196
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
197
-  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
198
-  (0.3ms) SELECT version FROM "schema_migrations"
199
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
200
- SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
201
- SQL (9.7ms) CREATE EXTENSION IF NOT EXISTS "hstore"
202
-  (1.8ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
203
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
204
-  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
205
-  (0.3ms) SELECT version FROM "schema_migrations"
206
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
207
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
208
-  (106.8ms) DROP DATABASE IF EXISTS "squint_development"
209
-  (5011.5ms) DROP DATABASE IF EXISTS "squint_test"
210
-  (223.1ms) CREATE DATABASE "squint_development" ENCODING = 'unicode'
211
-  (0.7ms) CREATE DATABASE "squint_test" ENCODING = 'unicode'
212
- SQL (0.4ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
213
- SQL (15.0ms) CREATE EXTENSION IF NOT EXISTS "hstore"
214
-  (2.6ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
215
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
216
-  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
217
-  (0.3ms) SELECT version FROM "schema_migrations"
218
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
219
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
220
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "hstore"
221
-  (2.1ms) DROP TABLE "posts" CASCADE
222
-  (2.3ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
223
-  (0.3ms) SELECT version FROM "schema_migrations"
224
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
225
-  (106.9ms) DROP DATABASE IF EXISTS "squint_development"
226
-  (108.0ms) DROP DATABASE IF EXISTS "squint_test"
227
-  (211.6ms) CREATE DATABASE "squint_development" ENCODING = 'unicode'
228
-  (223.0ms) CREATE DATABASE "squint_test" ENCODING = 'unicode'
229
- SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
230
- SQL (27.4ms) CREATE EXTENSION IF NOT EXISTS "hstore"
231
-  (2.1ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
232
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
233
-  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
234
-  (0.2ms) SELECT version FROM "schema_migrations"
235
-  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
236
- SQL (0.1ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
237
- SQL (9.6ms) CREATE EXTENSION IF NOT EXISTS "hstore"
238
-  (1.8ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
239
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
240
-  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
241
-  (0.3ms) SELECT version FROM "schema_migrations"
242
-  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
243
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
244
-  (106.9ms) DROP DATABASE IF EXISTS "squint_development"
245
-  (3520.2ms) DROP DATABASE IF EXISTS "squint_test"
246
-  (224.6ms) CREATE DATABASE "squint_development" ENCODING = 'unicode'
247
-  (224.0ms) CREATE DATABASE "squint_test" ENCODING = 'unicode'
248
- SQL (0.5ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
249
- SQL (26.0ms) CREATE EXTENSION IF NOT EXISTS "hstore"
250
-  (2.3ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
251
-  (0.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
252
-  (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
253
-  (0.2ms) SELECT version FROM "schema_migrations"
254
-  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
255
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
256
- SQL (9.5ms) CREATE EXTENSION IF NOT EXISTS "hstore"
257
-  (1.7ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
258
-  (0.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
259
-  (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
260
-  (0.2ms) SELECT version FROM "schema_migrations"
261
-  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
262
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
263
-  (107.1ms) DROP DATABASE IF EXISTS "squint_development"
264
-  (107.2ms) DROP DATABASE IF EXISTS "squint_test"
265
-  (222.1ms) CREATE DATABASE "squint_development" ENCODING = 'unicode'
266
-  (223.4ms) CREATE DATABASE "squint_test" ENCODING = 'unicode'
267
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
268
- SQL (11.4ms) CREATE EXTENSION IF NOT EXISTS "hstore"
269
-  (2.1ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
270
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
271
-  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
272
-  (0.3ms) SELECT version FROM "schema_migrations"
273
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
274
- SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
275
- SQL (11.7ms) CREATE EXTENSION IF NOT EXISTS "hstore"
276
-  (2.0ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
277
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
278
-  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
279
-  (0.3ms) SELECT version FROM "schema_migrations"
280
-  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
281
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
282
-  (109.8ms) DROP DATABASE IF EXISTS "squint_development"
283
-  (109.4ms) DROP DATABASE IF EXISTS "squint_test"
284
-  (222.5ms) CREATE DATABASE "squint_development" ENCODING = 'unicode'
285
-  (212.2ms) CREATE DATABASE "squint_test" ENCODING = 'unicode'
286
- SQL (0.6ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
287
- SQL (27.8ms) CREATE EXTENSION IF NOT EXISTS "hstore"
288
-  (2.5ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
289
-  (0.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)
290
-  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
291
-  (0.3ms) SELECT version FROM "schema_migrations"
292
-  (0.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
293
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
294
- SQL (9.3ms) CREATE EXTENSION IF NOT EXISTS "hstore"
295
-  (1.6ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
296
-  (0.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
297
-  (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
298
-  (0.2ms) SELECT version FROM "schema_migrations"
299
-  (0.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20170512185941')
300
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
301
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
302
-  (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
303
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
304
- Migrating to CreatePosts (20170512185941)
305
-  (0.1ms) BEGIN
306
- SQL (11.6ms) CREATE EXTENSION IF NOT EXISTS "hstore"
307
-  (1.6ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
308
-  (0.5ms) CREATE INDEX "index_posts_on_request_info" ON "posts" USING GIN ("request_info")
309
-  (0.5ms) CREATE INDEX "index_posts_on_properties" ON "posts" USING GIN ("properties")
310
-  (0.4ms) CREATE INDEX "index_posts_on_storext_jsonb_attributes" ON "posts" USING GIN ("storext_jsonb_attributes")
311
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20170512185941"]]
312
-  (0.2ms) COMMIT
313
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
314
-  (1.4ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
315
- FROM pg_constraint c
316
- JOIN pg_class t1 ON c.conrelid = t1.oid
317
- JOIN pg_class t2 ON c.confrelid = t2.oid
318
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
319
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
320
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
321
- WHERE c.contype = 'f'
322
- AND t1.relname = 'posts'
323
- AND t3.nspname = ANY (current_schemas(false))
324
- ORDER BY c.conname
325
- 
326
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
327
-  (0.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
328
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
329
- Migrating to CreatePosts (20170512185941)
330
-  (0.2ms) BEGIN
331
- SQL (9.9ms) CREATE EXTENSION IF NOT EXISTS "hstore"
332
-  (1.6ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
333
-  (0.5ms) CREATE INDEX "index_posts_on_request_info" ON "posts" USING GIN ("request_info")
334
-  (0.4ms) CREATE INDEX "index_posts_on_properties" ON "posts" USING GIN ("properties")
335
-  (0.2ms) CREATE INDEX "index_posts_on_storext_jsonb_attributes" ON "posts" USING GIN ("storext_jsonb_attributes")
336
-  (0.3ms) CREATE INDEX "index_posts_on_storext_hstore_attributes" ON "posts" USING GIN ("storext_hstore_attributes")
337
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20170512185941"]]
338
-  (0.2ms) COMMIT
339
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
340
-  (1.5ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
341
- FROM pg_constraint c
342
- JOIN pg_class t1 ON c.conrelid = t1.oid
343
- JOIN pg_class t2 ON c.confrelid = t2.oid
344
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
345
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
346
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
347
- WHERE c.contype = 'f'
348
- AND t1.relname = 'posts'
349
- AND t3.nspname = ANY (current_schemas(false))
350
- ORDER BY c.conname
351
-
352
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
353
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "hstore"
354
-  (3.5ms) DROP TABLE "posts" CASCADE
355
-  (2.0ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
356
-  (0.8ms) CREATE INDEX "index_posts_on_properties" ON "posts" USING gin ("properties")
357
-  (0.5ms) CREATE INDEX "index_posts_on_request_info" ON "posts" USING gin ("request_info")
358
-  (0.4ms) CREATE INDEX "index_posts_on_storext_hstore_attributes" ON "posts" USING gin ("storext_hstore_attributes")
359
-  (0.5ms) CREATE INDEX "index_posts_on_storext_jsonb_attributes" ON "posts" USING gin ("storext_jsonb_attributes")
360
-  (0.3ms) SELECT version FROM "schema_migrations"
361
- SQL (0.1ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
362
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "hstore"
363
-  (2.3ms) DROP TABLE "posts" CASCADE
364
-  (1.9ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
365
-  (0.8ms) CREATE INDEX "index_posts_on_properties" ON "posts" USING gin ("properties")
366
-  (0.4ms) CREATE INDEX "index_posts_on_request_info" ON "posts" USING gin ("request_info")
367
-  (0.3ms) CREATE INDEX "index_posts_on_storext_hstore_attributes" ON "posts" USING gin ("storext_hstore_attributes")
368
-  (0.4ms) CREATE INDEX "index_posts_on_storext_jsonb_attributes" ON "posts" USING gin ("storext_jsonb_attributes")
369
-  (0.2ms) SELECT version FROM "schema_migrations"
370
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
371
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
372
- SQL (0.1ms) CREATE EXTENSION IF NOT EXISTS "hstore"
373
-  (2.4ms) DROP TABLE "posts" CASCADE
374
-  (2.1ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
375
-  (0.9ms) CREATE INDEX "index_posts_on_properties" ON "posts" USING gin ("properties")
376
-  (0.5ms) CREATE INDEX "index_posts_on_request_info" ON "posts" USING gin ("request_info")
377
-  (0.4ms) CREATE INDEX "index_posts_on_storext_hstore_attributes" ON "posts" USING gin ("storext_hstore_attributes")
378
-  (0.4ms) CREATE INDEX "index_posts_on_storext_jsonb_attributes" ON "posts" USING gin ("storext_jsonb_attributes")
379
-  (0.3ms) SELECT version FROM "schema_migrations"
380
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
381
- SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "hstore"
382
-  (2.0ms) DROP TABLE "posts" CASCADE
383
-  (1.8ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" character varying, "request_info" jsonb, "properties" hstore, "storext_jsonb_attributes" jsonb, "storext_hstore_attributes" hstore, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
384
-  (0.8ms) CREATE INDEX "index_posts_on_properties" ON "posts" USING gin ("properties")
385
-  (0.5ms) CREATE INDEX "index_posts_on_request_info" ON "posts" USING gin ("request_info")
386
-  (0.4ms) CREATE INDEX "index_posts_on_storext_hstore_attributes" ON "posts" USING gin ("storext_hstore_attributes")
387
-  (0.4ms) CREATE INDEX "index_posts_on_storext_jsonb_attributes" ON "posts" USING gin ("storext_jsonb_attributes")
388
-  (0.3ms) SELECT version FROM "schema_migrations"
389
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
390
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"