human_urls 0.1.6.pre.alpha.0 → 0.1.7.pre.alpha.0

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
- SHA1:
3
- metadata.gz: d7028557dc2e2a28527db98145c56934107f5c22
4
- data.tar.gz: 91a3070ba4e35b86aee270d22ab7aaaf3b586dfa
2
+ SHA256:
3
+ metadata.gz: 9586d35e769b50f312e3588065343dec9becefd8dc4b5b8f3228d43edfb865a3
4
+ data.tar.gz: 95c140255c5dc6fb3ab36e8f44f77de94ad0cc898e1f8e9a68092372ff9fda82
5
5
  SHA512:
6
- metadata.gz: 219e7a809e8cca50015d6cf9a8b333475bd35a8a82706b6e15bd610b50df472da72dddb0cb7ee77a2e9bd91a6a912a6a4c7ebaca562fea7a1a59c1141a1c78d8
7
- data.tar.gz: a1eac4cb08992f096be8f8ec8ca987e7b35b3d6ff2d67485e88bfec16aabfc28c70d9180d036e2e03ed8904253015d56dd3678c5978b64b648f83f564fa360a8
6
+ metadata.gz: 07f4ad3bb7425dec547e8e6890d995f0e21e3eedd2e888b5450b20b8d1d15563fd2a0c8177fcca1e3ccd57fc70a00565f65794b6812ee84e3391b0d5cc49b9f7
7
+ data.tar.gz: f14a6cfec95e4562c3b0aacbc6ed57a28bc76f6146119562588b1400b69b85d81a0fe52b9377358de8fa8d2800ff926d775bc78e26593a8db03e84725486058a
@@ -1,3 +1,3 @@
1
1
  module HumanUrls
2
- VERSION = "0.1.6-alpha.0"
2
+ VERSION = "0.1.7-alpha.0"
3
3
  end
@@ -1,7 +1,10 @@
1
1
  default: &default
2
2
  adapter: postgresql
3
3
  encoding: unicode
4
- host: localhost
4
+ username: human_urls
5
+ password: password
6
+ host: db
7
+ port: 5432
5
8
 
6
9
  development:
7
10
  <<: *default
@@ -9,4 +12,3 @@ development:
9
12
  test:
10
13
  <<: *default
11
14
  database: human_urls_test
12
-
@@ -21,21 +21,4 @@ Rails.application.configure do
21
21
 
22
22
  # Raise an error on page load if there are pending migrations.
23
23
  config.active_record.migration_error = :page_load
24
-
25
- # Debug mode disables concatenation and preprocessing of assets.
26
- # This option may cause significant delays in view rendering with a large
27
- # number of complex assets.
28
- config.assets.debug = true
29
-
30
- # Asset digests allow you to set far-future HTTP expiration dates on all assets,
31
- # yet still be able to expire them through the digest params.
32
- config.assets.digest = true
33
-
34
- # Adds additional error checking when serving assets at runtime.
35
- # Checks for improperly declared sprockets dependencies.
36
- # Raises helpful error messages.
37
- config.assets.raise_runtime_errors = true
38
-
39
- # Raises error for missing translations
40
- # config.action_view.raise_on_missing_translations = true
41
24
  end
