c-editables 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +31 -0
  3. data/Rakefile +30 -0
  4. data/app/controllers/editables/application_controller.rb +5 -0
  5. data/app/controllers/editables/fields_controller.rb +28 -0
  6. data/app/helpers/editables/application_helper.rb +25 -0
  7. data/app/models/editables/field.rb +9 -0
  8. data/app/models/editables/page.rb +6 -0
  9. data/app/views/editables/fields/update.js.erb +6 -0
  10. data/app/views/layouts/editables/application.html.erb +15 -0
  11. data/config/routes.rb +4 -0
  12. data/db/migrate/20200919073703_create_editable_pages.rb +10 -0
  13. data/db/migrate/20200920082203_create_editable_fields.rb +11 -0
  14. data/lib/editables.rb +7 -0
  15. data/lib/editables/data_editable.rb +13 -0
  16. data/lib/editables/engine.rb +20 -0
  17. data/lib/editables/fields_collection.rb +29 -0
  18. data/lib/editables/generators/editables/install_generator.rb +46 -0
  19. data/lib/editables/generators/editables/templates/config.yml +162 -0
  20. data/lib/editables/generators/editables/templates/field.rb +9 -0
  21. data/lib/editables/generators/editables/templates/migration.rb +17 -0
  22. data/lib/editables/generators/editables/templates/page.rb +6 -0
  23. data/lib/editables/version.rb +3 -0
  24. data/lib/tasks/create_editable_objects.rake +23 -0
  25. data/spec/dummy/Rakefile +6 -0
  26. data/spec/dummy/app/assets/config/manifest.js +3 -0
  27. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  28. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  29. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  30. data/spec/dummy/app/controllers/application_controller.rb +2 -0
  31. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  32. data/spec/dummy/app/javascript/packs/application.js +15 -0
  33. data/spec/dummy/app/jobs/application_job.rb +7 -0
  34. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  35. data/spec/dummy/app/models/application_record.rb +3 -0
  36. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  37. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  38. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  39. data/spec/dummy/bin/rails +4 -0
  40. data/spec/dummy/bin/rake +4 -0
  41. data/spec/dummy/bin/setup +33 -0
  42. data/spec/dummy/config.ru +5 -0
  43. data/spec/dummy/config/application.rb +18 -0
  44. data/spec/dummy/config/boot.rb +5 -0
  45. data/spec/dummy/config/cable.yml +10 -0
  46. data/spec/dummy/config/database.yml +24 -0
  47. data/spec/dummy/config/environment.rb +5 -0
  48. data/spec/dummy/config/environments/development.rb +62 -0
  49. data/spec/dummy/config/environments/production.rb +112 -0
  50. data/spec/dummy/config/environments/test.rb +49 -0
  51. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  52. data/spec/dummy/config/initializers/assets.rb +12 -0
  53. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  54. data/spec/dummy/config/initializers/content_security_policy.rb +28 -0
  55. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  56. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  57. data/spec/dummy/config/initializers/inflections.rb +16 -0
  58. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  59. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  60. data/spec/dummy/config/locales/en.yml +33 -0
  61. data/spec/dummy/config/puma.rb +38 -0
  62. data/spec/dummy/config/routes.rb +3 -0
  63. data/spec/dummy/config/spring.rb +6 -0
  64. data/spec/dummy/config/storage.yml +34 -0
  65. data/spec/dummy/db/schema.rb +37 -0
  66. data/spec/dummy/log/development.log +36 -0
  67. data/spec/dummy/log/test.log +449 -0
  68. data/spec/dummy/public/404.html +67 -0
  69. data/spec/dummy/public/422.html +67 -0
  70. data/spec/dummy/public/500.html +66 -0
  71. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  72. data/spec/dummy/public/apple-touch-icon.png +0 -0
  73. data/spec/dummy/public/favicon.ico +0 -0
  74. data/spec/dummy/tmp/development_secret.txt +1 -0
  75. data/spec/editables_test.rb +7 -0
  76. data/spec/factories/field.rb +17 -0
  77. data/spec/factories/page.rb +7 -0
  78. data/spec/integration/navigation_test.rb +7 -0
  79. data/spec/lib/editables/data_editable_spec.rb +19 -0
  80. data/spec/lib/editables/editable_fields_collection_spec.rb +74 -0
  81. data/spec/rails_helper.rb +75 -0
  82. data/spec/spec_helper.rb +97 -0
  83. data/spec/support/database_cleaner.rb +21 -0
  84. metadata +259 -0
@@ -0,0 +1,49 @@
1
+ # The test environment is used exclusively to run your application's
2
+ # test suite. You never need to work with it otherwise. Remember that
3
+ # your test database is "scratch space" for the test suite and is wiped
4
+ # and recreated between test runs. Don't rely on the data there!
5
+
6
+ Rails.application.configure do
7
+ # Settings specified here will take precedence over those in config/application.rb.
8
+
9
+ config.cache_classes = false
10
+ config.action_view.cache_template_loading = true
11
+
12
+ # Do not eager load code on boot. This avoids loading your whole application
13
+ # just for the purpose of running a single test. If you are using a tool that
14
+ # preloads Rails for running tests, you may have to set it to true.
15
+ config.eager_load = false
16
+
17
+ # Configure public file server for tests with Cache-Control for performance.
18
+ config.public_file_server.enabled = true
19
+ config.public_file_server.headers = {
20
+ 'Cache-Control' => "public, max-age=#{1.hour.to_i}"
21
+ }
22
+
23
+ # Show full error reports and disable caching.
24
+ config.consider_all_requests_local = true
25
+ config.action_controller.perform_caching = false
26
+ config.cache_store = :null_store
27
+
28
+ # Raise exceptions instead of rendering exception templates.
29
+ config.action_dispatch.show_exceptions = false
30
+
31
+ # Disable request forgery protection in test environment.
32
+ config.action_controller.allow_forgery_protection = false
33
+
34
+ # Store uploaded files on the local file system in a temporary directory.
35
+ config.active_storage.service = :test
36
+
37
+ config.action_mailer.perform_caching = false
38
+
39
+ # Tell Action Mailer not to deliver emails to the real world.
40
+ # The :test delivery method accumulates sent emails in the
41
+ # ActionMailer::Base.deliveries array.
42
+ config.action_mailer.delivery_method = :test
43
+
44
+ # Print deprecation notices to the stderr.
45
+ config.active_support.deprecation = :stderr
46
+
47
+ # Raises error for missing translations.
48
+ # config.action_view.raise_on_missing_translations = true
49
+ end
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # ActiveSupport::Reloader.to_prepare do
4
+ # ApplicationController.renderer.defaults.merge!(
5
+ # http_host: 'example.org',
6
+ # https: false
7
+ # )
8
+ # end
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path.
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in the app/assets
11
+ # folder are already added.
12
+ # Rails.application.config.assets.precompile += %w( admin.js admin.css )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,28 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Define an application-wide content security policy
4
+ # For further information see the following documentation
5
+ # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
6
+
7
+ # Rails.application.config.content_security_policy do |policy|
8
+ # policy.default_src :self, :https
9
+ # policy.font_src :self, :https, :data
10
+ # policy.img_src :self, :https, :data
11
+ # policy.object_src :none
12
+ # policy.script_src :self, :https
13
+ # policy.style_src :self, :https
14
+
15
+ # # Specify URI for violation reports
16
+ # # policy.report_uri "/csp-violation-report-endpoint"
17
+ # end
18
+
19
+ # If you are using UJS then enable automatic nonce generation
20
+ # Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
21
+
22
+ # Set the nonce only to specific directives
23
+ # Rails.application.config.content_security_policy_nonce_directives = %w(script-src)
24
+
25
+ # Report CSP violations to a specified URI
26
+ # For further information see the following documentation:
27
+ # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
28
+ # Rails.application.config.content_security_policy_report_only = true
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Specify a serializer for the signed and encrypted cookie jars.
4
+ # Valid options are :json, :marshal, and :hybrid.
5
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,33 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # The following keys must be escaped otherwise they will not be retrieved by
20
+ # the default I18n backend:
21
+ #
22
+ # true, false, on, off, yes, no
23
+ #
24
+ # Instead, surround them with single quotes.
25
+ #
26
+ # en:
27
+ # 'true': 'foo'
28
+ #
29
+ # To learn more, please read the Rails Internationalization guide
30
+ # available at https://guides.rubyonrails.org/i18n.html.
31
+
32
+ en:
33
+ hello: "Hello world"
@@ -0,0 +1,38 @@
1
+ # Puma can serve each request in a thread from an internal thread pool.
2
+ # The `threads` method setting takes two numbers: a minimum and maximum.
3
+ # Any libraries that use thread pools should be configured to match
4
+ # the maximum value specified for Puma. Default is set to 5 threads for minimum
5
+ # and maximum; this matches the default thread size of Active Record.
6
+ #
7
+ max_threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
8
+ min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
9
+ threads min_threads_count, max_threads_count
10
+
11
+ # Specifies the `port` that Puma will listen on to receive requests; default is 3000.
12
+ #
13
+ port ENV.fetch("PORT") { 3000 }
14
+
15
+ # Specifies the `environment` that Puma will run in.
16
+ #
17
+ environment ENV.fetch("RAILS_ENV") { "development" }
18
+
19
+ # Specifies the `pidfile` that Puma will use.
20
+ pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" }
21
+
22
+ # Specifies the number of `workers` to boot in clustered mode.
23
+ # Workers are forked web server processes. If using threads and workers together
24
+ # the concurrency of the application would be max `threads` * `workers`.
25
+ # Workers do not work on JRuby or Windows (both of which do not support
26
+ # processes).
27
+ #
28
+ # workers ENV.fetch("WEB_CONCURRENCY") { 2 }
29
+
30
+ # Use the `preload_app!` method when specifying a `workers` number.
31
+ # This directive tells Puma to first boot the application and load code
32
+ # before forking the application. This takes advantage of Copy On Write
33
+ # process behavior so workers use less memory.
34
+ #
35
+ # preload_app!
36
+
37
+ # Allow puma to be restarted by `rails restart` command.
38
+ plugin :tmp_restart
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ mount Editables::Engine => "/editables"
3
+ end
@@ -0,0 +1,6 @@
1
+ Spring.watch(
2
+ ".ruby-version",
3
+ ".rbenv-vars",
4
+ "tmp/restart.txt",
5
+ "tmp/caching-dev.txt"
6
+ )
@@ -0,0 +1,34 @@
1
+ test:
2
+ service: Disk
3
+ root: <%= Rails.root.join("tmp/storage") %>
4
+
5
+ local:
6
+ service: Disk
7
+ root: <%= Rails.root.join("storage") %>
8
+
9
+ # Use rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key)
10
+ # amazon:
11
+ # service: S3
12
+ # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %>
13
+ # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %>
14
+ # region: us-east-1
15
+ # bucket: your_own_bucket
16
+
17
+ # Remember not to checkin your GCS keyfile to a repository
18
+ # google:
19
+ # service: GCS
20
+ # project: your_project
21
+ # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %>
22
+ # bucket: your_own_bucket
23
+
24
+ # Use rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key)
25
+ # microsoft:
26
+ # service: AzureStorage
27
+ # storage_account_name: your_account_name
28
+ # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %>
29
+ # container: your_container_name
30
+
31
+ # mirror:
32
+ # service: Mirror
33
+ # primary: local
34
+ # mirrors: [ amazon, google, microsoft ]
@@ -0,0 +1,37 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # This file is the source Rails uses to define your schema when running `rails
6
+ # db:schema:load`. When creating a new database, `rails db:schema:load` tends to
7
+ # be faster and is potentially less error prone than running all of your
8
+ # migrations from scratch. Old migrations may fail to apply correctly if those
9
+ # migrations use external dependencies or application code.
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 2020_09_20_082203) do
14
+
15
+ # These are extensions that must be enabled in order to support this database
16
+ enable_extension "plpgsql"
17
+
18
+ create_table "editable_fields", force: :cascade do |t|
19
+ t.string "label"
20
+ t.string "kind"
21
+ t.text "value"
22
+ t.bigint "editable_page_id"
23
+ t.datetime "created_at", precision: 6, null: false
24
+ t.datetime "updated_at", precision: 6, null: false
25
+ t.index ["editable_page_id"], name: "index_editable_fields_on_editable_page_id"
26
+ end
27
+
28
+ create_table "editable_pages", force: :cascade do |t|
29
+ t.string "name"
30
+ t.text "description"
31
+ t.string "kind"
32
+ t.datetime "created_at", precision: 6, null: false
33
+ t.datetime "updated_at", precision: 6, null: false
34
+ end
35
+
36
+ add_foreign_key "editable_fields", "editable_pages"
37
+ end
@@ -0,0 +1,36 @@
1
+  (60.7ms) CREATE DATABASE "dummy_development" ENCODING = 'utf8'
2
+  (0.6ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
3
+  (14.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
4
+  (6.0ms) 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)
5
+  (2.0ms) SELECT pg_try_advisory_lock(1721091371569202325)
6
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
7
+ Migrating to CreateEditablePages (20200919073703)
8
+  (0.2ms) BEGIN
9
+  (3.1ms) CREATE TABLE "editable_pages" ("id" bigserial primary key, "name" character varying, "description" text, "kind" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
10
+ primary::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20200919073703"]]
11
+  (0.7ms) COMMIT
12
+ Migrating to CreateEditableFields (20200920082203)
13
+  (0.1ms) BEGIN
14
+  (3.6ms) CREATE TABLE "editable_fields" ("id" bigserial primary key, "label" character varying, "kind" character varying, "value" text, "page_id" bigint, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL, CONSTRAINT "fk_rails_f333f9cff6"
15
+ FOREIGN KEY ("page_id")
16
+ REFERENCES "pages" ("id")
17
+ )
18
+  (0.1ms) ROLLBACK
19
+  (0.1ms) SELECT pg_advisory_unlock(1721091371569202325)
20
+  (0.1ms) SELECT pg_try_advisory_lock(1721091371569202325)
21
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
22
+ Migrating to CreateEditableFields (20200920082203)
23
+  (0.3ms) BEGIN
24
+  (4.6ms) CREATE TABLE "editable_fields" ("id" bigserial primary key, "label" character varying, "kind" character varying, "value" text, "editable_page_id" bigint, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL, CONSTRAINT "fk_rails_6bb71fb202"
25
+ FOREIGN KEY ("editable_page_id")
26
+ REFERENCES "editable_pages" ("id")
27
+ )
28
+  (0.6ms) CREATE INDEX "index_editable_fields_on_editable_page_id" ON "editable_fields" ("editable_page_id")
29
+ primary::SchemaMigration Create (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20200920082203"]]
30
+  (0.3ms) COMMIT
31
+ ActiveRecord::InternalMetadata Load (4.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
32
+  (0.1ms) BEGIN
33
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2020-09-24 16:03:41.394316"], ["updated_at", "2020-09-24 16:03:41.394316"]]
34
+  (0.4ms) COMMIT
35
+  (0.2ms) SELECT pg_advisory_unlock(1721091371569202325)
36
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
@@ -0,0 +1,449 @@
1
+  (0.7ms) DROP DATABASE IF EXISTS "dummy_test"
2
+  (168.1ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
3
+  (25.4ms) DROP DATABASE IF EXISTS "dummy_test"
4
+  (48.5ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
5
+ SQL (0.8ms) CREATE EXTENSION IF NOT EXISTS "plpgsql"
6
+  (0.1ms) DROP TABLE IF EXISTS "editable_fields" CASCADE
7
+  (6.4ms) CREATE TABLE "editable_fields" ("id" bigserial primary key, "label" character varying, "kind" character varying, "value" text, "editable_page_id" bigint, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
8
+  (0.9ms) CREATE INDEX "index_editable_fields_on_editable_page_id" ON "editable_fields" ("editable_page_id")
9
+  (0.1ms) DROP TABLE IF EXISTS "editable_pages" CASCADE
10
+  (3.5ms) CREATE TABLE "editable_pages" ("id" bigserial primary key, "name" character varying, "description" text, "kind" character varying, "created_at" timestamp(6) NOT NULL, "updated_at" timestamp(6) NOT NULL)
11
+  (2.8ms) ALTER TABLE "editable_fields" ADD CONSTRAINT "fk_rails_6bb71fb202"
12
+ FOREIGN KEY ("editable_page_id")
13
+ REFERENCES "editable_pages" ("id")
14
+ 
15
+  (1.9ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
16
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
17
+  (4.9ms) INSERT INTO "schema_migrations" (version) VALUES (20200920082203)
18
+  (0.4ms) INSERT INTO "schema_migrations" (version) VALUES
19
+ (20200919073703);
20
+
21
+ 
22
+  (2.5ms) 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)
23
+ 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]]
24
+  (0.1ms) BEGIN
25
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", "2020-09-24 16:03:48.877320"], ["updated_at", "2020-09-24 16:03:48.877320"]]
26
+  (0.2ms) COMMIT
27
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]]
28
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "schema_sha1"], ["LIMIT", 1]]
29
+  (0.1ms) BEGIN
30
+ ActiveRecord::InternalMetadata Create (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "schema_sha1"], ["value", "bf36756495dccd07950389ad6291bf9e710c758f"], ["created_at", "2020-09-24 16:03:48.881258"], ["updated_at", "2020-09-24 16:03:48.881258"]]
31
+  (0.3ms) COMMIT
32
+  (2.3ms) CREATE DATABASE "dummy_test" ENCODING = 'utf8'
33
+  (1.9ms) SELECT pg_try_advisory_lock(2735718569030447490)
34
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
35
+ 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]]
36
+  (0.2ms) SELECT pg_advisory_unlock(2735718569030447490)
37
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
38
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
39
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
40
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
41
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
42
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
43
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
44
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
45
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
46
+  (0.1ms) BEGIN
47
+  (0.1ms) ROLLBACK
48
+  (0.1ms) BEGIN
49
+  (0.1ms) ROLLBACK
50
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
51
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
52
+  (0.1ms) BEGIN
53
+  (0.2ms) ROLLBACK
54
+  (0.1ms) BEGIN
55
+  (0.2ms) ROLLBACK
56
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
57
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
58
+  (0.1ms) BEGIN
59
+  (0.1ms) ROLLBACK
60
+  (0.1ms) BEGIN
61
+  (0.1ms) ROLLBACK
62
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
63
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
64
+  (0.1ms) BEGIN
65
+  (0.1ms) ROLLBACK
66
+  (0.1ms) BEGIN
67
+  (0.1ms) ROLLBACK
68
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
69
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
70
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
71
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
72
+  (0.5ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
73
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
74
+  (0.2ms) BEGIN
75
+  (4.5ms) ROLLBACK
76
+  (0.1ms) BEGIN
77
+  (0.1ms) ROLLBACK
78
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
79
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
80
+  (0.1ms) BEGIN
81
+  (0.2ms) ROLLBACK
82
+  (0.1ms) BEGIN
83
+  (0.1ms) ROLLBACK
84
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
85
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
86
+  (0.1ms) BEGIN
87
+  (0.2ms) ROLLBACK
88
+  (0.1ms) BEGIN
89
+  (0.1ms) ROLLBACK
90
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
91
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
92
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
93
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
94
+  (0.1ms) BEGIN
95
+  (0.1ms) ROLLBACK
96
+  (0.1ms) BEGIN
97
+  (0.1ms) ROLLBACK
98
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
99
+  (1.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
100
+  (0.1ms) BEGIN
101
+  (0.1ms) ROLLBACK
102
+  (0.1ms) BEGIN
103
+  (0.1ms) ROLLBACK
104
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
105
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
106
+  (0.1ms) BEGIN
107
+  (0.1ms) ROLLBACK
108
+  (0.1ms) BEGIN
109
+  (0.1ms) ROLLBACK
110
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
111
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
112
+  (0.1ms) BEGIN
113
+  (0.1ms) ROLLBACK
114
+  (0.1ms) BEGIN
115
+  (0.1ms) ROLLBACK
116
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
117
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
118
+  (0.1ms) BEGIN
119
+  (0.1ms) ROLLBACK
120
+  (0.1ms) BEGIN
121
+  (0.1ms) ROLLBACK
122
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
123
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
124
+  (0.2ms) BEGIN
125
+  (0.1ms) ROLLBACK
126
+  (0.1ms) BEGIN
127
+  (0.1ms) ROLLBACK
128
+  (0.1ms) BEGIN
129
+ Editables::Page Create (6.0ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "embrace dynamic convergence"], ["description", "cultivate wireless ROI"], ["kind", "transition cross-platform e-commerce"], ["created_at", "2020-09-27 12:48:11.504183"], ["updated_at", "2020-09-27 12:48:11.504183"]]
130
+  (0.4ms) COMMIT
131
+  (0.1ms) BEGIN
132
+ Editables::Field Exists? (2.9ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_text"], ["editable_page_id", 1], ["LIMIT", 1]]
133
+ Editables::Field Create (2.6ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_text"], ["kind", "text"], ["value", "utilize plug-and-play eyeballs"], ["editable_page_id", 1], ["created_at", "2020-09-27 12:48:11.521507"], ["updated_at", "2020-09-27 12:48:11.521507"]]
134
+  (0.4ms) COMMIT
135
+  (0.1ms) BEGIN
136
+ Editables::Page Create (0.2ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "deploy web-enabled e-markets"], ["description", "enhance vertical content"], ["kind", "monetize user-centric markets"], ["created_at", "2020-09-27 12:48:11.525925"], ["updated_at", "2020-09-27 12:48:11.525925"]]
137
+  (0.3ms) COMMIT
138
+  (0.1ms) BEGIN
139
+ Editables::Field Exists? (0.2ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_image"], ["editable_page_id", 2], ["LIMIT", 1]]
140
+ Editables::Field Create (0.2ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_image"], ["kind", "image"], ["value", "grow magnetic functionalities"], ["editable_page_id", 2], ["created_at", "2020-09-27 12:48:11.528059"], ["updated_at", "2020-09-27 12:48:11.528059"]]
141
+  (0.3ms) COMMIT
142
+  (0.1ms) BEGIN
143
+  (0.1ms) ROLLBACK
144
+  (0.1ms) BEGIN
145
+  (0.1ms) ROLLBACK
146
+  (0.1ms) BEGIN
147
+  (0.1ms) ROLLBACK
148
+  (0.1ms) BEGIN
149
+  (0.1ms) ROLLBACK
150
+  (0.1ms) BEGIN
151
+  (0.1ms) ROLLBACK
152
+  (0.1ms) BEGIN
153
+  (0.1ms) ROLLBACK
154
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
155
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
156
+  (0.1ms) BEGIN
157
+  (0.1ms) ROLLBACK
158
+  (0.2ms) BEGIN
159
+  (0.1ms) ROLLBACK
160
+  (0.1ms) BEGIN
161
+ Editables::Page Create (0.3ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "whiteboard value-added convergence"], ["description", "e-enable leading-edge mindshare"], ["kind", "utilize granular interfaces"], ["created_at", "2020-09-27 12:49:06.801346"], ["updated_at", "2020-09-27 12:49:06.801346"]]
162
+  (0.6ms) COMMIT
163
+  (0.1ms) BEGIN
164
+ Editables::Field Exists? (0.3ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_text"], ["editable_page_id", 3], ["LIMIT", 1]]
165
+ Editables::Field Create (0.3ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_text"], ["kind", "text"], ["value", "incentivize virtual functionalities"], ["editable_page_id", 3], ["created_at", "2020-09-27 12:49:06.806996"], ["updated_at", "2020-09-27 12:49:06.806996"]]
166
+  (0.3ms) COMMIT
167
+  (0.1ms) BEGIN
168
+ Editables::Page Create (0.1ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "redefine cross-media schemas"], ["description", "facilitate collaborative users"], ["kind", "visualize 24/7 niches"], ["created_at", "2020-09-27 12:49:06.808481"], ["updated_at", "2020-09-27 12:49:06.808481"]]
169
+  (0.2ms) COMMIT
170
+  (0.1ms) BEGIN
171
+ Editables::Field Exists? (0.1ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_image"], ["editable_page_id", 4], ["LIMIT", 1]]
172
+ Editables::Field Create (0.4ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_image"], ["kind", "image"], ["value", "harness world-class synergies"], ["editable_page_id", 4], ["created_at", "2020-09-27 12:49:06.810068"], ["updated_at", "2020-09-27 12:49:06.810068"]]
173
+  (0.2ms) COMMIT
174
+  (0.1ms) BEGIN
175
+  (0.2ms) ROLLBACK
176
+  (0.1ms) BEGIN
177
+  (0.0ms) ROLLBACK
178
+  (0.0ms) BEGIN
179
+  (0.1ms) ROLLBACK
180
+  (0.0ms) BEGIN
181
+  (0.1ms) ROLLBACK
182
+  (0.0ms) BEGIN
183
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2 [["label", "field_with_text"], ["LIMIT", 1]]
184
+  (0.1ms) ROLLBACK
185
+  (0.1ms) BEGIN
186
+  (0.2ms) ROLLBACK
187
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
188
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
189
+  (0.1ms) BEGIN
190
+  (0.1ms) ROLLBACK
191
+  (0.1ms) BEGIN
192
+  (0.1ms) ROLLBACK
193
+  (0.1ms) BEGIN
194
+ Editables::Page Create (0.3ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "transform next-generation mindshare"], ["description", "orchestrate dot-com systems"], ["kind", "enhance intuitive ROI"], ["created_at", "2020-09-27 12:50:41.528635"], ["updated_at", "2020-09-27 12:50:41.528635"]]
195
+  (0.7ms) COMMIT
196
+  (0.1ms) BEGIN
197
+ Editables::Field Exists? (0.4ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_text"], ["editable_page_id", 5], ["LIMIT", 1]]
198
+ Editables::Field Create (0.4ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_text"], ["kind", "text"], ["value", "matrix visionary infomediaries"], ["editable_page_id", 5], ["created_at", "2020-09-27 12:50:41.534925"], ["updated_at", "2020-09-27 12:50:41.534925"]]
199
+  (0.3ms) COMMIT
200
+  (0.1ms) BEGIN
201
+ Editables::Page Create (0.1ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "unleash transparent applications"], ["description", "engage end-to-end paradigms"], ["kind", "disintermediate integrated bandwidth"], ["created_at", "2020-09-27 12:50:41.536787"], ["updated_at", "2020-09-27 12:50:41.536787"]]
202
+  (0.3ms) COMMIT
203
+  (0.1ms) BEGIN
204
+ Editables::Field Exists? (0.2ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_image"], ["editable_page_id", 6], ["LIMIT", 1]]
205
+ Editables::Field Create (0.2ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_image"], ["kind", "image"], ["value", "transition scalable schemas"], ["editable_page_id", 6], ["created_at", "2020-09-27 12:50:41.538614"], ["updated_at", "2020-09-27 12:50:41.538614"]]
206
+  (0.3ms) COMMIT
207
+  (0.1ms) BEGIN
208
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
209
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields"
210
+  (0.2ms) ROLLBACK
211
+  (0.1ms) BEGIN
212
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
213
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
214
+  (0.1ms) ROLLBACK
215
+  (0.1ms) BEGIN
216
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
217
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
218
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
219
+  (0.1ms) ROLLBACK
220
+  (0.1ms) BEGIN
221
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
222
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
223
+  (0.1ms) ROLLBACK
224
+  (0.1ms) BEGIN
225
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2 [["label", "field_with_text"], ["LIMIT", 1]]
226
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
227
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
228
+  (0.1ms) ROLLBACK
229
+  (0.1ms) BEGIN
230
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
231
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
232
+  (0.1ms) ROLLBACK
233
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
234
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
235
+  (0.1ms) BEGIN
236
+  (0.1ms) ROLLBACK
237
+  (0.1ms) BEGIN
238
+  (0.1ms) ROLLBACK
239
+  (0.1ms) BEGIN
240
+ Editables::Page Create (0.3ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "brand turn-key mindshare"], ["description", "streamline cross-media solutions"], ["kind", "streamline cross-media applications"], ["created_at", "2020-09-27 12:51:49.789546"], ["updated_at", "2020-09-27 12:51:49.789546"]]
241
+  (0.8ms) COMMIT
242
+  (0.1ms) BEGIN
243
+ Editables::Field Exists? (0.4ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_text"], ["editable_page_id", 7], ["LIMIT", 1]]
244
+ Editables::Field Create (1.3ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_text"], ["kind", "text"], ["value", "monetize web-enabled functionalities"], ["editable_page_id", 7], ["created_at", "2020-09-27 12:51:49.795814"], ["updated_at", "2020-09-27 12:51:49.795814"]]
245
+  (0.3ms) COMMIT
246
+  (0.1ms) BEGIN
247
+ Editables::Page Create (0.2ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "strategize front-end systems"], ["description", "innovate visionary vortals"], ["kind", "morph transparent portals"], ["created_at", "2020-09-27 12:51:49.799101"], ["updated_at", "2020-09-27 12:51:49.799101"]]
248
+  (0.3ms) COMMIT
249
+  (0.1ms) BEGIN
250
+ Editables::Field Exists? (0.2ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_image"], ["editable_page_id", 8], ["LIMIT", 1]]
251
+ Editables::Field Create (0.2ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_image"], ["kind", "image"], ["value", "orchestrate proactive channels"], ["editable_page_id", 8], ["created_at", "2020-09-27 12:51:49.801100"], ["updated_at", "2020-09-27 12:51:49.801100"]]
252
+  (0.3ms) COMMIT
253
+  (0.1ms) BEGIN
254
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
255
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
256
+  (0.1ms) ROLLBACK
257
+  (0.0ms) BEGIN
258
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
259
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
260
+  (0.2ms) ROLLBACK
261
+  (0.1ms) BEGIN
262
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
263
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
264
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
265
+  (0.1ms) ROLLBACK
266
+  (0.1ms) BEGIN
267
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
268
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
269
+  (0.1ms) ROLLBACK
270
+  (0.1ms) BEGIN
271
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2 [["label", "field_with_text"], ["LIMIT", 1]]
272
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
273
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
274
+  (0.1ms) ROLLBACK
275
+  (0.1ms) BEGIN
276
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
277
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
278
+  (0.1ms) ROLLBACK
279
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
280
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
281
+  (0.1ms) BEGIN
282
+  (0.1ms) ROLLBACK
283
+  (0.1ms) BEGIN
284
+  (0.1ms) ROLLBACK
285
+  (0.1ms) BEGIN
286
+ Editables::Page Create (0.3ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "incentivize robust functionalities"], ["description", "productize vertical interfaces"], ["kind", "empower sticky paradigms"], ["created_at", "2020-09-27 12:52:45.233498"], ["updated_at", "2020-09-27 12:52:45.233498"]]
287
+  (0.4ms) COMMIT
288
+  (0.1ms) BEGIN
289
+ Editables::Field Exists? (0.4ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_text"], ["editable_page_id", 9], ["LIMIT", 1]]
290
+ Editables::Field Create (0.5ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_text"], ["kind", "text"], ["value", "engage scalable portals"], ["editable_page_id", 9], ["created_at", "2020-09-27 12:52:45.238881"], ["updated_at", "2020-09-27 12:52:45.238881"]]
291
+  (0.3ms) COMMIT
292
+  (0.1ms) BEGIN
293
+ Editables::Page Create (0.1ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "exploit visionary users"], ["description", "morph end-to-end convergence"], ["kind", "deliver 24/365 e-business"], ["created_at", "2020-09-27 12:52:45.240654"], ["updated_at", "2020-09-27 12:52:45.240654"]]
294
+  (0.2ms) COMMIT
295
+  (0.1ms) BEGIN
296
+ Editables::Field Exists? (0.1ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_image"], ["editable_page_id", 10], ["LIMIT", 1]]
297
+ Editables::Field Create (0.2ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_image"], ["kind", "image"], ["value", "whiteboard ubiquitous portals"], ["editable_page_id", 10], ["created_at", "2020-09-27 12:52:45.242373"], ["updated_at", "2020-09-27 12:52:45.242373"]]
298
+  (0.2ms) COMMIT
299
+  (0.1ms) BEGIN
300
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
301
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
302
+  (0.1ms) ROLLBACK
303
+  (0.1ms) BEGIN
304
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
305
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
306
+  (0.1ms) ROLLBACK
307
+  (0.1ms) BEGIN
308
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
309
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields"
310
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
311
+  (0.1ms) ROLLBACK
312
+  (0.0ms) BEGIN
313
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
314
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
315
+  (0.0ms) ROLLBACK
316
+  (0.0ms) BEGIN
317
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2 [["label", "field_with_text"], ["LIMIT", 1]]
318
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
319
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
320
+  (0.1ms) ROLLBACK
321
+  (0.1ms) BEGIN
322
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
323
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
324
+  (0.1ms) ROLLBACK
325
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
326
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
327
+  (0.1ms) BEGIN
328
+  (0.1ms) ROLLBACK
329
+  (0.1ms) BEGIN
330
+  (0.1ms) ROLLBACK
331
+  (0.1ms) BEGIN
332
+ Editables::Page Create (0.3ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "monetize global users"], ["description", "productize cross-media communities"], ["kind", "orchestrate plug-and-play networks"], ["created_at", "2020-09-27 12:53:51.685506"], ["updated_at", "2020-09-27 12:53:51.685506"]]
333
+  (1.0ms) COMMIT
334
+  (0.1ms) BEGIN
335
+ Editables::Field Exists? (0.6ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_text"], ["editable_page_id", 11], ["LIMIT", 1]]
336
+ Editables::Field Create (0.4ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_text"], ["kind", "text"], ["value", "envisioneer innovative e-commerce"], ["editable_page_id", 11], ["created_at", "2020-09-27 12:53:51.693702"], ["updated_at", "2020-09-27 12:53:51.693702"]]
337
+  (0.3ms) COMMIT
338
+  (0.1ms) BEGIN
339
+ Editables::Page Create (0.2ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "strategize B2C models"], ["description", "redefine extensible methodologies"], ["kind", "implement end-to-end relationships"], ["created_at", "2020-09-27 12:53:51.695646"], ["updated_at", "2020-09-27 12:53:51.695646"]]
340
+  (0.3ms) COMMIT
341
+  (0.1ms) BEGIN
342
+ Editables::Field Exists? (0.2ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_image"], ["editable_page_id", 12], ["LIMIT", 1]]
343
+ Editables::Field Create (0.2ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_image"], ["kind", "image"], ["value", "orchestrate sexy experiences"], ["editable_page_id", 12], ["created_at", "2020-09-27 12:53:51.697621"], ["updated_at", "2020-09-27 12:53:51.697621"]]
344
+  (0.3ms) COMMIT
345
+  (0.1ms) BEGIN
346
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
347
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields"
348
+  (0.1ms) ROLLBACK
349
+  (0.1ms) BEGIN
350
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
351
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
352
+  (0.1ms) ROLLBACK
353
+  (0.1ms) BEGIN
354
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
355
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
356
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
357
+  (0.1ms) ROLLBACK
358
+  (0.1ms) BEGIN
359
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
360
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
361
+  (0.1ms) ROLLBACK
362
+  (0.0ms) BEGIN
363
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2 [["label", "field_with_text"], ["LIMIT", 1]]
364
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
365
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
366
+  (0.2ms) ROLLBACK
367
+  (0.1ms) BEGIN
368
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
369
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
370
+  (0.1ms) ROLLBACK
371
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
372
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
373
+  (0.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
374
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
375
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
376
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
377
+  (0.3ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 [["key", "schema_sha1"]]
378
+  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
379
+  (0.1ms) BEGIN
380
+  (2.0ms) ALTER TABLE "editable_pages" DISABLE TRIGGER ALL;ALTER TABLE "editable_fields" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "ar_internal_metadata" DISABLE TRIGGER ALL
381
+  (0.9ms) COMMIT
382
+  (12.6ms)  SELECT schemaname || '.' || tablename
383
+ FROM pg_tables
384
+ WHERE
385
+ tablename !~ '_prt_' AND
386
+ tablename <> 'schema_migrations' AND tablename <> 'ar_internal_metadata' AND
387
+ schemaname = ANY (current_schemas(false))
388
+ 
389
+  (4.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'
390
+  (7.0ms) TRUNCATE TABLE "public"."editable_pages", "public"."editable_fields" RESTART IDENTITY CASCADE;
391
+  (0.2ms) BEGIN
392
+  (0.2ms) ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "ar_internal_metadata" ENABLE TRIGGER ALL;ALTER TABLE "editable_pages" ENABLE TRIGGER ALL;ALTER TABLE "editable_fields" ENABLE TRIGGER ALL
393
+  (0.2ms) COMMIT
394
+  (0.1ms) BEGIN
395
+  (0.1ms) ROLLBACK
396
+  (0.1ms) BEGIN
397
+  (0.1ms) ROLLBACK
398
+  (0.1ms) BEGIN
399
+ Editables::Page Create (0.5ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "syndicate revolutionary solutions"], ["description", "implement clicks-and-mortar e-business"], ["kind", "matrix real-time niches"], ["created_at", "2020-09-28 20:16:08.115633"], ["updated_at", "2020-09-28 20:16:08.115633"]]
400
+  (1.4ms) COMMIT
401
+  (0.2ms) BEGIN
402
+ Editables::Field Exists? (0.4ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_text"], ["editable_page_id", 1], ["LIMIT", 1]]
403
+ Editables::Field Create (0.5ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_text"], ["kind", "text"], ["value", "streamline enterprise interfaces"], ["editable_page_id", 1], ["created_at", "2020-09-28 20:16:08.125299"], ["updated_at", "2020-09-28 20:16:08.125299"]]
404
+  (1.0ms) COMMIT
405
+  (0.1ms) BEGIN
406
+ Editables::Page Create (0.2ms) INSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id" [["name", "recontextualize frictionless paradigms"], ["description", "seize bricks-and-clicks schemas"], ["kind", "embrace user-centric users"], ["created_at", "2020-09-28 20:16:08.128068"], ["updated_at", "2020-09-28 20:16:08.128068"]]
407
+  (0.3ms) COMMIT
408
+  (0.1ms) BEGIN
409
+ Editables::Field Exists? (0.2ms) SELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3 [["label", "field_with_image"], ["editable_page_id", 2], ["LIMIT", 1]]
410
+ Editables::Field Create (0.2ms) INSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["label", "field_with_image"], ["kind", "image"], ["value", "reinvent next-generation bandwidth"], ["editable_page_id", 2], ["created_at", "2020-09-28 20:16:08.130197"], ["updated_at", "2020-09-28 20:16:08.130197"]]
411
+  (0.3ms) COMMIT
412
+  (0.1ms) BEGIN
413
+  (0.1ms) SAVEPOINT active_record_1
414
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
415
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
416
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
417
+  (0.1ms) ROLLBACK
418
+  (0.1ms) BEGIN
419
+  (0.1ms) SAVEPOINT active_record_1
420
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
421
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
422
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
423
+  (0.1ms) ROLLBACK
424
+  (0.1ms) BEGIN
425
+  (0.1ms) SAVEPOINT active_record_1
426
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
427
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
428
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields"
429
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
430
+  (0.1ms) ROLLBACK
431
+  (0.1ms) BEGIN
432
+  (0.1ms) SAVEPOINT active_record_1
433
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
434
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
435
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
436
+  (0.1ms) ROLLBACK
437
+  (0.1ms) BEGIN
438
+  (0.1ms) SAVEPOINT active_record_1
439
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2 [["label", "field_with_text"], ["LIMIT", 1]]
440
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
441
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
442
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
443
+  (0.1ms) ROLLBACK
444
+  (0.1ms) BEGIN
445
+  (0.1ms) SAVEPOINT active_record_1
446
+ Editables::Field Load (0.2ms) SELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1 [["LIMIT", 1]]
447
+ Editables::Field Load (0.1ms) SELECT "editable_fields".* FROM "editable_fields"
448
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
449
+  (0.1ms) ROLLBACK