c-editables 0.1.1
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 +7 -0
- data/README.md +31 -0
- data/Rakefile +30 -0
- data/app/controllers/editables/application_controller.rb +5 -0
- data/app/controllers/editables/fields_controller.rb +28 -0
- data/app/helpers/editables/application_helper.rb +25 -0
- data/app/models/editables/field.rb +9 -0
- data/app/models/editables/page.rb +6 -0
- data/app/views/editables/fields/update.js.erb +6 -0
- data/app/views/layouts/editables/application.html.erb +15 -0
- data/config/routes.rb +4 -0
- data/db/migrate/20200919073703_create_editable_pages.rb +10 -0
- data/db/migrate/20200920082203_create_editable_fields.rb +11 -0
- data/lib/editables.rb +7 -0
- data/lib/editables/data_editable.rb +13 -0
- data/lib/editables/engine.rb +20 -0
- data/lib/editables/fields_collection.rb +29 -0
- data/lib/editables/generators/editables/install_generator.rb +46 -0
- data/lib/editables/generators/editables/templates/config.yml +162 -0
- data/lib/editables/generators/editables/templates/field.rb +9 -0
- data/lib/editables/generators/editables/templates/migration.rb +17 -0
- data/lib/editables/generators/editables/templates/page.rb +6 -0
- data/lib/editables/version.rb +3 -0
- data/lib/tasks/create_editable_objects.rake +23 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
- data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/javascript/packs/application.js +15 -0
- data/spec/dummy/app/jobs/application_job.rb +7 -0
- data/spec/dummy/app/mailers/application_mailer.rb +4 -0
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
- data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +33 -0
- data/spec/dummy/config.ru +5 -0
- data/spec/dummy/config/application.rb +18 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/database.yml +24 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +62 -0
- data/spec/dummy/config/environments/production.rb +112 -0
- data/spec/dummy/config/environments/test.rb +49 -0
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy/config/initializers/assets.rb +12 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/content_security_policy.rb +28 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +33 -0
- data/spec/dummy/config/puma.rb +38 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/db/schema.rb +37 -0
- data/spec/dummy/log/development.log +36 -0
- data/spec/dummy/log/test.log +449 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/development_secret.txt +1 -0
- data/spec/editables_test.rb +7 -0
- data/spec/factories/field.rb +17 -0
- data/spec/factories/page.rb +7 -0
- data/spec/integration/navigation_test.rb +7 -0
- data/spec/lib/editables/data_editable_spec.rb +19 -0
- data/spec/lib/editables/editable_fields_collection_spec.rb +74 -0
- data/spec/rails_helper.rb +75 -0
- data/spec/spec_helper.rb +97 -0
- data/spec/support/database_cleaner.rb +21 -0
- 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,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,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,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,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
|
+
[1m[35m (60.7ms)[0m [1m[35mCREATE DATABASE "dummy_development" ENCODING = 'utf8'[0m
|
2
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'utf8'[0m
|
3
|
+
[1m[35m (14.7ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
4
|
+
[1m[35m (6.0ms)[0m [1m[35mCREATE 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)[0m
|
5
|
+
[1m[35m (2.0ms)[0m [1m[34mSELECT pg_try_advisory_lock(1721091371569202325)[0m
|
6
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
7
|
+
Migrating to CreateEditablePages (20200919073703)
|
8
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
9
|
+
[1m[35m (3.1ms)[0m [1m[35mCREATE 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)[0m
|
10
|
+
[1m[36mprimary::SchemaMigration Create (0.3ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20200919073703"]]
|
11
|
+
[1m[35m (0.7ms)[0m [1m[35mCOMMIT[0m
|
12
|
+
Migrating to CreateEditableFields (20200920082203)
|
13
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
14
|
+
[1m[35m (3.6ms)[0m [1m[35mCREATE 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
|
+
)[0m
|
18
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
19
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT pg_advisory_unlock(1721091371569202325)[0m
|
20
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT pg_try_advisory_lock(1721091371569202325)[0m
|
21
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
22
|
+
Migrating to CreateEditableFields (20200920082203)
|
23
|
+
[1m[35m (0.3ms)[0m [1m[35mBEGIN[0m
|
24
|
+
[1m[35m (4.6ms)[0m [1m[35mCREATE 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
|
+
)[0m
|
28
|
+
[1m[35m (0.6ms)[0m [1m[35mCREATE INDEX "index_editable_fields_on_editable_page_id" ON "editable_fields" ("editable_page_id")[0m
|
29
|
+
[1m[36mprimary::SchemaMigration Create (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version"[0m [["version", "20200920082203"]]
|
30
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
31
|
+
[1m[36mActiveRecord::InternalMetadata Load (4.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
32
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
33
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "development"], ["created_at", "2020-09-24 16:03:41.394316"], ["updated_at", "2020-09-24 16:03:41.394316"]]
|
34
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
35
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_advisory_unlock(1721091371569202325)[0m
|
36
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
@@ -0,0 +1,449 @@
|
|
1
|
+
[1m[35m (0.7ms)[0m [1m[35mDROP DATABASE IF EXISTS "dummy_test"[0m
|
2
|
+
[1m[35m (168.1ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'utf8'[0m
|
3
|
+
[1m[35m (25.4ms)[0m [1m[35mDROP DATABASE IF EXISTS "dummy_test"[0m
|
4
|
+
[1m[35m (48.5ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'utf8'[0m
|
5
|
+
[1m[35mSQL (0.8ms)[0m [1m[35mCREATE EXTENSION IF NOT EXISTS "plpgsql"[0m
|
6
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "editable_fields" CASCADE[0m
|
7
|
+
[1m[35m (6.4ms)[0m [1m[35mCREATE 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)[0m
|
8
|
+
[1m[35m (0.9ms)[0m [1m[35mCREATE INDEX "index_editable_fields_on_editable_page_id" ON "editable_fields" ("editable_page_id")[0m
|
9
|
+
[1m[35m (0.1ms)[0m [1m[35mDROP TABLE IF EXISTS "editable_pages" CASCADE[0m
|
10
|
+
[1m[35m (3.5ms)[0m [1m[35mCREATE 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)[0m
|
11
|
+
[1m[35m (2.8ms)[0m [1m[35mALTER TABLE "editable_fields" ADD CONSTRAINT "fk_rails_6bb71fb202"
|
12
|
+
FOREIGN KEY ("editable_page_id")
|
13
|
+
REFERENCES "editable_pages" ("id")
|
14
|
+
[0m
|
15
|
+
[1m[35m (1.9ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)[0m
|
16
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
17
|
+
[1m[35m (4.9ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20200920082203)[0m
|
18
|
+
[1m[35m (0.4ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES
|
19
|
+
(20200919073703);
|
20
|
+
|
21
|
+
[0m
|
22
|
+
[1m[35m (2.5ms)[0m [1m[35mCREATE 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)[0m
|
23
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
24
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
25
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.3ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "environment"], ["value", "test"], ["created_at", "2020-09-24 16:03:48.877320"], ["updated_at", "2020-09-24 16:03:48.877320"]]
|
26
|
+
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
|
27
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
28
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "schema_sha1"], ["LIMIT", 1]]
|
29
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
30
|
+
[1m[36mActiveRecord::InternalMetadata Create (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"[0m [["key", "schema_sha1"], ["value", "bf36756495dccd07950389ad6291bf9e710c758f"], ["created_at", "2020-09-24 16:03:48.881258"], ["updated_at", "2020-09-24 16:03:48.881258"]]
|
31
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
32
|
+
[1m[35m (2.3ms)[0m [1m[35mCREATE DATABASE "dummy_test" ENCODING = 'utf8'[0m
|
33
|
+
[1m[35m (1.9ms)[0m [1m[34mSELECT pg_try_advisory_lock(2735718569030447490)[0m
|
34
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
35
|
+
[1m[36mActiveRecord::InternalMetadata Load (1.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2[0m [["key", "environment"], ["LIMIT", 1]]
|
36
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT pg_advisory_unlock(2735718569030447490)[0m
|
37
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
38
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
39
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
40
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
41
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
42
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
43
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
44
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
45
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
46
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
47
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
48
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
49
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
50
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
51
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
52
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
53
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
54
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
55
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
56
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
57
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
58
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
59
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
60
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
61
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
62
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
63
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
64
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
65
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
66
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
67
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
68
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
69
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
70
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
71
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
72
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
73
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
74
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
75
|
+
[1m[35m (4.5ms)[0m [1m[31mROLLBACK[0m
|
76
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
77
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
78
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
79
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
80
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
81
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
82
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
83
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
84
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
85
|
+
[1m[35m (0.5ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
86
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
87
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
88
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
89
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
90
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
91
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
92
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
93
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
94
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
95
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
96
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
97
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
98
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
99
|
+
[1m[35m (1.7ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
100
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
101
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
102
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
103
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
104
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
105
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
106
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
107
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
108
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
109
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
110
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
111
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
112
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
113
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
114
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
115
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
116
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
117
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
118
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
119
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
120
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
121
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
122
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
123
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
124
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
125
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
126
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
127
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
128
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
129
|
+
[1m[36mEditables::Page Create (6.0ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
131
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
132
|
+
[1m[36mEditables::Field Exists? (2.9ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_text"], ["editable_page_id", 1], ["LIMIT", 1]]
|
133
|
+
[1m[36mEditables::Field Create (2.6ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
135
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
136
|
+
[1m[36mEditables::Page Create (0.2ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
138
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
139
|
+
[1m[36mEditables::Field Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_image"], ["editable_page_id", 2], ["LIMIT", 1]]
|
140
|
+
[1m[36mEditables::Field Create (0.2ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
142
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
143
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
144
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
145
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
146
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
147
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
148
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
149
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
150
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
151
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
152
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
153
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
154
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
155
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
156
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
157
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
158
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
159
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
160
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
161
|
+
[1m[36mEditables::Page Create (0.3ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.6ms)[0m [1m[35mCOMMIT[0m
|
163
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
164
|
+
[1m[36mEditables::Field Exists? (0.3ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_text"], ["editable_page_id", 3], ["LIMIT", 1]]
|
165
|
+
[1m[36mEditables::Field Create (0.3ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
167
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
168
|
+
[1m[36mEditables::Page Create (0.1ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
|
170
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
171
|
+
[1m[36mEditables::Field Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_image"], ["editable_page_id", 4], ["LIMIT", 1]]
|
172
|
+
[1m[36mEditables::Field Create (0.4ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
|
174
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
175
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
176
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
177
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK[0m
|
178
|
+
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
|
179
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
180
|
+
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
|
181
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
182
|
+
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
|
183
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2[0m [["label", "field_with_text"], ["LIMIT", 1]]
|
184
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
185
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
186
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
187
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
188
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
189
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
190
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
191
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
192
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
193
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
194
|
+
[1m[36mEditables::Page Create (0.3ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.7ms)[0m [1m[35mCOMMIT[0m
|
196
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
197
|
+
[1m[36mEditables::Field Exists? (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_text"], ["editable_page_id", 5], ["LIMIT", 1]]
|
198
|
+
[1m[36mEditables::Field Create (0.4ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
200
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
201
|
+
[1m[36mEditables::Page Create (0.1ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
203
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
204
|
+
[1m[36mEditables::Field Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_image"], ["editable_page_id", 6], ["LIMIT", 1]]
|
205
|
+
[1m[36mEditables::Field Create (0.2ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
207
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
208
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
209
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
210
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
211
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
212
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
213
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
214
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
215
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
216
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
217
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
218
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
219
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
220
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
221
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
222
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
223
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
224
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
225
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2[0m [["label", "field_with_text"], ["LIMIT", 1]]
|
226
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
227
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
228
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
229
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
230
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
231
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
232
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
233
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
234
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
235
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
236
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
237
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
238
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
239
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
240
|
+
[1m[36mEditables::Page Create (0.3ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.8ms)[0m [1m[35mCOMMIT[0m
|
242
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
243
|
+
[1m[36mEditables::Field Exists? (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_text"], ["editable_page_id", 7], ["LIMIT", 1]]
|
244
|
+
[1m[36mEditables::Field Create (1.3ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
246
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
247
|
+
[1m[36mEditables::Page Create (0.2ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
249
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
250
|
+
[1m[36mEditables::Field Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_image"], ["editable_page_id", 8], ["LIMIT", 1]]
|
251
|
+
[1m[36mEditables::Field Create (0.2ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
253
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
254
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
255
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
256
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
257
|
+
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
|
258
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
259
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
260
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
261
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
262
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
263
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
264
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
265
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
266
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
267
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
268
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
269
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
270
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
271
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2[0m [["label", "field_with_text"], ["LIMIT", 1]]
|
272
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
273
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
274
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
275
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
276
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
277
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
278
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
279
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
280
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
281
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
282
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
283
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
284
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
285
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
286
|
+
[1m[36mEditables::Page Create (0.3ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.4ms)[0m [1m[35mCOMMIT[0m
|
288
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
289
|
+
[1m[36mEditables::Field Exists? (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_text"], ["editable_page_id", 9], ["LIMIT", 1]]
|
290
|
+
[1m[36mEditables::Field Create (0.5ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
292
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
293
|
+
[1m[36mEditables::Page Create (0.1ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
|
295
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
296
|
+
[1m[36mEditables::Field Exists? (0.1ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_image"], ["editable_page_id", 10], ["LIMIT", 1]]
|
297
|
+
[1m[36mEditables::Field Create (0.2ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
|
299
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
300
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
301
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
302
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
303
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
304
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
305
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
306
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
307
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
308
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
309
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
310
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
311
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
312
|
+
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
|
313
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
314
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
315
|
+
[1m[35m (0.0ms)[0m [1m[31mROLLBACK[0m
|
316
|
+
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
|
317
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2[0m [["label", "field_with_text"], ["LIMIT", 1]]
|
318
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
319
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
320
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
321
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
322
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
323
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
324
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
325
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
326
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
327
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
328
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
329
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
330
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
331
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
332
|
+
[1m[36mEditables::Page Create (0.3ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (1.0ms)[0m [1m[35mCOMMIT[0m
|
334
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
335
|
+
[1m[36mEditables::Field Exists? (0.6ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_text"], ["editable_page_id", 11], ["LIMIT", 1]]
|
336
|
+
[1m[36mEditables::Field Create (0.4ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
338
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
339
|
+
[1m[36mEditables::Page Create (0.2ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
341
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
342
|
+
[1m[36mEditables::Field Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_image"], ["editable_page_id", 12], ["LIMIT", 1]]
|
343
|
+
[1m[36mEditables::Field Create (0.2ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
345
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
346
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
347
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
348
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
349
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
350
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
351
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
352
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
353
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
354
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
355
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
356
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
357
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
358
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
359
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
360
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
361
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
362
|
+
[1m[35m (0.0ms)[0m [1m[35mBEGIN[0m
|
363
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2[0m [["label", "field_with_text"], ["LIMIT", 1]]
|
364
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
365
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
366
|
+
[1m[35m (0.2ms)[0m [1m[31mROLLBACK[0m
|
367
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
368
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
369
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
370
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
371
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
372
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
373
|
+
[1m[35m (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
374
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
375
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
376
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
377
|
+
[1m[35m (0.3ms)[0m [1m[34mSELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1[0m [["key", "schema_sha1"]]
|
378
|
+
[1m[35m (0.4ms)[0m [1m[34mSELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC[0m
|
379
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
380
|
+
[1m[35m (2.0ms)[0m [1m[35mALTER 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[0m
|
381
|
+
[1m[35m (0.9ms)[0m [1m[35mCOMMIT[0m
|
382
|
+
[1m[35m (12.6ms)[0m [1m[34m 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
|
+
[0m
|
389
|
+
[1m[35m (4.0ms)[0m [1m[34mselect table_name from information_schema.views where table_schema = 'dummy_test'[0m
|
390
|
+
[1m[35m (7.0ms)[0m [1m[35mTRUNCATE TABLE "public"."editable_pages", "public"."editable_fields" RESTART IDENTITY CASCADE;[0m
|
391
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
392
|
+
[1m[35m (0.2ms)[0m [1m[35mALTER 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[0m
|
393
|
+
[1m[35m (0.2ms)[0m [1m[35mCOMMIT[0m
|
394
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
395
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
396
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
397
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
398
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
399
|
+
[1m[36mEditables::Page Create (0.5ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (1.4ms)[0m [1m[35mCOMMIT[0m
|
401
|
+
[1m[35m (0.2ms)[0m [1m[35mBEGIN[0m
|
402
|
+
[1m[36mEditables::Field Exists? (0.4ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_text"], ["editable_page_id", 1], ["LIMIT", 1]]
|
403
|
+
[1m[36mEditables::Field Create (0.5ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (1.0ms)[0m [1m[35mCOMMIT[0m
|
405
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
406
|
+
[1m[36mEditables::Page Create (0.2ms)[0m [1m[32mINSERT INTO "editable_pages" ("name", "description", "kind", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
408
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
409
|
+
[1m[36mEditables::Field Exists? (0.2ms)[0m [1m[34mSELECT 1 AS one FROM "editable_fields" WHERE "editable_fields"."label" = $1 AND "editable_fields"."editable_page_id" = $2 LIMIT $3[0m [["label", "field_with_image"], ["editable_page_id", 2], ["LIMIT", 1]]
|
410
|
+
[1m[36mEditables::Field Create (0.2ms)[0m [1m[32mINSERT INTO "editable_fields" ("label", "kind", "value", "editable_page_id", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["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
|
+
[1m[35m (0.3ms)[0m [1m[35mCOMMIT[0m
|
412
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
413
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
414
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
415
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
416
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
417
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
418
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
419
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
420
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
421
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
422
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
423
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
424
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
425
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
426
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
427
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
428
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
429
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
430
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
431
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
432
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
433
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
434
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
435
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
436
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
437
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
438
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
439
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" WHERE "editable_fields"."label" = $1 LIMIT $2[0m [["label", "field_with_text"], ["LIMIT", 1]]
|
440
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
441
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
442
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
443
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|
444
|
+
[1m[35m (0.1ms)[0m [1m[35mBEGIN[0m
|
445
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
446
|
+
[1m[36mEditables::Field Load (0.2ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields" ORDER BY "editable_fields"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
447
|
+
[1m[36mEditables::Field Load (0.1ms)[0m [1m[34mSELECT "editable_fields".* FROM "editable_fields"[0m
|
448
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK TO SAVEPOINT active_record_1[0m
|
449
|
+
[1m[35m (0.1ms)[0m [1m[31mROLLBACK[0m
|