cmor_contact 0.0.6.pre → 0.0.7.pre

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
2
  SHA256:
3
- metadata.gz: e43fe2ad347ef32d5cac48444d7972096630d24e0c0a69ddad7ff8e24caa7a6e
4
- data.tar.gz: ffca48c3d5b2d841f6afaa2595f3c6c8bf3246944b06207cf348b571c3113130
3
+ metadata.gz: 50c427dc90463ab1a51f2e55a921043194f71710955dc54dff5551c455c90374
4
+ data.tar.gz: 86a3fec5da0cb6667698ab7ebe21b6505065354174afc9c419fc1e659936fbb3
5
5
  SHA512:
6
- metadata.gz: f337c0d2d61abbea7682366b35dd8e58234a31fe95f8561541b992c9665ae4be6c4ecc88d645e6b1ac705a057d43ff8dd0a01b7718abdb198964b53984b7d3a0
7
- data.tar.gz: 04013653a2a59ad01b623c066937aa4c6baeb9b6fa5dcaa314a9b8cef27171d8c2aec58071d6f0ff806709200c286edca5baf9306d5f12e558ad9af088b66946
6
+ metadata.gz: 2e799b4dd47a7b780dff357d64c5f1c5b65c7c17f224adb3916b5e203a6314d987c6d5349e10faa4ef70f953ee95093dc6a2bb265736b4dd5f872b6f0693a37f
7
+ data.tar.gz: aec329f6c3206851baeb94b7412099d981f5896dd0ee13069df6828c0d58812fb9473aeedd6d8eacac1f5c5f9dc17ae8f74f179ef00c02b8757c6cd1cd195b3a
Binary file
@@ -10,7 +10,7 @@
10
10
  #
11
11
  # It's strongly recommended that you check this file into your version control system.
12
12
 
13
- ActiveRecord::Schema.define(version: 2019_03_31_090346) do
13
+ ActiveRecord::Schema.define(version: 2019_04_12_001958) do
14
14
 
15
15
  create_table "active_storage_attachments", force: :cascade do |t|
16
16
  t.string "name", null: false
Binary file
@@ -1,108 +1,108 @@
1
1
   (0.3ms) SELECT sqlite_version(*)
2
2
  ↳ bin/rails:4