@@ -1,114 +1,176 @@
1
-  (43.2ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
2
-  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
- ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
- Migrating to CreatePosts (20151022230845)
5
-  (1.5ms) BEGIN
6
-  (22.9ms) CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "slug" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
7
-  (1.5ms) CREATE UNIQUE INDEX "index_posts_on_slug" ON "posts" ("slug")
8
- SQL (2.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151022230845"]]
9
-  (0.9ms) COMMIT
10
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
-  (5.7ms) 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
12
- FROM pg_constraint c
13
- JOIN pg_class t1 ON c.conrelid = t1.oid
14
- JOIN pg_class t2 ON c.confrelid = t2.oid
15
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
16
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
17
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
18
- WHERE c.contype = 'f'
19
- AND t1.relname = 'posts'
20
- AND t3.nspname = ANY (current_schemas(false))
21
- ORDER BY c.conname
22
-
23
- ActiveRecord::SchemaMigration Load (4.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
24
- Migrating to CreateTaggableWGeneratedSlugs (20151029003656)
25
-  (0.4ms) BEGIN
26
-  (53.7ms) CREATE TABLE "taggable_w_generated_slugs" ("id" serial primary key, "title" character varying, "slug" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
27
-  (2.4ms) CREATE UNIQUE INDEX "index_taggable_w_generated_slugs_on_slug" ON "taggable_w_generated_slugs" ("slug")
28
- SQL (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151029003656"]]
29
-  (1.1ms) COMMIT
30
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
31
-  (7.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
32
- FROM pg_constraint c
33
- JOIN pg_class t1 ON c.conrelid = t1.oid
34
- JOIN pg_class t2 ON c.confrelid = t2.oid
35
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
36
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
37
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
38
- WHERE c.contype = 'f'
39
- AND t1.relname = 'posts'
40
- AND t3.nspname = ANY (current_schemas(false))
41
- ORDER BY c.conname
42
-
43
-  (4.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
44
- FROM pg_constraint c
45
- JOIN pg_class t1 ON c.conrelid = t1.oid
46
- JOIN pg_class t2 ON c.confrelid = t2.oid
47
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
48
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
49
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
50
- WHERE c.contype = 'f'
51
- AND t1.relname = 'taggable_w_generated_slugs'
52
- AND t3.nspname = ANY (current_schemas(false))
53
- ORDER BY c.conname
1
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
2
+ `legacy_connection_handling` to `false` in your application.
3
+
4
+ The new connection handling does not support `connection_handlers`
5
+ getter and setter.
6
+
7
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
8
+ (called from block in execute at /usr/local/lib/ruby/gems/3.1.0/gems/rake-13.0.6/lib/rake/task.rb:281)
9
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
10
+ `legacy_connection_handling` to `false` in your application.
11
+
12
+ The new connection handling does not support `connection_handlers`
13
+ getter and setter.
14
+
15
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
16
+ (called from block in execute at /usr/local/lib/ruby/gems/3.1.0/gems/rake-13.0.6/lib/rake/task.rb:281)
17
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
18
+ `legacy_connection_handling` to `false` in your application.
19
+
20
+ The new connection handling does not support `connection_handlers`
21
+ getter and setter.
22
+
23
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
24
+ (called from block in execute at /usr/local/lib/ruby/gems/3.1.0/gems/rake-13.0.6/lib/rake/task.rb:281)
25
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
26
+ `legacy_connection_handling` to `false` in your application.
27
+
28
+ The new connection handling does not support `connection_handlers`
29
+ getter and setter.
30
+
31
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
32
+ (called from block in execute at /usr/local/lib/ruby/gems/3.1.0/gems/rake-13.0.6/lib/rake/task.rb:281)
33
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
34
+ `legacy_connection_handling` to `false` in your application.
35
+
36
+ The new connection handling does not support `connection_handlers`
37
+ getter and setter.
38
+
39
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
40
+ (called from block in execute at /usr/local/lib/ruby/gems/3.1.0/gems/rake-13.0.6/lib/rake/task.rb:281)
41
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
42
+ `legacy_connection_handling` to `false` in your application.
43
+
44
+ The new connection handling does not support `connection_handlers`
45
+ getter and setter.
46
+
47
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
48
+ (called from block in execute at /usr/local/lib/ruby/gems/3.1.0/gems/rake-13.0.6/lib/rake/task.rb:281)
49
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
50
+ `legacy_connection_handling` to `false` in your application.
51
+
52
+ The new connection handling does not support `connection_handlers`
53
+ getter and setter.
54
+
55
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
56
+ (called from block in execute at /usr/local/lib/ruby/gems/3.1.0/gems/rake-13.0.6/lib/rake/task.rb:281)
57
+  (589.4ms) CREATE DATABASE "human_urls_development" ENCODING = 'unicode'
58
+  (577.4ms) CREATE DATABASE "human_urls_test" ENCODING = 'unicode'
59
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
60
+  (0.2ms) DROP TABLE IF EXISTS "taggable_w_generated_slugs" CASCADE
61
+  (102.2ms) CREATE TABLE "taggable_w_generated_slugs" ("id" bigserial primary key, "title" character varying, "slug" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
62
+  (61.5ms) CREATE UNIQUE INDEX "index_taggable_w_generated_slugs_on_slug" ON "taggable_w_generated_slugs" USING btree ("slug")
63
+  (0.4ms) DROP TABLE IF EXISTS "taggables" CASCADE
64
+  (109.0ms) CREATE TABLE "taggables" ("id" bigserial primary key, "title" character varying, "slug" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
65
+  (71.2ms) CREATE UNIQUE INDEX "index_taggables_on_slug" ON "taggables" USING btree ("slug")
66
+  (121.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
67
+ ActiveRecord::SchemaMigration Pluck (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
68
+  (22.1ms) INSERT INTO "schema_migrations" (version) VALUES (20151029012517)
69
+  (20.7ms) INSERT INTO "schema_migrations" (version) VALUES
70
+ (20151022230845),
71
+ (20151029003656);
72
+
73
+ 
74
+  (107.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
75
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
76
+ TRANSACTION (0.2ms) BEGIN
77
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-02-28 19:56:55.241257"], ["updated_at", "2022-02-28 19:56:55.241257"]]
78
+ TRANSACTION (19.7ms) COMMIT
79
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
80
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
81
+ TRANSACTION (0.2ms) BEGIN
82
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "d264ad43fe3ce8af511c4860b3dbacc61e5f758d"], ["created_at", "2022-02-28 19:56:55.270973"], ["updated_at", "2022-02-28 19:56:55.270973"]]
83
+ TRANSACTION (19.7ms) COMMIT
84
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
85
+  (0.2ms) DROP TABLE IF EXISTS "taggable_w_generated_slugs" CASCADE
86
+  (104.3ms) CREATE TABLE "taggable_w_generated_slugs" ("id" bigserial primary key, "title" character varying, "slug" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
87
+  (64.1ms) CREATE UNIQUE INDEX "index_taggable_w_generated_slugs_on_slug" ON "taggable_w_generated_slugs" USING btree ("slug")
88
+  (2.7ms) DROP TABLE IF EXISTS "taggables" CASCADE
89
+  (115.3ms) CREATE TABLE "taggables" ("id" bigserial primary key, "title" character varying, "slug" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
90
+  (72.0ms) CREATE UNIQUE INDEX "index_taggables_on_slug" ON "taggables" USING btree ("slug")
91
+  (114.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
92
+ ActiveRecord::SchemaMigration Pluck (2.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
93
+  (21.1ms) INSERT INTO "schema_migrations" (version) VALUES (20151029012517)
94
+  (20.3ms) INSERT INTO "schema_migrations" (version) VALUES
95
+ (20151022230845),
96
+ (20151029003656);
97
+
54
98
  
55
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
56
- ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
57
-  (4.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
58
- FROM pg_constraint c
59
- JOIN pg_class t1 ON c.conrelid = t1.oid
60
- JOIN pg_class t2 ON c.confrelid = t2.oid
61
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
62
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
63
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
64
- WHERE c.contype = 'f'
65
- AND t1.relname = 'posts'
66
- AND t3.nspname = ANY (current_schemas(false))
67
- ORDER BY c.conname
99
+  (112.9ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
100
+ ActiveRecord::InternalMetadata Load (2.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
101
+ TRANSACTION (0.4ms) BEGIN
102
+ ActiveRecord::InternalMetadata Create (0.8ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-02-28 19:56:56.045298"], ["updated_at", "2022-02-28 19:56:56.045298"]]
103
+ TRANSACTION (20.5ms) COMMIT
104
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
105
+ TRANSACTION (0.3ms) BEGIN
106
+ ActiveRecord::InternalMetadata Update (0.5ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2022-02-28 19:56:56.076985"], ["key", "environment"]]
107
+ TRANSACTION (19.9ms) COMMIT
108
+ ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
109
+ TRANSACTION (0.4ms) BEGIN
110
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "d264ad43fe3ce8af511c4860b3dbacc61e5f758d"], ["created_at", "2022-02-28 19:56:56.107704"], ["updated_at", "2022-02-28 19:56:56.107704"]]
111
+ TRANSACTION (20.8ms) COMMIT
112
+ ActiveRecord::SchemaMigration Pluck (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
113
+ DEPRECATION WARNING: Using legacy connection handling is deprecated. Please set
114
+ `legacy_connection_handling` to `false` in your application.
115
+
116
+ The new connection handling does not support `connection_handlers`
117
+ getter and setter.
118
+
119
+ Read more about how to migrate at: https://guides.rubyonrails.org/active_record_multiple_databases.html#migrate-to-the-new-connection-handling
120
+ (called from block in execute at /usr/local/lib/ruby/gems/3.1.0/gems/rake-13.0.6/lib/rake/task.rb:281)
121
+  (676.0ms) CREATE DATABASE "human_urls_development" ENCODING = 'unicode'
122
+  (548.2ms) CREATE DATABASE "human_urls_test" ENCODING = 'unicode'
123
+ SQL (0.2ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
124
+  (0.1ms) DROP TABLE IF EXISTS "taggable_w_generated_slugs" CASCADE
125
+  (100.1ms) CREATE TABLE "taggable_w_generated_slugs" ("id" bigserial primary key, "title" character varying, "slug" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
126
+  (60.1ms) CREATE UNIQUE INDEX "index_taggable_w_generated_slugs_on_slug" ON "taggable_w_generated_slugs" USING btree ("slug")
127
+  (0.4ms) DROP TABLE IF EXISTS "taggables" CASCADE
128
+  (108.4ms) CREATE TABLE "taggables" ("id" bigserial primary key, "title" character varying, "slug" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
129
+  (73.3ms) CREATE UNIQUE INDEX "index_taggables_on_slug" ON "taggables" USING btree ("slug")
130
+  (119.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
131
+ ActiveRecord::SchemaMigration Pluck (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
132
+  (19.7ms) INSERT INTO "schema_migrations" (version) VALUES (20151029012517)
133
+  (20.3ms) INSERT INTO "schema_migrations" (version) VALUES
134
+ (20151022230845),
135
+ (20151029003656);
136
+
68
137
  
69
-  (4.7ms) 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
70
- FROM pg_constraint c
71
- JOIN pg_class t1 ON c.conrelid = t1.oid
72
- JOIN pg_class t2 ON c.confrelid = t2.oid
73
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
74
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
75
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
76
- WHERE c.contype = 'f'
77
- AND t1.relname = 'taggable_w_generated_slugs'
78
- AND t3.nspname = ANY (current_schemas(false))
79
- ORDER BY c.conname
80
-
81
- ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
82
- Migrating to RenamePostToTaggable (20151029012517)
83
-  (0.4ms) BEGIN
84
-  (3.7ms) ALTER TABLE "posts" RENAME TO "taggables"
85
-  (0.7ms) ALTER TABLE "public"."posts_id_seq" RENAME TO "taggables_id_seq"
86
-  (1.8ms) ALTER INDEX "posts_pkey" RENAME TO "taggables_pkey"
87
-  (0.6ms) ALTER INDEX "index_posts_on_slug" RENAME TO "index_taggables_on_slug"
88
- SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20151029012517"]]
89
-  (0.8ms) COMMIT
90
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
91
-  (5.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
92
- FROM pg_constraint c
93
- JOIN pg_class t1 ON c.conrelid = t1.oid
94
- JOIN pg_class t2 ON c.confrelid = t2.oid
95
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
96
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
97
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
98
- WHERE c.contype = 'f'
99
- AND t1.relname = 'taggable_w_generated_slugs'
100
- AND t3.nspname = ANY (current_schemas(false))
101
- ORDER BY c.conname
102
-
103
-  (7.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
104
- FROM pg_constraint c
105
- JOIN pg_class t1 ON c.conrelid = t1.oid
106
- JOIN pg_class t2 ON c.confrelid = t2.oid
107
- JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
108
- JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
109
- JOIN pg_namespace t3 ON c.connamespace = t3.oid
110
- WHERE c.contype = 'f'
111
- AND t1.relname = 'taggables'
112
- AND t3.nspname = ANY (current_schemas(false))
113
- ORDER BY c.conname
138
+  (103.2ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
139
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
140
+ TRANSACTION (0.2ms) BEGIN
141
+ ActiveRecord::InternalMetadata Create (0.7ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-03-01 13:32:18.991061"], ["updated_at", "2022-03-01 13:32:18.991061"]]
142
+ TRANSACTION (20.5ms) COMMIT
143
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
144
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
145
+ TRANSACTION (0.1ms) BEGIN
146
+ ActiveRecord::InternalMetadata Create (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "d264ad43fe3ce8af511c4860b3dbacc61e5f758d"], ["created_at", "2022-03-01 13:32:19.023696"], ["updated_at", "2022-03-01 13:32:19.023696"]]
147
+ TRANSACTION (20.0ms) COMMIT
148
+ SQL (0.3ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
149
+  (0.2ms) DROP TABLE IF EXISTS "taggable_w_generated_slugs" CASCADE
150
+  (100.7ms) CREATE TABLE "taggable_w_generated_slugs" ("id" bigserial primary key, "title" character varying, "slug" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
151
+  (82.9ms) CREATE UNIQUE INDEX "index_taggable_w_generated_slugs_on_slug" ON "taggable_w_generated_slugs" USING btree ("slug")
152
+  (3.0ms) DROP TABLE IF EXISTS "taggables" CASCADE
153
+  (118.1ms) CREATE TABLE "taggables" ("id" bigserial primary key, "title" character varying, "slug" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
154
+  (71.4ms) CREATE UNIQUE INDEX "index_taggables_on_slug" ON "taggables" USING btree ("slug")
155
+  (106.6ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
156
+ ActiveRecord::SchemaMigration Pluck (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
157
+  (20.7ms) INSERT INTO "schema_migrations" (version) VALUES (20151029012517)
158
+  (20.9ms) INSERT INTO "schema_migrations" (version) VALUES
159
+ (20151022230845),
160
+ (20151029003656);
161
+
114
162
  
163
+  (116.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
164
+ ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
165
+ TRANSACTION (0.4ms) BEGIN
166
+ ActiveRecord::InternalMetadata Create (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2022-03-01 13:32:19.813390"], ["updated_at", "2022-03-01 13:32:19.813390"]]
167
+ TRANSACTION (20.5ms) COMMIT
168
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
169
+ TRANSACTION (0.3ms) BEGIN
170
+ ActiveRecord::InternalMetadata Update (0.6ms) UPDATE "ar_internal_metadata" SET "value" = $1, "updated_at" = $2 WHERE "ar_internal_metadata"."key" = $3 [["value", "test"], ["updated_at", "2022-03-01 13:32:19.845012"], ["key", "environment"]]
171
+ TRANSACTION (20.0ms) COMMIT
172
+ ActiveRecord::InternalMetadata Load (0.5ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
173
+ TRANSACTION (0.3ms) BEGIN
174
+ ActiveRecord::InternalMetadata Create (0.6ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "d264ad43fe3ce8af511c4860b3dbacc61e5f758d"], ["created_at", "2022-03-01 13:32:19.875844"], ["updated_at", "2022-03-01 13:32:19.875844"]]
175
+ TRANSACTION (21.0ms) COMMIT
176
+ ActiveRecord::SchemaMigration Pluck (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC