picco_blog 1.4.1 → 1.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 47b03e232bcecf9ed899e5151ed5c84c6592d584ef78c0a2d6e7ec7f17a2ecd0
4
- data.tar.gz: c049eb476597fc2f28ba05611ce333ef904755f3d47c23916576543b51142fc0
3
+ metadata.gz: df8b753b80551f94a6bfdaf2ea9c67a2a8b52f4b82f22aa0a58374bd181511d7
4
+ data.tar.gz: 7862cb4ff2a2df1a4e53166d90077605fb0c9f42ace288052347b11910fe8df2
5
5
  SHA512:
6
- metadata.gz: 7c77f4053110887fb4a7a42cbae550556e6fbfea59e24b356a5265b95b237dcdc1a53f296347c138e8cb66941427e2b849aa17b13e12a0e08f747d3cfb1058ac
7
- data.tar.gz: 74c25d7a48a7aeb0f84f9f034233c28723ee7409a86c9d8e9a33d75b65f63f8d43579ec17d3ba61960c332867a2cf31d242aabda4c95f333d12249471b4849ba
6
+ metadata.gz: 9a8e972c95ad4abb26dfa9a69133a01f88360353d812acb874b16ff8ddc1604e27cb8ae19be8ef781a082d7c1b878c7c565621d1bdcc0e7470726168b7194a9e
7
+ data.tar.gz: 90da5191a4a3ac07f17acc47b5223c7312f14f543b4427a042e1e001ca7e74aca60195a4d67fe6c69a030fdfa2cd0c9da27563530ddea50ab78662ee8e535436
@@ -2,8 +2,8 @@
2
2
 
3
3
  <div>
4
4
 
5
- <% if post.featured_image_stored? %>
6
- <%= link_to image_tag(post.featured_image.thumb('847x300#').url, :class => "mb24"), post_path(post) %>
5
+ <% if @post.featured_image_stored? %>
6
+ <%= link_to image_tag(@post.featured_image.thumb('847x300#').url, :class => "mb24"), post_path(@post) %>
7
7
  <% end %>
8
8
 
9
9
  <p>
@@ -1,3 +1,3 @@
1
1
  module PiccoBlog
2
- VERSION = "1.4.1"
2
+ VERSION = "1.4.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: picco_blog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Bango
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-02-18 00:00:00.000000000 Z
11
+ date: 2019-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -253,11 +253,7 @@ files:
253
253
  - test/dummy/config/locales/en.yml
254
254
  - test/dummy/config/routes.rb
255
255
  - test/dummy/config/secrets.yml
256
- - test/dummy/db/development.sqlite3
257
256
  - test/dummy/db/schema.rb
258
- - test/dummy/db/test.sqlite3
259
- - test/dummy/log/development.log
260
- - test/dummy/log/test.log
261
257
  - test/dummy/public/404.html
262
258
  - test/dummy/public/422.html
263
259
  - test/dummy/public/500.html
@@ -271,7 +267,7 @@ files:
271
267
  - test/models/picco_blog/post_test.rb
272
268
  - test/picco_blog_test.rb
273
269
  - test/test_helper.rb
274
- homepage: http://www.acentrosys.com
270
+ homepage: https://github.com/acentro/picco_blog
275
271
  licenses:
276
272
  - MIT
277
273
  metadata: {}
@@ -293,7 +289,7 @@ requirements: []
293
289
  rubygems_version: 3.0.1
294
290
  signing_key:
295
291
  specification_version: 4
296
- summary: PiccoBlog is a simple and light weight Ruby on Rails blog engine.
292
+ summary: PiccoBlog is a simple Ruby on Rails markdown blog engine.
297
293
  test_files:
298
294
  - test/dummy/app/controllers/application_controller.rb
299
295
  - test/dummy/app/views/layouts/application.html.erb
@@ -329,10 +325,6 @@ test_files:
329
325
  - test/dummy/public/500.html
330
326
  - test/dummy/public/404.html
331
327
  - test/dummy/db/schema.rb
332
- - test/dummy/db/test.sqlite3
333
- - test/dummy/db/development.sqlite3
334
- - test/dummy/log/test.log
335
- - test/dummy/log/development.log
336
328
  - test/dummy/README.rdoc
337
329
  - test/integration/navigation_test.rb
338
330
  - test/picco_blog_test.rb