3
-  (16.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
3
+  (14.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
4
4
  ↳ bin/rails:4
5
-  (17.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5
+  (13.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
6
6
  ↳ bin/rails:4
7
-  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
8
8
  ↳ bin/rails:4
9
- Migrating to CreateActiveStorageTables (20190331090317)
10
-  (0.3ms) begin transaction
9
+ Migrating to CreateActiveStorageTables (20190412001940)
10
+  (0.2ms) begin transaction
11
11
  ↳ bin/rails:4
12
-  (1.3ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
13
- ↳ db/migrate/20190331090317_create_active_storage_tables.active_storage.rb:4
14
-  (0.6ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
15
- ↳ db/migrate/20190331090317_create_active_storage_tables.active_storage.rb:4
16
-  (0.6ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL, CONSTRAINT "fk_rails_c3b3935057"
12
+  (1.2ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
13
+ ↳ db/migrate/20190412001940_create_active_storage_tables.active_storage.rb:4
14
+  (0.4ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
15
+ ↳ db/migrate/20190412001940_create_active_storage_tables.active_storage.rb:4
16
+  (0.3ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL, CONSTRAINT "fk_rails_c3b3935057"
17
17
  FOREIGN KEY ("blob_id")
18
18
  REFERENCES "active_storage_blobs" ("id")
19
19
  )
20
- ↳ db/migrate/20190331090317_create_active_storage_tables.active_storage.rb:16
20
+ ↳ db/migrate/20190412001940_create_active_storage_tables.active_storage.rb:16
21
21
   (0.2ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
22
- ↳ db/migrate/20190331090317_create_active_storage_tables.active_storage.rb:16
23
-  (0.4ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
24
- ↳ db/migrate/20190331090317_create_active_storage_tables.active_storage.rb:16
25
- ActiveRecord::SchemaMigration Create (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190331090317"]]
22
+ ↳ db/migrate/20190412001940_create_active_storage_tables.active_storage.rb:16
23
+  (0.2ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
24
+ ↳ db/migrate/20190412001940_create_active_storage_tables.active_storage.rb:16
25
+ ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190412001940"]]
26
26
  ↳ bin/rails:4
27
-  (8.2ms) commit transaction
27
+  (5.1ms) commit transaction
28
28
  ↳ bin/rails:4
29
- Migrating to CreateCmorContactContactRequests (20190331090346)
30
-  (0.2ms) begin transaction
29
+ Migrating to CreateCmorContactContactRequests (20190412001958)
30
+  (0.1ms) begin transaction
31
31
  ↳ bin/rails:4
32
-  (0.9ms) CREATE TABLE "cmor_contact_contact_requests" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "phone" varchar, "ip_address" varchar, "message" text, "accept_terms_of_service" boolean, "notified_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
33
- ↳ db/migrate/20190331090346_create_cmor_contact_contact_requests.cmor_contact.rb:4
34
- ActiveRecord::SchemaMigration Create (0.7ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190331090346"]]
32
+  (1.0ms) CREATE TABLE "cmor_contact_contact_requests" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "phone" varchar, "ip_address" varchar, "message" text, "accept_terms_of_service" boolean, "notified_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
33
+ ↳ db/migrate/20190412001958_create_cmor_contact_contact_requests.cmor_contact.rb:4
34
+ ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190412001958"]]
35
35
  ↳ bin/rails:4
36
-  (5.2ms) commit transaction
36
+  (5.0ms) commit transaction
37
37
  ↳ bin/rails:4
38
- ActiveRecord::InternalMetadata Load (1.9ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
38
+ ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
39
39
  ↳ bin/rails:4
40
40
   (0.3ms) begin transaction
41
41
  ↳ bin/rails:4
42
- ActiveRecord::InternalMetadata Create (3.0ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-03-31 09:03:47.079829"], ["updated_at", "2019-03-31 09:03:47.079829"]]
42
+ ActiveRecord::InternalMetadata Create (0.9ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-04-12 00:19:58.724833"], ["updated_at", "2019-04-12 00:19:58.724833"]]
43
43
  ↳ bin/rails:4
44
-  (16.8ms) commit transaction
44
+  (7.6ms) commit transaction
45
45
  ↳ bin/rails:4
46
-  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
46
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
47
47
  ↳ bin/rails:4
48
-  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
48
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
49
49
  ↳ bin/rails:4
50
-  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
50
+  (1.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
51
51
  ↳ bin/rails:4
52
52
   (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
53
53
  ↳ bin/rails:4
54
-  (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
54
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
55
55
  ↳ bin/rails:4
56
-  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
56
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
57
57
  ↳ bin/rails:4
58
-  (0.4ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
58
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
59
59
  ↳ bin/rails:4
60
-  (0.7ms) DROP TABLE IF EXISTS "active_storage_attachments"
60
+  (0.1ms) DROP TABLE IF EXISTS "active_storage_attachments"
61
61
  ↳ db/schema.rb:15
62
-  (0.2ms) SELECT sqlite_version(*)
62
+  (0.1ms) SELECT sqlite_version(*)
63
63
  ↳ db/schema.rb:15
64
-  (9.6ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL)
64
+  (5.1ms) CREATE TABLE "active_storage_attachments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "record_type" varchar NOT NULL, "record_id" integer NOT NULL, "blob_id" integer NOT NULL, "created_at" datetime NOT NULL)
65
65
  ↳ db/schema.rb:15
66
-  (8.2ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
66
+  (3.6ms) CREATE INDEX "index_active_storage_attachments_on_blob_id" ON "active_storage_attachments" ("blob_id")
67
67
  ↳ db/schema.rb:15
68
-  (10.3ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
68
+  (4.3ms) CREATE UNIQUE INDEX "index_active_storage_attachments_uniqueness" ON "active_storage_attachments" ("record_type", "record_id", "name", "blob_id")
69
69
  ↳ db/schema.rb:15
70
-  (0.5ms) DROP TABLE IF EXISTS "active_storage_blobs"
70
+  (0.3ms) DROP TABLE IF EXISTS "active_storage_blobs"
71
71
  ↳ db/schema.rb:25
72
-  (8.5ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
72
+  (15.4ms) CREATE TABLE "active_storage_blobs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "key" varchar NOT NULL, "filename" varchar NOT NULL, "content_type" varchar, "metadata" text, "byte_size" bigint NOT NULL, "checksum" varchar NOT NULL, "created_at" datetime NOT NULL)
73
73
  ↳ db/schema.rb:25
74
-  (9.7ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
74
+  (17.2ms) CREATE UNIQUE INDEX "index_active_storage_blobs_on_key" ON "active_storage_blobs" ("key")
75
75
  ↳ db/schema.rb:25
76
-  (0.4ms) DROP TABLE IF EXISTS "cmor_contact_contact_requests"
76
+  (0.2ms) DROP TABLE IF EXISTS "cmor_contact_contact_requests"
77
77
  ↳ db/schema.rb:36
78
-  (12.4ms) CREATE TABLE "cmor_contact_contact_requests" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "phone" varchar, "ip_address" varchar, "message" text, "accept_terms_of_service" boolean, "notified_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
78
+  (4.8ms) CREATE TABLE "cmor_contact_contact_requests" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "phone" varchar, "ip_address" varchar, "message" text, "accept_terms_of_service" boolean, "notified_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
79
79
  ↳ db/schema.rb:36
80
-  (11.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
80
+  (5.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
81
81
  ↳ db/schema.rb:13
82
-  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
82
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
83
83
  ↳ db/schema.rb:13
84
-  (13.3ms) INSERT INTO "schema_migrations" (version) VALUES (20190331090346)
84
+  (4.9ms) INSERT INTO "schema_migrations" (version) VALUES (20190412001958)
85
85
  ↳ db/schema.rb:13
86
-  (10.8ms) INSERT INTO "schema_migrations" (version) VALUES
87
- (20190331090317);
86
+  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES
87
+ (20190412001940);
88
88
 
89
89
  
90
90
  ↳ db/schema.rb:13
91
-  (11.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
91
+  (4.7ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
92
92
  ↳ db/schema.rb:13
93
- ActiveRecord::InternalMetadata Load (0.7ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
93
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
94
94
  ↳ db/schema.rb:13
95
-  (0.2ms) begin transaction
95
+  (0.1ms) begin transaction
96
96
  ↳ db/schema.rb:13
97
- ActiveRecord::InternalMetadata Create (3.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-03-31 09:03:47.339203"], ["updated_at", "2019-03-31 09:03:47.339203"]]
97
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-04-12 00:19:58.869041"], ["updated_at", "2019-04-12 00:19:58.869041"]]
98
98
  ↳ db/schema.rb:13
99
-  (8.2ms) commit transaction
99
+  (3.7ms) commit transaction
100
100
  ↳ db/schema.rb:13
101
- ActiveRecord::InternalMetadata Load (1.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
101
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
102
102
  ↳ bin/rails:4
103
-  (0.3ms) begin transaction
103
+  (0.1ms) begin transaction
104
104
  ↳ bin/rails:4
105
- ActiveRecord::InternalMetadata Update (3.4ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2019-03-31 09:03:47.369640"], ["key", "environment"]]
105
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2019-04-12 00:19:58.878289"], ["key", "environment"]]
106
106
  ↳ bin/rails:4
107
-  (10.0ms) commit transaction
107
+  (4.1ms) commit transaction
108
108
  ↳ bin/rails:4