Binary file
@@ -1,364 +0,0 @@
1
-  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
-  (0.3ms) select sqlite_version(*)
3
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
- Migrating to CreatePiccoBlogPosts (20160325154432)
6
-  (0.1ms) begin transaction
7
-  (0.5ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160325154432"]]
9
-  (0.7ms) commit transaction
10
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
- Migrating to CreatePiccoBlogComments (20160325215703)
13
-  (0.1ms) begin transaction
14
-  (0.8ms) CREATE TABLE "picco_blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "article_id" integer, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
15
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160325215703"]]
16
-  (1.9ms) commit transaction
17
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
19
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21
- Migrating to CreatePiccoBlogComments (20160325215703)
22
-  (0.1ms) begin transaction
23
-  (1.3ms) DROP TABLE "picco_blog_comments"
24
- SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20160325215703"]]
25
-  (2.4ms) commit transaction
26
- Migrating to CreatePiccoBlogPosts (20160325154432)
27
-  (0.1ms) begin transaction
28
-  (0.8ms) DROP TABLE "picco_blog_posts"
29
- SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20160325154432"]]
30
-  (0.8ms) commit transaction
31
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
32
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
33
- Migrating to CreatePiccoBlogPosts (20160325154432)
34
-  (0.1ms) begin transaction
35
-  (0.4ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
36
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160325154432"]]
37
-  (0.7ms) commit transaction
38
- Migrating to CreatePiccoBlogComments (20160325215703)
39
-  (0.1ms) begin transaction
40
-  (0.3ms) CREATE TABLE "picco_blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
41
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160325215703"]]
42
-  (0.8ms) commit transaction
43
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
44
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
45
- Migrating to AddAuthorIdToPiccoBlogPosts (20160326004935)
46
-  (0.1ms) begin transaction
47
-  (0.7ms) ALTER TABLE "picco_blog_posts" ADD "author_id" integer
48
-  (0.3ms) select sqlite_version(*)
49
-  (0.2ms) CREATE INDEX "index_posts_on_author_id" ON "posts" ("author_id")
50
-  (0.3ms) rollback transaction
51
- ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
52
- Migrating to AddAuthorIdToPiccoBlogPosts (20160326004935)
53
-  (0.1ms) begin transaction
54
-  (0.4ms) ALTER TABLE "picco_blog_posts" ADD "author_id" integer
55
-  (0.1ms) select sqlite_version(*)
56
-  (0.4ms) CREATE INDEX "index_picco_blog_posts_on_author_id" ON "picco_blog_posts" ("author_id")
57
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160326004935"]]
58
-  (3.9ms) commit transaction
59
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
60
-  (0.1ms)  SELECT sql
61
- FROM sqlite_master
62
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
63
- UNION ALL
64
- SELECT sql
65
- FROM sqlite_temp_master
66
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
67
- 
68
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
69
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
70
- ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
71
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
72
-  (0.2ms)  SELECT sql
73
- FROM sqlite_master
74
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
75
- UNION ALL
76
- SELECT sql
77
- FROM sqlite_temp_master
78
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
79
- 
80
-  (6.8ms) DROP TABLE "picco_blog_comments"
81
-  (2.8ms) CREATE TABLE "picco_blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
82
-  (1.6ms) DROP TABLE "picco_blog_posts"
83
-  (4.2ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer)
84
-  (0.1ms) select sqlite_version(*)
85
-  (0.8ms) CREATE INDEX "index_picco_blog_posts_on_author_id" ON "picco_blog_posts" ("author_id")
86
-  (0.4ms) SELECT version FROM "schema_migrations"
87
-  (4.4ms) DROP TABLE "picco_blog_comments"
88
-  (1.0ms) CREATE TABLE "picco_blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
89
-  (1.6ms) DROP TABLE "picco_blog_posts"
90
-  (1.9ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer) 
91
-  (0.1ms) select sqlite_version(*)
92
-  (1.1ms) CREATE INDEX "index_picco_blog_posts_on_author_id" ON "picco_blog_posts" ("author_id")
93
-  (0.8ms) SELECT version FROM "schema_migrations"
94
-  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160325154432')
95
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160325215703')
96
- ActiveRecord::SchemaMigration Load (4.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
97
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
98
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
99
-  (0.2ms)  SELECT sql
100
- FROM sqlite_master
101
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
102
- UNION ALL
103
- SELECT sql
104
- FROM sqlite_temp_master
105
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
106
- 
107
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
108
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
109
- Migrating to AddAuthorIdToPiccoBlogPosts (20160326004935)
110
-  (0.1ms) begin transaction
111
-  (0.1ms) SELECT sql
112
- FROM sqlite_master
113
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
114
- UNION ALL
115
- SELECT sql
116
- FROM sqlite_temp_master
117
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
118
-
119
-  (0.7ms) DROP INDEX "index_picco_blog_posts_on_author_id"
120
-  (0.4ms) CREATE TEMPORARY TABLE "apicco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer)
121
-  (0.4ms) SELECT * FROM "picco_blog_posts"
122
-  (0.7ms) DROP TABLE "picco_blog_posts"
123
-  (0.1ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
124
-  (0.0ms) SELECT * FROM "apicco_blog_posts"
125
-  (0.2ms) DROP TABLE "apicco_blog_posts"
126
- SQL (0.3ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20160326004935"]]
127
-  (2.3ms) commit transaction
128
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
129
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
130
- Migrating to AddAuthorIdToPiccoBlogPosts (20160326004935)
131
-  (0.1ms) begin transaction
132
-  (0.5ms) ALTER TABLE "picco_blog_posts" ADD "author_id" integer
133
-  (0.4ms) select sqlite_version(*)
134
-  (0.2ms) CREATE INDEX "index_picco_blog_posts_on_author_id" ON "picco_blog_posts" ("author_id")
135
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160326004935"]]
136
-  (0.9ms) commit transaction
137
- Migrating to CreateSlugs (20160430141936)
138
-  (0.1ms) begin transaction
139
-  (0.4ms) CREATE TABLE "slugs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "sluggable_id" integer NOT NULL, "sluggable_type" varchar NOT NULL, "active" boolean DEFAULT 't' NOT NULL, "slug" varchar(126) NOT NULL, "scope" varchar(126), "created_at" datetime) 
140
-  (0.1ms) CREATE INDEX "slugs_for_record" ON "slugs" ("sluggable_type", "sluggable_id", "active")
141
-  (0.2ms)  SELECT sql
142
- FROM sqlite_master
143
- WHERE name='slugs_for_record' AND type='index'
144
- UNION ALL
145
- SELECT sql
146
- FROM sqlite_temp_master
147
- WHERE name='slugs_for_record' AND type='index'
148
- 
149
-  (0.3ms) CREATE UNIQUE INDEX "slugs_unique" ON "slugs" ("sluggable_type", "scope", "slug")
150
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160430141936"]]
151
-  (1.0ms) commit transaction
152
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
153
-  (0.1ms) SELECT sql
154
- FROM sqlite_master
155
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
156
- UNION ALL
157
- SELECT sql
158
- FROM sqlite_temp_master
159
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
160
-
161
-  (0.1ms)  SELECT sql
162
- FROM sqlite_master
163
- WHERE name='slugs_unique' AND type='index'
164
- UNION ALL
165
- SELECT sql
166
- FROM sqlite_temp_master
167
- WHERE name='slugs_unique' AND type='index'
168
- 
169
-  (0.1ms) SELECT sql
170
- FROM sqlite_master
171
- WHERE name='slugs_for_record' AND type='index'
172
- UNION ALL
173
- SELECT sql
174
- FROM sqlite_temp_master
175
- WHERE name='slugs_for_record' AND type='index'
176
-
177
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
178
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
179
- Migrating to CreateSlugs (20160430141936)
180
-  (0.1ms) begin transaction
181
-  (0.3ms) SELECT sql
182
- FROM sqlite_master
183
- WHERE name='slugs_unique' AND type='index'
184
- UNION ALL
185
- SELECT sql
186
- FROM sqlite_temp_master
187
- WHERE name='slugs_unique' AND type='index'
188
-
189
-  (0.1ms)  SELECT sql
190
- FROM sqlite_master
191
- WHERE name='slugs_for_record' AND type='index'
192
- UNION ALL
193
- SELECT sql
194
- FROM sqlite_temp_master
195
- WHERE name='slugs_for_record' AND type='index'
196
- 
197
-  (0.7ms) DROP INDEX "slugs_unique"
198
-  (0.1ms)  SELECT sql
199
- FROM sqlite_master
200
- WHERE name='slugs_for_record' AND type='index'
201
- UNION ALL
202
- SELECT sql
203
- FROM sqlite_temp_master
204
- WHERE name='slugs_for_record' AND type='index'
205
- 
206
-  (0.6ms) DROP INDEX "slugs_for_record"
207
-  (0.4ms) DROP TABLE "slugs"
208
- SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20160430141936"]]
209
-  (1.0ms) commit transaction
210
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
211
-  (0.1ms)  SELECT sql
212
- FROM sqlite_master
213
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
214
- UNION ALL
215
- SELECT sql
216
- FROM sqlite_temp_master
217
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
218
- 
219
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
220
- Migrating to AddSlugToPosts (20160515161632)
221
-  (0.1ms) begin transaction
222
-  (0.2ms) ALTER TABLE "posts" ADD "slug" varchar
223
-  (0.0ms) rollback transaction
224
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
225
- Migrating to AddSlugToPiccoBlogPosts (20160515161632)
226
-  (0.1ms) begin transaction
227
-  (0.5ms) ALTER TABLE "picco_blog_posts" ADD "slug" varchar
228
-  (0.1ms) select sqlite_version(*)
229
-  (0.1ms)  SELECT sql
230
- FROM sqlite_master
231
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
232
- UNION ALL
233
- SELECT sql
234
- FROM sqlite_temp_master
235
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
236
- 
237
-  (0.8ms) CREATE INDEX "index_picco_blog_posts_on_slug" ON "picco_blog_posts" ("slug")
238
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160515161632"]]
239
-  (0.8ms) commit transaction
240
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
241
-  (0.1ms) SELECT sql
242
- FROM sqlite_master
243
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
244
- UNION ALL
245
- SELECT sql
246
- FROM sqlite_temp_master
247
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
248
-
249
-  (0.1ms)  SELECT sql
250
- FROM sqlite_master
251
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
252
- UNION ALL
253
- SELECT sql
254
- FROM sqlite_temp_master
255
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
256
- 
257
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
258
- Migrating to CreateFriendlyIdSlugs (20160515182921)
259
-  (0.1ms) begin transaction
260
-  (0.8ms) CREATE TABLE "friendly_id_slugs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "slug" varchar NOT NULL, "sluggable_id" integer NOT NULL, "sluggable_type" varchar(50), "scope" varchar, "created_at" datetime) 
261
-  (0.1ms) select sqlite_version(*)
262
-  (0.1ms) CREATE INDEX "index_friendly_id_slugs_on_sluggable_id" ON "friendly_id_slugs" ("sluggable_id")
263
-  (0.1ms) SELECT sql
264
- FROM sqlite_master
265
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
266
- UNION ALL
267
- SELECT sql
268
- FROM sqlite_temp_master
269
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
270
-
271
-  (0.1ms) CREATE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type" ON "friendly_id_slugs" ("slug", "sluggable_type")
272
-  (0.1ms) SELECT sql
273
- FROM sqlite_master
274
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
275
- UNION ALL
276
- SELECT sql
277
- FROM sqlite_temp_master
278
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
279
-
280
-  (0.1ms)  SELECT sql
281
- FROM sqlite_master
282
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
283
- UNION ALL
284
- SELECT sql
285
- FROM sqlite_temp_master
286
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
287
- 
288
-  (0.4ms) CREATE UNIQUE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope" ON "friendly_id_slugs" ("slug", "sluggable_type", "scope")
289
-  (0.1ms)  SELECT sql
290
- FROM sqlite_master
291
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
292
- UNION ALL
293
- SELECT sql
294
- FROM sqlite_temp_master
295
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
296
- 
297
-  (0.1ms) SELECT sql
298
- FROM sqlite_master
299
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
300
- UNION ALL
301
- SELECT sql
302
- FROM sqlite_temp_master
303
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
304
-
305
-  (0.1ms)  SELECT sql
306
- FROM sqlite_master
307
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
308
- UNION ALL
309
- SELECT sql
310
- FROM sqlite_temp_master
311
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
312
- 
313
-  (0.1ms) CREATE INDEX "index_friendly_id_slugs_on_sluggable_type" ON "friendly_id_slugs" ("sluggable_type")
314
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160515182921"]]
315
-  (3.2ms) commit transaction
316
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
317
-  (0.1ms) SELECT sql
318
- FROM sqlite_master
319
- WHERE name='index_friendly_id_slugs_on_sluggable_type' AND type='index'
320
- UNION ALL
321
- SELECT sql
322
- FROM sqlite_temp_master
323
- WHERE name='index_friendly_id_slugs_on_sluggable_type' AND type='index'
324
-
325
-  (0.1ms)  SELECT sql
326
- FROM sqlite_master
327
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
328
- UNION ALL
329
- SELECT sql
330
- FROM sqlite_temp_master
331
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
332
- 
333
-  (0.1ms) SELECT sql
334
- FROM sqlite_master
335
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
336
- UNION ALL
337
- SELECT sql
338
- FROM sqlite_temp_master
339
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
340
-
341
-  (0.1ms)  SELECT sql
342
- FROM sqlite_master
343
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
344
- UNION ALL
345
- SELECT sql
346
- FROM sqlite_temp_master
347
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
348
- 
349
-  (0.1ms) SELECT sql
350
- FROM sqlite_master
351
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
352
- UNION ALL
353
- SELECT sql
354
- FROM sqlite_temp_master
355
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
356
-
357
-  (0.1ms)  SELECT sql
358
- FROM sqlite_master
359
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
360
- UNION ALL
361
- SELECT sql
362
- FROM sqlite_temp_master
363
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
364
- 
@@ -1,421 +0,0 @@
1
-  (1.2ms) CREATE TABLE "picco_blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
-  (1.1ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer)
3
-  (0.5ms) select sqlite_version(*)
4
-  (0.9ms) CREATE INDEX "index_picco_blog_posts_on_author_id" ON "picco_blog_posts" ("author_id")
5
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
6
-  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
-  (0.1ms) SELECT version FROM "schema_migrations"
8
-  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20160326004935')
9
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
10
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
- Migrating to CreatePiccoBlogPosts (20160325154432)
12
-  (0.1ms) begin transaction
13
-  (0.3ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
14
-  (0.1ms) rollback transaction
15
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
-  (2.8ms) CREATE TABLE "picco_blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
17
-  (1.8ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer)
18
-  (0.2ms) select sqlite_version(*)
19
-  (1.9ms) CREATE INDEX "index_picco_blog_posts_on_author_id" ON "picco_blog_posts" ("author_id")
20
-  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
21
-  (2.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22
-  (0.2ms) SELECT version FROM "schema_migrations"
23
-  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20160326004935')
24
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
25
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
26
- Migrating to CreatePiccoBlogPosts (20160325154432)
27
-  (0.2ms) begin transaction
28
-  (0.3ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
29
-  (0.1ms) rollback transaction
30
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
31
-  (2.5ms) DROP TABLE "picco_blog_comments"
32
-  (1.6ms) CREATE TABLE "picco_blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
33
-  (1.4ms) DROP TABLE "picco_blog_posts"
34
-  (2.5ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer)
35
-  (0.1ms) select sqlite_version(*)
36
-  (1.0ms) CREATE INDEX "index_picco_blog_posts_on_author_id" ON "picco_blog_posts" ("author_id")
37
-  (0.9ms) SELECT version FROM "schema_migrations"
38
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
39
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
40
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
41
-  (0.1ms)  SELECT sql
42
- FROM sqlite_master
43
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
44
- UNION ALL
45
- SELECT sql
46
- FROM sqlite_temp_master
47
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
48
- 
49
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
50
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
51
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
52
-  (2.3ms) CREATE TABLE "friendly_id_slugs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "slug" varchar NOT NULL, "sluggable_id" integer NOT NULL, "sluggable_type" varchar(50), "scope" varchar, "created_at" datetime) 
53
-  (0.6ms) select sqlite_version(*)
54
-  (1.4ms) CREATE UNIQUE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope" ON "friendly_id_slugs" ("slug", "sluggable_type", "scope")
55
-  (0.1ms) SELECT sql
56
- FROM sqlite_master
57
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
58
- UNION ALL
59
- SELECT sql
60
- FROM sqlite_temp_master
61
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
62
-
63
-  (1.3ms) CREATE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type" ON "friendly_id_slugs" ("slug", "sluggable_type")
64
-  (0.1ms) SELECT sql
65
- FROM sqlite_master
66
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
67
- UNION ALL
68
- SELECT sql
69
- FROM sqlite_temp_master
70
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
71
-
72
-  (0.1ms)  SELECT sql
73
- FROM sqlite_master
74
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
75
- UNION ALL
76
- SELECT sql
77
- FROM sqlite_temp_master
78
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
79
- 
80
-  (1.3ms) CREATE INDEX "index_friendly_id_slugs_on_sluggable_id" ON "friendly_id_slugs" ("sluggable_id")
81
-  (0.1ms)  SELECT sql
82
- FROM sqlite_master
83
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
84
- UNION ALL
85
- SELECT sql
86
- FROM sqlite_temp_master
87
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
88
- 
89
-  (0.1ms) SELECT sql
90
- FROM sqlite_master
91
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
92
- UNION ALL
93
- SELECT sql
94
- FROM sqlite_temp_master
95
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
96
-
97
-  (0.1ms)  SELECT sql
98
- FROM sqlite_master
99
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
100
- UNION ALL
101
- SELECT sql
102
- FROM sqlite_temp_master
103
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
104
- 
105
-  (1.2ms) CREATE INDEX "index_friendly_id_slugs_on_sluggable_type" ON "friendly_id_slugs" ("sluggable_type")
106
-  (1.2ms) CREATE TABLE "picco_blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
107
-  (1.3ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer, "slug" varchar)
108
-  (1.3ms) CREATE INDEX "index_picco_blog_posts_on_author_id" ON "picco_blog_posts" ("author_id")
109
-  (0.2ms) SELECT sql
110
- FROM sqlite_master
111
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
112
- UNION ALL
113
- SELECT sql
114
- FROM sqlite_temp_master
115
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
116
-
117
-  (1.5ms) CREATE INDEX "index_picco_blog_posts_on_slug" ON "picco_blog_posts" ("slug")
118
-  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
119
-  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
120
-  (0.1ms) SELECT version FROM "schema_migrations"
121
-  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20160515182921')
122
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
123
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
124
- Migrating to CreatePiccoBlogPosts (20160325154432)
125
-  (0.1ms) begin transaction
126
-  (0.2ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
127
-  (0.1ms) rollback transaction
128
-  (3.8ms) DROP TABLE "friendly_id_slugs"
129
-  (1.4ms) CREATE TABLE "friendly_id_slugs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "slug" varchar NOT NULL, "sluggable_id" integer NOT NULL, "sluggable_type" varchar(50), "scope" varchar, "created_at" datetime)
130
-  (0.1ms) select sqlite_version(*)
131
-  (1.2ms) CREATE UNIQUE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope" ON "friendly_id_slugs" ("slug", "sluggable_type", "scope")
132
-  (0.3ms)  SELECT sql
133
- FROM sqlite_master
134
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
135
- UNION ALL
136
- SELECT sql
137
- FROM sqlite_temp_master
138
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
139
- 
140
-  (2.4ms) CREATE INDEX "index_friendly_id_slugs_on_slug_and_sluggable_type" ON "friendly_id_slugs" ("slug", "sluggable_type")
141
-  (0.1ms)  SELECT sql
142
- FROM sqlite_master
143
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
144
- UNION ALL
145
- SELECT sql
146
- FROM sqlite_temp_master
147
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
148
- 
149
-  (0.1ms) SELECT sql
150
- FROM sqlite_master
151
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
152
- UNION ALL
153
- SELECT sql
154
- FROM sqlite_temp_master
155
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
156
-
157
-  (1.4ms) CREATE INDEX "index_friendly_id_slugs_on_sluggable_id" ON "friendly_id_slugs" ("sluggable_id")
158
-  (0.1ms) SELECT sql
159
- FROM sqlite_master
160
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
161
- UNION ALL
162
- SELECT sql
163
- FROM sqlite_temp_master
164
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
165
-
166
-  (0.2ms)  SELECT sql
167
- FROM sqlite_master
168
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
169
- UNION ALL
170
- SELECT sql
171
- FROM sqlite_temp_master
172
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
173
- 
174
-  (0.1ms) SELECT sql
175
- FROM sqlite_master
176
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
177
- UNION ALL
178
- SELECT sql
179
- FROM sqlite_temp_master
180
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
181
-
182
-  (1.8ms) CREATE INDEX "index_friendly_id_slugs_on_sluggable_type" ON "friendly_id_slugs" ("sluggable_type")
183
-  (1.6ms) DROP TABLE "picco_blog_comments"
184
-  (1.5ms) CREATE TABLE "picco_blog_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
185
-  (2.1ms) DROP TABLE "picco_blog_posts"
186
-  (2.1ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer, "slug" varchar) 
187
-  (1.3ms) CREATE INDEX "index_picco_blog_posts_on_author_id" ON "picco_blog_posts" ("author_id")
188
-  (0.1ms)  SELECT sql
189
- FROM sqlite_master
190
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
191
- UNION ALL
192
- SELECT sql
193
- FROM sqlite_temp_master
194
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
195
- 
196
-  (1.3ms) CREATE INDEX "index_picco_blog_posts_on_slug" ON "picco_blog_posts" ("slug")
197
-  (0.4ms) SELECT version FROM "schema_migrations"
198
-  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160515161632')
199
-  (1.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20160326004935')
200
-  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160325215703')
201
-  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20160325154432')
202
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
203
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
204
- Migrating to AddExcerptToPiccoBlogPosts (20160520121508)
205
-  (0.1ms) begin transaction
206
-  (0.9ms) ALTER TABLE "picco_blog_posts" ADD "excerpt" varchar
207
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160520121508"]]
208
-  (1.0ms) commit transaction
209
- Migrating to AddStateToPiccoBlogPosts (20160807020315)
210
-  (0.1ms) begin transaction
211
-  (0.6ms) ALTER TABLE "picco_blog_posts" ADD "state" integer
212
-  (0.1ms) select sqlite_version(*)
213
-  (0.1ms)  SELECT sql
214
- FROM sqlite_master
215
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
216
- UNION ALL
217
- SELECT sql
218
- FROM sqlite_temp_master
219
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
220
- 
221
-  (0.1ms) SELECT sql
222
- FROM sqlite_master
223
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
224
- UNION ALL
225
- SELECT sql
226
- FROM sqlite_temp_master
227
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
228
-
229
-  (0.1ms) CREATE INDEX "index_picco_blog_posts_on_state" ON "picco_blog_posts" ("state")
230
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160807020315"]]
231
-  (1.4ms) commit transaction
232
- Migrating to ChangePiccoBlogPostsExcerptToText (20161106121455)
233
-  (0.1ms) begin transaction
234
-  (0.3ms) CREATE TEMPORARY TABLE "apicco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer, "slug" varchar, "excerpt" varchar, "state" integer) 
235
-  (0.1ms) SELECT sql
236
- FROM sqlite_master
237
- WHERE name='index_picco_blog_posts_on_state' AND type='index'
238
- UNION ALL
239
- SELECT sql
240
- FROM sqlite_temp_master
241
- WHERE name='index_picco_blog_posts_on_state' AND type='index'
242
-
243
-  (0.1ms)  SELECT sql
244
- FROM sqlite_master
245
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
246
- UNION ALL
247
- SELECT sql
248
- FROM sqlite_temp_master
249
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
250
- 
251
-  (0.1ms) SELECT sql
252
- FROM sqlite_master
253
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
254
- UNION ALL
255
- SELECT sql
256
- FROM sqlite_temp_master
257
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
258
-
259
-  (0.2ms) CREATE INDEX "tindex_apicco_blog_posts_on_state" ON "apicco_blog_posts" ("state")
260
-  (0.1ms) CREATE INDEX "tindex_apicco_blog_posts_on_slug" ON "apicco_blog_posts" ("slug")
261
-  (0.1ms) CREATE INDEX "tindex_apicco_blog_posts_on_author_id" ON "apicco_blog_posts" ("author_id")
262
-  (0.0ms) SELECT * FROM "picco_blog_posts"
263
-  (0.5ms) DROP TABLE "picco_blog_posts"
264
-  (0.1ms) CREATE TABLE "picco_blog_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer, "slug" varchar, "excerpt" text, "state" integer)
265
-  (0.1ms)  SELECT sql
266
- FROM sqlite_master
267
- WHERE name='tindex_apicco_blog_posts_on_author_id' AND type='index'
268
- UNION ALL
269
- SELECT sql
270
- FROM sqlite_temp_master
271
- WHERE name='tindex_apicco_blog_posts_on_author_id' AND type='index'
272
- 
273
-  (0.0ms) SELECT sql
274
- FROM sqlite_master
275
- WHERE name='tindex_apicco_blog_posts_on_slug' AND type='index'
276
- UNION ALL
277
- SELECT sql
278
- FROM sqlite_temp_master
279
- WHERE name='tindex_apicco_blog_posts_on_slug' AND type='index'
280
-
281
-  (0.0ms)  SELECT sql
282
- FROM sqlite_master
283
- WHERE name='tindex_apicco_blog_posts_on_state' AND type='index'
284
- UNION ALL
285
- SELECT sql
286
- FROM sqlite_temp_master
287
- WHERE name='tindex_apicco_blog_posts_on_state' AND type='index'
288
- 
289
-  (0.1ms) CREATE INDEX "index_picco_blog_posts_on_author_id" ON "picco_blog_posts" ("author_id")
290
-  (0.0ms)  SELECT sql
291
- FROM sqlite_master
292
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
293
- UNION ALL
294
- SELECT sql
295
- FROM sqlite_temp_master
296
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
297
- 
298
-  (0.1ms) CREATE INDEX "index_picco_blog_posts_on_slug" ON "picco_blog_posts" ("slug")
299
-  (0.0ms)  SELECT sql
300
- FROM sqlite_master
301
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
302
- UNION ALL
303
- SELECT sql
304
- FROM sqlite_temp_master
305
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
306
- 
307
-  (0.0ms) SELECT sql
308
- FROM sqlite_master
309
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
310
- UNION ALL
311
- SELECT sql
312
- FROM sqlite_temp_master
313
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
314
-
315
-  (0.1ms) CREATE INDEX "index_picco_blog_posts_on_state" ON "picco_blog_posts" ("state")
316
-  (0.1ms) SELECT * FROM "apicco_blog_posts"
317
-  (0.2ms) DROP TABLE "apicco_blog_posts"
318
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161106121455"]]
319
-  (1.0ms) commit transaction
320
- Migrating to AddMembersOnlyFlagToPiccoBlogPosts (20161228031714)
321
-  (0.1ms) begin transaction
322
-  (0.4ms) ALTER TABLE "picco_blog_posts" ADD "members_only" boolean DEFAULT 'f'
323
-  (0.1ms) SELECT sql
324
- FROM sqlite_master
325
- WHERE name='index_picco_blog_posts_on_state' AND type='index'
326
- UNION ALL
327
- SELECT sql
328
- FROM sqlite_temp_master
329
- WHERE name='index_picco_blog_posts_on_state' AND type='index'
330
-
331
-  (0.0ms)  SELECT sql
332
- FROM sqlite_master
333
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
334
- UNION ALL
335
- SELECT sql
336
- FROM sqlite_temp_master
337
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
338
- 
339
-  (0.0ms) SELECT sql
340
- FROM sqlite_master
341
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
342
- UNION ALL
343
- SELECT sql
344
- FROM sqlite_temp_master
345
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
346
-
347
-  (0.1ms) CREATE INDEX "index_picco_blog_posts_on_members_only" ON "picco_blog_posts" ("members_only")
348
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161228031714"]]
349
-  (1.0ms) commit transaction
350
- Migrating to AddFeaturedImageToPiccoBlogPosts (20170102130706)
351
-  (0.0ms) begin transaction
352
-  (0.5ms) ALTER TABLE "picco_blog_posts" ADD "featured_image_uid" varchar
353
-  (0.2ms) ALTER TABLE "picco_blog_posts" ADD "featured_image_name" varchar
354
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170102130706"]]
355
-  (1.3ms) commit transaction
356
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
357
-  (0.1ms) SELECT sql
358
- FROM sqlite_master
359
- WHERE name='index_friendly_id_slugs_on_sluggable_type' AND type='index'
360
- UNION ALL
361
- SELECT sql
362
- FROM sqlite_temp_master
363
- WHERE name='index_friendly_id_slugs_on_sluggable_type' AND type='index'
364
-
365
-  (0.1ms)  SELECT sql
366
- FROM sqlite_master
367
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
368
- UNION ALL
369
- SELECT sql
370
- FROM sqlite_temp_master
371
- WHERE name='index_friendly_id_slugs_on_sluggable_id' AND type='index'
372
- 
373
-  (0.1ms) SELECT sql
374
- FROM sqlite_master
375
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
376
- UNION ALL
377
- SELECT sql
378
- FROM sqlite_temp_master
379
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type' AND type='index'
380
-
381
-  (0.1ms)  SELECT sql
382
- FROM sqlite_master
383
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
384
- UNION ALL
385
- SELECT sql
386
- FROM sqlite_temp_master
387
- WHERE name='index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope' AND type='index'
388
- 
389
-  (0.1ms) SELECT sql
390
- FROM sqlite_master
391
- WHERE name='index_picco_blog_posts_on_members_only' AND type='index'
392
- UNION ALL
393
- SELECT sql
394
- FROM sqlite_temp_master
395
- WHERE name='index_picco_blog_posts_on_members_only' AND type='index'
396
-
397
-  (0.1ms)  SELECT sql
398
- FROM sqlite_master
399
- WHERE name='index_picco_blog_posts_on_state' AND type='index'
400
- UNION ALL
401
- SELECT sql
402
- FROM sqlite_temp_master
403
- WHERE name='index_picco_blog_posts_on_state' AND type='index'
404
- 
405
-  (0.3ms) SELECT sql
406
- FROM sqlite_master
407
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
408
- UNION ALL
409
- SELECT sql
410
- FROM sqlite_temp_master
411
- WHERE name='index_picco_blog_posts_on_slug' AND type='index'
412
-
413
-  (0.2ms)  SELECT sql
414
- FROM sqlite_master
415
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
416
- UNION ALL
417
- SELECT sql
418
- FROM sqlite_temp_master
419
- WHERE name='index_picco_blog_posts_on_author_id' AND type='index'
420
- 
421
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"