weeler 1.6.0 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +2 -10
- data/CHANGELOG.md +12 -0
- data/README.md +9 -21
- data/Rakefile +4 -4
- data/app/assets/javascripts/weeler/init.js +34 -0
- data/app/controllers/weeler/settings_controller.rb +1 -1
- data/app/controllers/weeler/translations_controller.rb +1 -1
- data/app/views/kaminari/weeler/_first_page.html.haml +3 -0
- data/app/views/kaminari/weeler/_gap.html.haml +2 -0
- data/app/views/kaminari/weeler/_last_page.html.haml +3 -0
- data/app/views/kaminari/weeler/_next_page.html.haml +3 -0
- data/app/views/kaminari/weeler/_page.html.haml +2 -0
- data/app/views/kaminari/weeler/_paginator.html.haml +11 -0
- data/app/views/kaminari/weeler/_prev_page.html.haml +3 -0
- data/lib/i18n/backend/weeler.rb +1 -1
- data/lib/weeler/action_controller/acts/restful.rb +1 -1
- data/lib/weeler/engine.rb +0 -2
- data/lib/weeler/version.rb +2 -2
- data/spec/controllers/translations_controller_spec.rb +8 -8
- data/spec/dummy/.ruby-version +1 -0
- data/spec/dummy/Rakefile +2 -2
- data/spec/dummy/app/assets/config/manifest.js +3 -0
- data/spec/dummy/app/assets/stylesheets/application.css +6 -4
- 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 +0 -3
- data/spec/dummy/app/{assets/javascripts → javascript/packs}/application.js +5 -3
- 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/models/post.rb +1 -1
- data/spec/dummy/app/views/layouts/application.html.erb +9 -9
- 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 +1 -1
- data/spec/dummy/bin/setup +33 -0
- data/spec/dummy/config.ru +2 -1
- data/spec/dummy/config/application.rb +19 -13
- data/spec/dummy/config/boot.rb +3 -3
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/environment.rb +2 -2
- data/spec/dummy/config/environments/development.rb +38 -5
- data/spec/dummy/config/environments/production.rb +64 -32
- data/spec/dummy/config/environments/test.rb +20 -8
- 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/content_security_policy.rb +28 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/mime_types.rb +0 -1
- data/spec/dummy/config/initializers/wrap_parameters.rb +2 -2
- data/spec/dummy/config/puma.rb +38 -0
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config/storage.yml +34 -0
- data/spec/dummy/db/migrate/20140123083704_create_weeler_seos.rb +1 -1
- data/spec/dummy/db/migrate/20140123083705_create_weeler_settings.rb +1 -1
- data/spec/dummy/db/migrate/20140123083706_create_weeler_translations.rb +1 -1
- data/spec/dummy/db/migrate/20140123083707_translate_weeler_seos.rb +1 -1
- data/spec/dummy/db/migrate/20140718103237_create_posts.rb +1 -1
- data/spec/dummy/db/migrate/20140726151210_create_translations.rb +1 -1
- data/spec/dummy/db/migrate/20160330161101_create_weeler_locks.rb +1 -1
- data/spec/dummy/db/migrate/20160330192005_create_weeler_translation_stats.rb +1 -1
- data/spec/dummy/db/schema.rb +56 -64
- data/spec/dummy/{app/mailers/.keep → db/test.sqlite3} +0 -0
- data/spec/dummy/log/development.log +0 -1020
- data/spec/dummy/public/404.html +24 -15
- data/spec/dummy/public/422.html +24 -15
- data/spec/dummy/public/500.html +23 -14
- data/spec/dummy/{app/models/.keep → public/apple-touch-icon-precomposed.png} +0 -0
- data/spec/dummy/public/apple-touch-icon.png +0 -0
- data/spec/dummy/storage/.keep +0 -0
- data/spec/factories/dummy_posts.rb +3 -3
- data/spec/factories/translations.rb +4 -4
- data/spec/spec_helper.rb +6 -4
- data/spec/weeler/action_controller/acts/restful_spec.rb +5 -4
- data/spec/weeler/i18n/backend/weeler_spec.rb +7 -7
- data/spec/weeler/i18n/humanize_missing_translations_spec.rb +14 -11
- data/weeler.gemspec +17 -12
- metadata +97 -58
- data/app/assets/javascripts/weeler/init.js.coffee +0 -26
- data/app/views/kaminari/weeler/_first_page.html.erb +0 -13
- data/app/views/kaminari/weeler/_gap.html.erb +0 -8
- data/app/views/kaminari/weeler/_last_page.html.erb +0 -13
- data/app/views/kaminari/weeler/_next_page.html.erb +0 -14
- data/app/views/kaminari/weeler/_page.html.erb +0 -12
- data/app/views/kaminari/weeler/_paginator.html.erb +0 -23
- data/app/views/kaminari/weeler/_prev_page.html.erb +0 -13
- data/lib/weeler/action_view/helpers/form_helper.rb +0 -13
- data/lib/weeler/action_view/helpers/image_form_helper.rb +0 -83
- data/spec/dummy/README.rdoc +0 -28
- data/spec/dummy/bin/bundle +0 -3
- data/spec/dummy/config/initializers/secret_token.rb +0 -12
- data/spec/dummy/config/initializers/session_store.rb +0 -3
- data/spec/dummy/log/production.log +0 -4
- data/spec/weeler/action_view/helpers/form_helper_spec.rb +0 -35
@@ -5,10 +5,10 @@
|
|
5
5
|
|
6
6
|
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
7
|
ActiveSupport.on_load(:action_controller) do
|
8
|
-
wrap_parameters format: [:json]
|
8
|
+
wrap_parameters format: [:json]
|
9
9
|
end
|
10
10
|
|
11
11
|
# To enable root element in JSON for ActiveRecord objects.
|
12
12
|
# ActiveSupport.on_load(:active_record) do
|
13
|
-
#
|
13
|
+
# self.include_root_in_json = true
|
14
14
|
# end
|
@@ -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 ]
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -1,107 +1,99 @@
|
|
1
|
-
# encoding: UTF-8
|
2
1
|
# This file is auto-generated from the current state of the database. Instead
|
3
2
|
# of editing this file, please use the migrations feature of Active Record to
|
4
3
|
# incrementally modify your database, and then regenerate this schema definition.
|
5
4
|
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
# from scratch.
|
10
|
-
#
|
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.
|
11
10
|
#
|
12
11
|
# It's strongly recommended that you check this file into your version control system.
|
13
12
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
13
|
+
ActiveRecord::Schema.define(version: 2016_03_30_192005) do
|
15
14
|
|
16
15
|
# These are extensions that must be enabled in order to support this database
|
17
16
|
enable_extension "plpgsql"
|
18
17
|
|
19
|
-
create_table "posts", force: :cascade do |t|
|
20
|
-
t.string
|
21
|
-
t.text
|
22
|
-
t.integer
|
23
|
-
t.integer
|
18
|
+
create_table "posts", id: :serial, force: :cascade do |t|
|
19
|
+
t.string "title"
|
20
|
+
t.text "body"
|
21
|
+
t.integer "sequence", default: 0
|
22
|
+
t.integer "status", default: 0
|
24
23
|
t.datetime "created_at"
|
25
24
|
t.datetime "updated_at"
|
26
25
|
end
|
27
26
|
|
28
|
-
create_table "settings", force: :cascade do |t|
|
29
|
-
t.string
|
30
|
-
t.text
|
31
|
-
t.integer
|
32
|
-
t.string
|
27
|
+
create_table "settings", id: :serial, force: :cascade do |t|
|
28
|
+
t.string "var", null: false
|
29
|
+
t.text "value"
|
30
|
+
t.integer "thing_id"
|
31
|
+
t.string "thing_type", limit: 30
|
33
32
|
t.datetime "created_at"
|
34
33
|
t.datetime "updated_at"
|
34
|
+
t.index ["thing_type", "thing_id", "var"], name: "index_settings_on_thing_type_and_thing_id_and_var", unique: true
|
35
35
|
end
|
36
36
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
t.
|
41
|
-
t.
|
42
|
-
t.string "title"
|
43
|
-
t.text "body"
|
37
|
+
create_table "translations", id: :serial, force: :cascade do |t|
|
38
|
+
t.integer "post_id"
|
39
|
+
t.string "locale"
|
40
|
+
t.string "title"
|
41
|
+
t.text "body"
|
44
42
|
t.datetime "created_at"
|
45
43
|
t.datetime "updated_at"
|
44
|
+
t.index ["post_id"], name: "index_translations_on_post_id"
|
46
45
|
end
|
47
46
|
|
48
|
-
|
49
|
-
|
50
|
-
create_table "weeler_locks", force: :cascade do |t|
|
51
|
-
t.string "name", limit: 40
|
47
|
+
create_table "weeler_locks", id: :serial, force: :cascade do |t|
|
48
|
+
t.string "name", limit: 40
|
52
49
|
t.datetime "created_at"
|
53
50
|
t.datetime "updated_at"
|
51
|
+
t.index ["name"], name: "index_weeler_locks_on_name", unique: true
|
54
52
|
end
|
55
53
|
|
56
|
-
add_index "weeler_locks", ["name"], name: "index_weeler_locks_on_name", unique: true, using: :btree
|
57
|
-
|
58
54
|
create_table "weeler_seo_translations", force: :cascade do |t|
|
59
|
-
t.integer
|
60
|
-
t.string
|
61
|
-
t.datetime "created_at",
|
62
|
-
t.datetime "updated_at",
|
63
|
-
t.string
|
64
|
-
t.text
|
65
|
-
t.text
|
55
|
+
t.integer "weeler_seo_id", null: false
|
56
|
+
t.string "locale", null: false
|
57
|
+
t.datetime "created_at", precision: 6, null: false
|
58
|
+
t.datetime "updated_at", precision: 6, null: false
|
59
|
+
t.string "title"
|
60
|
+
t.text "description"
|
61
|
+
t.text "keywords"
|
62
|
+
t.index ["locale"], name: "index_weeler_seo_translations_on_locale"
|
63
|
+
t.index ["weeler_seo_id"], name: "index_weeler_seo_translations_on_weeler_seo_id"
|
66
64
|
end
|
67
65
|
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
t.string
|
73
|
-
t.
|
74
|
-
t.
|
75
|
-
t.string "section"
|
76
|
-
t.integer "seoable_id"
|
77
|
-
t.string "seoable_type"
|
66
|
+
create_table "weeler_seos", id: :serial, force: :cascade do |t|
|
67
|
+
t.string "title"
|
68
|
+
t.text "description"
|
69
|
+
t.text "keywords"
|
70
|
+
t.string "section"
|
71
|
+
t.string "seoable_type"
|
72
|
+
t.integer "seoable_id"
|
78
73
|
t.datetime "created_at"
|
79
74
|
t.datetime "updated_at"
|
75
|
+
t.index ["section"], name: "index_weeler_seos_on_section"
|
76
|
+
t.index ["seoable_type", "seoable_id"], name: "index_weeler_seos_on_seoable_type_and_seoable_id"
|
80
77
|
end
|
81
78
|
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
create_table "weeler_translation_stats", force: :cascade do |t|
|
86
|
-
t.string "key"
|
87
|
-
t.integer "usage_count", default: 0
|
79
|
+
create_table "weeler_translation_stats", id: :serial, force: :cascade do |t|
|
80
|
+
t.string "key"
|
81
|
+
t.integer "usage_count", default: 0
|
88
82
|
t.datetime "created_at"
|
89
83
|
t.datetime "updated_at"
|
84
|
+
t.index ["key"], name: "index_weeler_translation_stats_on_key"
|
90
85
|
end
|
91
86
|
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
t.
|
96
|
-
t.
|
97
|
-
t.
|
98
|
-
t.text "interpolations"
|
99
|
-
t.boolean "is_proc", default: false
|
87
|
+
create_table "weeler_translations", id: :serial, force: :cascade do |t|
|
88
|
+
t.string "locale"
|
89
|
+
t.string "key"
|
90
|
+
t.text "value"
|
91
|
+
t.text "interpolations"
|
92
|
+
t.boolean "is_proc", default: false
|
100
93
|
t.datetime "created_at"
|
101
94
|
t.datetime "updated_at"
|
95
|
+
t.index ["key"], name: "index_weeler_translations_on_key"
|
96
|
+
t.index ["locale"], name: "index_weeler_translations_on_locale"
|
102
97
|
end
|
103
98
|
|
104
|
-
add_index "weeler_translations", ["key"], name: "index_weeler_translations_on_key", using: :btree
|
105
|
-
add_index "weeler_translations", ["locale"], name: "index_weeler_translations_on_locale", using: :btree
|
106
|
-
|
107
99
|
end
|
File without changes
|
@@ -1,1020 +0,0 @@
|
|
1
|
-
[1m[36m (1.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
-
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4
|
-
Migrating to CreateWeelerTranslations (20131015144655)
|
5
|
-
[1m[36m (2.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
6
|
-
[1m[35m (1.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
7
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
8
|
-
Migrating to CreateWeelerTranslations (20131015144900)
|
9
|
-
[1m[35m (0.1ms)[0m begin transaction
|
10
|
-
[1m[36m (0.5ms)[0m [1mCREATE TABLE "weeler_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime) [0m
|
11
|
-
[1m[35m (0.2ms)[0m CREATE INDEX "index_weeler_translations_on_locale" ON "weeler_translations" ("locale")
|
12
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_translations_on_key" ON "weeler_translations" ("key")[0m
|
13
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20131015144900"]]
|
14
|
-
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
|
15
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
16
|
-
[1m[36mI18n::Backend::Weeler::Translation Load (7.2ms)[0m [1mSELECT "weeler_translations".* FROM "weeler_translations" WHERE "weeler_translations"."locale" = 'en' AND ("key" IN ('hello') OR "key" LIKE 'hello.%')[0m
|
17
|
-
[1m[35m (0.1ms)[0m begin transaction
|
18
|
-
[1m[36mSQL (4.6ms)[0m [1mINSERT INTO "weeler_translations" ("created_at", "interpolations", "key", "locale", "updated_at", "value") VALUES (?, ?, ?, ?, ?, ?)[0m [["created_at", Thu, 17 Oct 2013 11:11:35 UTC +00:00], ["interpolations", "--- []\n"], ["key", "hello"], ["locale", "en"], ["updated_at", Thu, 17 Oct 2013 11:11:35 UTC +00:00], ["value", nil]]
|
19
|
-
[1m[35m (1.4ms)[0m commit transaction
|
20
|
-
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
21
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
22
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
23
|
-
Migrating to CreateWeelerSeos (20140123083704)
|
24
|
-
[1m[35m (0.1ms)[0m begin transaction
|
25
|
-
[1m[36m (0.3ms)[0m [1mCREATE TABLE "weeler_seos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "keywords" text, "section" varchar(255), "seoable_id" integer, "seoable_type" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
26
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_seos_on_seoable_id_and_seoable_type" ON "weeler_seos" ("seoable_id", "seoable_type")
|
27
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_seos_on_section" ON "weeler_seos" ("section")[0m
|
28
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140123083704"]]
|
29
|
-
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
30
|
-
Migrating to CreateWeelerSettings (20140123083705)
|
31
|
-
[1m[35m (0.1ms)[0m begin transaction
|
32
|
-
[1m[36m (0.3ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
33
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
34
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083705"]]
|
35
|
-
[1m[35m (0.7ms)[0m commit transaction
|
36
|
-
Migrating to CreateWeelerTranslations (20140123083706)
|
37
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
38
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "weeler_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)
|
39
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_translations_on_locale" ON "weeler_translations" ("locale")[0m
|
40
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_translations_on_key" ON "weeler_translations" ("key")
|
41
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083706"]]
|
42
|
-
[1m[35m (0.6ms)[0m commit transaction
|
43
|
-
Migrating to TranslateWeelerSeos (20140123083707)
|
44
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
45
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "weeler_seo_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "weeler_seo_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime)
|
46
|
-
[1m[36m (0.1ms)[0m [1mALTER TABLE "weeler_seo_translations" ADD "title" varchar(255)[0m
|
47
|
-
[1m[35m (0.1ms)[0m ALTER TABLE "weeler_seo_translations" ADD "description" text
|
48
|
-
[1m[36m (0.1ms)[0m [1mALTER TABLE "weeler_seo_translations" ADD "keywords" text[0m
|
49
|
-
[1m[35mWeeler::Seo Load (0.1ms)[0m SELECT "weeler_seos".* FROM "weeler_seos" ORDER BY "weeler_seos"."id" ASC LIMIT 1000
|
50
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_seo_translations_on_weeler_seo_id" ON "weeler_seo_translations" ("weeler_seo_id")[0m
|
51
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_seo_translations_on_locale" ON "weeler_seo_translations" ("locale")
|
52
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083707"]]
|
53
|
-
[1m[35m (0.6ms)[0m commit transaction
|
54
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
55
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
56
|
-
Migrating to CreatePosts (20140718103237)
|
57
|
-
[1m[35m (0.0ms)[0m begin transaction
|
58
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
59
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140718103237"]]
|
60
|
-
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
61
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
62
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
63
|
-
FROM sqlite_master
|
64
|
-
WHERE name='index_settings_on_thing_type_and_thing_id_and_var' AND type='index'
|
65
|
-
UNION ALL
|
66
|
-
SELECT sql
|
67
|
-
FROM sqlite_temp_master
|
68
|
-
WHERE name='index_settings_on_thing_type_and_thing_id_and_var' AND type='index'
|
69
|
-
[0m
|
70
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
71
|
-
FROM sqlite_master
|
72
|
-
WHERE name='index_weeler_seo_translations_on_locale' AND type='index'
|
73
|
-
UNION ALL
|
74
|
-
SELECT sql
|
75
|
-
FROM sqlite_temp_master
|
76
|
-
WHERE name='index_weeler_seo_translations_on_locale' AND type='index'
|
77
|
-
|
78
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
79
|
-
FROM sqlite_master
|
80
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
81
|
-
UNION ALL
|
82
|
-
SELECT sql
|
83
|
-
FROM sqlite_temp_master
|
84
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
85
|
-
[0m
|
86
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
87
|
-
FROM sqlite_master
|
88
|
-
WHERE name='index_weeler_seos_on_section' AND type='index'
|
89
|
-
UNION ALL
|
90
|
-
SELECT sql
|
91
|
-
FROM sqlite_temp_master
|
92
|
-
WHERE name='index_weeler_seos_on_section' AND type='index'
|
93
|
-
|
94
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
95
|
-
FROM sqlite_master
|
96
|
-
WHERE name='index_weeler_seos_on_seoable_id_and_seoable_type' AND type='index'
|
97
|
-
UNION ALL
|
98
|
-
SELECT sql
|
99
|
-
FROM sqlite_temp_master
|
100
|
-
WHERE name='index_weeler_seos_on_seoable_id_and_seoable_type' AND type='index'
|
101
|
-
[0m
|
102
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
103
|
-
FROM sqlite_master
|
104
|
-
WHERE name='index_weeler_translations_on_key' AND type='index'
|
105
|
-
UNION ALL
|
106
|
-
SELECT sql
|
107
|
-
FROM sqlite_temp_master
|
108
|
-
WHERE name='index_weeler_translations_on_key' AND type='index'
|
109
|
-
|
110
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
111
|
-
FROM sqlite_master
|
112
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
113
|
-
UNION ALL
|
114
|
-
SELECT sql
|
115
|
-
FROM sqlite_temp_master
|
116
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
117
|
-
[0m
|
118
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
119
|
-
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
120
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
121
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
122
|
-
Migrating to CreateWeelerSeos (20140123083704)
|
123
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
124
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "weeler_seos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "keywords" text, "section" varchar(255), "seoable_id" integer, "seoable_type" varchar(255), "created_at" datetime, "updated_at" datetime)
|
125
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_seos_on_seoable_id_and_seoable_type" ON "weeler_seos" ("seoable_id", "seoable_type")[0m
|
126
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
127
|
-
FROM sqlite_master
|
128
|
-
WHERE name='index_weeler_seos_on_seoable_id_and_seoable_type' AND type='index'
|
129
|
-
UNION ALL
|
130
|
-
SELECT sql
|
131
|
-
FROM sqlite_temp_master
|
132
|
-
WHERE name='index_weeler_seos_on_seoable_id_and_seoable_type' AND type='index'
|
133
|
-
|
134
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_seos_on_section" ON "weeler_seos" ("section")[0m
|
135
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140123083704"]]
|
136
|
-
[1m[36m (0.5ms)[0m [1mcommit transaction[0m
|
137
|
-
Migrating to CreateWeelerSettings (20140123083705)
|
138
|
-
[1m[35m (0.0ms)[0m begin transaction
|
139
|
-
[1m[36m (0.2ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
140
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
141
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083705"]]
|
142
|
-
[1m[35m (0.6ms)[0m commit transaction
|
143
|
-
Migrating to CreateWeelerTranslations (20140123083706)
|
144
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
145
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "weeler_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)
|
146
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_translations_on_locale" ON "weeler_translations" ("locale")[0m
|
147
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
148
|
-
FROM sqlite_master
|
149
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
150
|
-
UNION ALL
|
151
|
-
SELECT sql
|
152
|
-
FROM sqlite_temp_master
|
153
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
154
|
-
|
155
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_translations_on_key" ON "weeler_translations" ("key")[0m
|
156
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140123083706"]]
|
157
|
-
[1m[36m (0.5ms)[0m [1mcommit transaction[0m
|
158
|
-
Migrating to TranslateWeelerSeos (20140123083707)
|
159
|
-
[1m[35m (0.0ms)[0m begin transaction
|
160
|
-
[1m[36m (0.3ms)[0m [1mCREATE TABLE "weeler_seo_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "weeler_seo_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
161
|
-
[1m[35m (0.1ms)[0m ALTER TABLE "weeler_seo_translations" ADD "title" varchar(255)
|
162
|
-
[1m[36m (0.1ms)[0m [1mALTER TABLE "weeler_seo_translations" ADD "description" text[0m
|
163
|
-
[1m[35m (0.1ms)[0m ALTER TABLE "weeler_seo_translations" ADD "keywords" text
|
164
|
-
[1m[36mWeeler::Seo Load (0.1ms)[0m [1mSELECT "weeler_seos".* FROM "weeler_seos" ORDER BY "weeler_seos"."id" ASC LIMIT 1000[0m
|
165
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_seo_translations_on_weeler_seo_id" ON "weeler_seo_translations" ("weeler_seo_id")
|
166
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
167
|
-
FROM sqlite_master
|
168
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
169
|
-
UNION ALL
|
170
|
-
SELECT sql
|
171
|
-
FROM sqlite_temp_master
|
172
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
173
|
-
[0m
|
174
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_seo_translations_on_locale" ON "weeler_seo_translations" ("locale")
|
175
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083707"]]
|
176
|
-
[1m[35m (0.5ms)[0m commit transaction
|
177
|
-
Migrating to CreatePosts (20140718103237)
|
178
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
179
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "sequence" integer DEFAULT 0, "status" integer DEFAULT 0, "created_at" datetime, "updated_at" datetime)
|
180
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140718103237"]]
|
181
|
-
[1m[35m (0.5ms)[0m commit transaction
|
182
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
183
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
184
|
-
FROM sqlite_master
|
185
|
-
WHERE name='index_settings_on_thing_type_and_thing_id_and_var' AND type='index'
|
186
|
-
UNION ALL
|
187
|
-
SELECT sql
|
188
|
-
FROM sqlite_temp_master
|
189
|
-
WHERE name='index_settings_on_thing_type_and_thing_id_and_var' AND type='index'
|
190
|
-
|
191
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
192
|
-
FROM sqlite_master
|
193
|
-
WHERE name='index_weeler_seo_translations_on_locale' AND type='index'
|
194
|
-
UNION ALL
|
195
|
-
SELECT sql
|
196
|
-
FROM sqlite_temp_master
|
197
|
-
WHERE name='index_weeler_seo_translations_on_locale' AND type='index'
|
198
|
-
[0m
|
199
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
200
|
-
FROM sqlite_master
|
201
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
202
|
-
UNION ALL
|
203
|
-
SELECT sql
|
204
|
-
FROM sqlite_temp_master
|
205
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
206
|
-
|
207
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
208
|
-
FROM sqlite_master
|
209
|
-
WHERE name='index_weeler_seos_on_section' AND type='index'
|
210
|
-
UNION ALL
|
211
|
-
SELECT sql
|
212
|
-
FROM sqlite_temp_master
|
213
|
-
WHERE name='index_weeler_seos_on_section' AND type='index'
|
214
|
-
[0m
|
215
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
216
|
-
FROM sqlite_master
|
217
|
-
WHERE name='index_weeler_seos_on_seoable_id_and_seoable_type' AND type='index'
|
218
|
-
UNION ALL
|
219
|
-
SELECT sql
|
220
|
-
FROM sqlite_temp_master
|
221
|
-
WHERE name='index_weeler_seos_on_seoable_id_and_seoable_type' AND type='index'
|
222
|
-
|
223
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
224
|
-
FROM sqlite_master
|
225
|
-
WHERE name='index_weeler_translations_on_key' AND type='index'
|
226
|
-
UNION ALL
|
227
|
-
SELECT sql
|
228
|
-
FROM sqlite_temp_master
|
229
|
-
WHERE name='index_weeler_translations_on_key' AND type='index'
|
230
|
-
[0m
|
231
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
232
|
-
FROM sqlite_master
|
233
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
234
|
-
UNION ALL
|
235
|
-
SELECT sql
|
236
|
-
FROM sqlite_temp_master
|
237
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
238
|
-
|
239
|
-
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1[0m
|
240
|
-
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" ORDER BY "posts"."id" DESC LIMIT 1
|
241
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
242
|
-
|
243
|
-
You can opt into the new behavior and remove this warning by setting:
|
244
|
-
|
245
|
-
config.active_record.raise_in_transactional_callbacks = true
|
246
|
-
|
247
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
248
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
249
|
-
|
250
|
-
You can opt into the new behavior and remove this warning by setting:
|
251
|
-
|
252
|
-
config.active_record.raise_in_transactional_callbacks = true
|
253
|
-
|
254
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
255
|
-
[1m[36m (1.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
256
|
-
[1m[35m (0.5ms)[0m select sqlite_version(*)
|
257
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
258
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
259
|
-
Migrating to CreateWeelerSeos (20140123083704)
|
260
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
261
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083704_create_weeler_seos.rb:10)
|
262
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "weeler_seos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "keywords" text, "section" varchar, "seoable_id" integer, "seoable_type" varchar, "created_at" datetime, "updated_at" datetime)
|
263
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_seos_on_seoable_type_and_seoable_id" ON "weeler_seos" ("seoable_type", "seoable_id")[0m
|
264
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
265
|
-
FROM sqlite_master
|
266
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
267
|
-
UNION ALL
|
268
|
-
SELECT sql
|
269
|
-
FROM sqlite_temp_master
|
270
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
271
|
-
|
272
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_seos_on_section" ON "weeler_seos" ("section")[0m
|
273
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140123083704"]]
|
274
|
-
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
275
|
-
Migrating to CreateWeelerSettings (20140123083705)
|
276
|
-
[1m[35m (0.0ms)[0m begin transaction
|
277
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083705_create_weeler_settings.rb:8)
|
278
|
-
[1m[36m (0.3ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
279
|
-
[1m[35m (0.3ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
280
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083705"]]
|
281
|
-
[1m[35m (0.8ms)[0m commit transaction
|
282
|
-
Migrating to CreateWeelerTranslations (20140123083706)
|
283
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
284
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083706_create_weeler_translations.rb:10)
|
285
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "weeler_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)
|
286
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_translations_on_locale" ON "weeler_translations" ("locale")[0m
|
287
|
-
[1m[35m (0.0ms)[0m SELECT sql
|
288
|
-
FROM sqlite_master
|
289
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
290
|
-
UNION ALL
|
291
|
-
SELECT sql
|
292
|
-
FROM sqlite_temp_master
|
293
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
294
|
-
|
295
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_translations_on_key" ON "weeler_translations" ("key")[0m
|
296
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140123083706"]]
|
297
|
-
[1m[36m (0.4ms)[0m [1mcommit transaction[0m
|
298
|
-
Migrating to TranslateWeelerSeos (20140123083707)
|
299
|
-
[1m[35m (0.0ms)[0m begin transaction
|
300
|
-
[1m[36m (0.4ms)[0m [1mCREATE TABLE "weeler_seo_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "weeler_seo_id" integer NOT NULL, "locale" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
301
|
-
[1m[35m (0.5ms)[0m ALTER TABLE "weeler_seo_translations" ADD "title" varchar
|
302
|
-
[1m[36m (0.1ms)[0m [1mALTER TABLE "weeler_seo_translations" ADD "description" text[0m
|
303
|
-
[1m[35m (0.1ms)[0m ALTER TABLE "weeler_seo_translations" ADD "keywords" text
|
304
|
-
[1m[36mWeeler::Seo Load (0.1ms)[0m [1mSELECT "weeler_seos".* FROM "weeler_seos" ORDER BY "weeler_seos"."id" ASC LIMIT 1000[0m
|
305
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_seo_translations_on_weeler_seo_id" ON "weeler_seo_translations" ("weeler_seo_id")
|
306
|
-
[1m[36m (0.0ms)[0m [1m SELECT sql
|
307
|
-
FROM sqlite_master
|
308
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
309
|
-
UNION ALL
|
310
|
-
SELECT sql
|
311
|
-
FROM sqlite_temp_master
|
312
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
313
|
-
[0m
|
314
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_seo_translations_on_locale" ON "weeler_seo_translations" ("locale")
|
315
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083707"]]
|
316
|
-
[1m[35m (0.5ms)[0m commit transaction
|
317
|
-
Migrating to CreatePosts (20140718103237)
|
318
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
319
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140718103237_create_posts.rb:9)
|
320
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "sequence" integer DEFAULT 0, "status" integer DEFAULT 0, "created_at" datetime, "updated_at" datetime)
|
321
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140718103237"]]
|
322
|
-
[1m[35m (0.5ms)[0m commit transaction
|
323
|
-
Migrating to CreateTranslations (20140726151210)
|
324
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
325
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140726151210_create_translations.rb:9)
|
326
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "locale" varchar, "title" varchar, "body" text, "created_at" datetime, "updated_at" datetime)
|
327
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translations_on_post_id" ON "translations" ("post_id")[0m
|
328
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140726151210"]]
|
329
|
-
[1m[36m (0.5ms)[0m [1mcommit transaction[0m
|
330
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
331
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
332
|
-
FROM sqlite_master
|
333
|
-
WHERE name='index_settings_on_thing_type_and_thing_id_and_var' AND type='index'
|
334
|
-
UNION ALL
|
335
|
-
SELECT sql
|
336
|
-
FROM sqlite_temp_master
|
337
|
-
WHERE name='index_settings_on_thing_type_and_thing_id_and_var' AND type='index'
|
338
|
-
[0m
|
339
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
340
|
-
FROM sqlite_master
|
341
|
-
WHERE name='index_translations_on_post_id' AND type='index'
|
342
|
-
UNION ALL
|
343
|
-
SELECT sql
|
344
|
-
FROM sqlite_temp_master
|
345
|
-
WHERE name='index_translations_on_post_id' AND type='index'
|
346
|
-
|
347
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
348
|
-
FROM sqlite_master
|
349
|
-
WHERE name='index_weeler_seo_translations_on_locale' AND type='index'
|
350
|
-
UNION ALL
|
351
|
-
SELECT sql
|
352
|
-
FROM sqlite_temp_master
|
353
|
-
WHERE name='index_weeler_seo_translations_on_locale' AND type='index'
|
354
|
-
[0m
|
355
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
356
|
-
FROM sqlite_master
|
357
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
358
|
-
UNION ALL
|
359
|
-
SELECT sql
|
360
|
-
FROM sqlite_temp_master
|
361
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
362
|
-
|
363
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
364
|
-
FROM sqlite_master
|
365
|
-
WHERE name='index_weeler_seos_on_section' AND type='index'
|
366
|
-
UNION ALL
|
367
|
-
SELECT sql
|
368
|
-
FROM sqlite_temp_master
|
369
|
-
WHERE name='index_weeler_seos_on_section' AND type='index'
|
370
|
-
[0m
|
371
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
372
|
-
FROM sqlite_master
|
373
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
374
|
-
UNION ALL
|
375
|
-
SELECT sql
|
376
|
-
FROM sqlite_temp_master
|
377
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
378
|
-
|
379
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
380
|
-
FROM sqlite_master
|
381
|
-
WHERE name='index_weeler_translations_on_key' AND type='index'
|
382
|
-
UNION ALL
|
383
|
-
SELECT sql
|
384
|
-
FROM sqlite_temp_master
|
385
|
-
WHERE name='index_weeler_translations_on_key' AND type='index'
|
386
|
-
[0m
|
387
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
388
|
-
FROM sqlite_master
|
389
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
390
|
-
UNION ALL
|
391
|
-
SELECT sql
|
392
|
-
FROM sqlite_temp_master
|
393
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
394
|
-
|
395
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
396
|
-
|
397
|
-
You can opt into the new behavior and remove this warning by setting:
|
398
|
-
|
399
|
-
config.active_record.raise_in_transactional_callbacks = true
|
400
|
-
|
401
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
402
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
403
|
-
|
404
|
-
You can opt into the new behavior and remove this warning by setting:
|
405
|
-
|
406
|
-
config.active_record.raise_in_transactional_callbacks = true
|
407
|
-
|
408
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
409
|
-
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
410
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
411
|
-
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
412
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
413
|
-
Migrating to CreateWeelerSeos (20140123083704)
|
414
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
415
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083704_create_weeler_seos.rb:10)
|
416
|
-
[1m[35m (0.4ms)[0m CREATE TABLE "weeler_seos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "keywords" text, "section" varchar, "seoable_id" integer, "seoable_type" varchar, "created_at" datetime, "updated_at" datetime)
|
417
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_seos_on_seoable_type_and_seoable_id" ON "weeler_seos" ("seoable_type", "seoable_id")[0m
|
418
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
419
|
-
FROM sqlite_master
|
420
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
421
|
-
UNION ALL
|
422
|
-
SELECT sql
|
423
|
-
FROM sqlite_temp_master
|
424
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
425
|
-
|
426
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_seos_on_section" ON "weeler_seos" ("section")[0m
|
427
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140123083704"]]
|
428
|
-
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
429
|
-
Migrating to CreateWeelerSettings (20140123083705)
|
430
|
-
[1m[35m (0.0ms)[0m begin transaction
|
431
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083705_create_weeler_settings.rb:8)
|
432
|
-
[1m[36m (0.2ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
433
|
-
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
434
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083705"]]
|
435
|
-
[1m[35m (0.7ms)[0m commit transaction
|
436
|
-
Migrating to CreateWeelerTranslations (20140123083706)
|
437
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
438
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083706_create_weeler_translations.rb:10)
|
439
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "weeler_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)
|
440
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_translations_on_locale" ON "weeler_translations" ("locale")[0m
|
441
|
-
[1m[35m (0.0ms)[0m SELECT sql
|
442
|
-
FROM sqlite_master
|
443
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
444
|
-
UNION ALL
|
445
|
-
SELECT sql
|
446
|
-
FROM sqlite_temp_master
|
447
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
448
|
-
|
449
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_translations_on_key" ON "weeler_translations" ("key")[0m
|
450
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140123083706"]]
|
451
|
-
[1m[36m (0.4ms)[0m [1mcommit transaction[0m
|
452
|
-
Migrating to TranslateWeelerSeos (20140123083707)
|
453
|
-
[1m[35m (0.0ms)[0m begin transaction
|
454
|
-
[1m[36m (0.3ms)[0m [1mCREATE TABLE "weeler_seo_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "weeler_seo_id" integer NOT NULL, "locale" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
455
|
-
[1m[35m (0.1ms)[0m ALTER TABLE "weeler_seo_translations" ADD "title" varchar
|
456
|
-
[1m[36m (0.1ms)[0m [1mALTER TABLE "weeler_seo_translations" ADD "description" text[0m
|
457
|
-
[1m[35m (0.1ms)[0m ALTER TABLE "weeler_seo_translations" ADD "keywords" text
|
458
|
-
[1m[36mWeeler::Seo Load (0.1ms)[0m [1mSELECT "weeler_seos".* FROM "weeler_seos" ORDER BY "weeler_seos"."id" ASC LIMIT 1000[0m
|
459
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_seo_translations_on_weeler_seo_id" ON "weeler_seo_translations" ("weeler_seo_id")
|
460
|
-
[1m[36m (0.0ms)[0m [1m SELECT sql
|
461
|
-
FROM sqlite_master
|
462
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
463
|
-
UNION ALL
|
464
|
-
SELECT sql
|
465
|
-
FROM sqlite_temp_master
|
466
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
467
|
-
[0m
|
468
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_seo_translations_on_locale" ON "weeler_seo_translations" ("locale")
|
469
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083707"]]
|
470
|
-
[1m[35m (0.5ms)[0m commit transaction
|
471
|
-
Migrating to CreatePosts (20140718103237)
|
472
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
473
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140718103237_create_posts.rb:9)
|
474
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "sequence" integer DEFAULT 0, "status" integer DEFAULT 0, "created_at" datetime, "updated_at" datetime)
|
475
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140718103237"]]
|
476
|
-
[1m[35m (0.5ms)[0m commit transaction
|
477
|
-
Migrating to CreateTranslations (20140726151210)
|
478
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
479
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140726151210_create_translations.rb:9)
|
480
|
-
[1m[35m (0.2ms)[0m CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "locale" varchar, "title" varchar, "body" text, "created_at" datetime, "updated_at" datetime)
|
481
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translations_on_post_id" ON "translations" ("post_id")[0m
|
482
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140726151210"]]
|
483
|
-
[1m[36m (0.4ms)[0m [1mcommit transaction[0m
|
484
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
485
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
486
|
-
FROM sqlite_master
|
487
|
-
WHERE name='index_settings_on_thing_type_and_thing_id_and_var' AND type='index'
|
488
|
-
UNION ALL
|
489
|
-
SELECT sql
|
490
|
-
FROM sqlite_temp_master
|
491
|
-
WHERE name='index_settings_on_thing_type_and_thing_id_and_var' AND type='index'
|
492
|
-
[0m
|
493
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
494
|
-
FROM sqlite_master
|
495
|
-
WHERE name='index_translations_on_post_id' AND type='index'
|
496
|
-
UNION ALL
|
497
|
-
SELECT sql
|
498
|
-
FROM sqlite_temp_master
|
499
|
-
WHERE name='index_translations_on_post_id' AND type='index'
|
500
|
-
|
501
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
502
|
-
FROM sqlite_master
|
503
|
-
WHERE name='index_weeler_seo_translations_on_locale' AND type='index'
|
504
|
-
UNION ALL
|
505
|
-
SELECT sql
|
506
|
-
FROM sqlite_temp_master
|
507
|
-
WHERE name='index_weeler_seo_translations_on_locale' AND type='index'
|
508
|
-
[0m
|
509
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
510
|
-
FROM sqlite_master
|
511
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
512
|
-
UNION ALL
|
513
|
-
SELECT sql
|
514
|
-
FROM sqlite_temp_master
|
515
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
516
|
-
|
517
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
518
|
-
FROM sqlite_master
|
519
|
-
WHERE name='index_weeler_seos_on_section' AND type='index'
|
520
|
-
UNION ALL
|
521
|
-
SELECT sql
|
522
|
-
FROM sqlite_temp_master
|
523
|
-
WHERE name='index_weeler_seos_on_section' AND type='index'
|
524
|
-
[0m
|
525
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
526
|
-
FROM sqlite_master
|
527
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
528
|
-
UNION ALL
|
529
|
-
SELECT sql
|
530
|
-
FROM sqlite_temp_master
|
531
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
532
|
-
|
533
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
534
|
-
FROM sqlite_master
|
535
|
-
WHERE name='index_weeler_translations_on_key' AND type='index'
|
536
|
-
UNION ALL
|
537
|
-
SELECT sql
|
538
|
-
FROM sqlite_temp_master
|
539
|
-
WHERE name='index_weeler_translations_on_key' AND type='index'
|
540
|
-
[0m
|
541
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
542
|
-
FROM sqlite_master
|
543
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
544
|
-
UNION ALL
|
545
|
-
SELECT sql
|
546
|
-
FROM sqlite_temp_master
|
547
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
548
|
-
|
549
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
550
|
-
|
551
|
-
You can opt into the new behavior and remove this warning by setting:
|
552
|
-
|
553
|
-
config.active_record.raise_in_transactional_callbacks = true
|
554
|
-
|
555
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
556
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
557
|
-
|
558
|
-
You can opt into the new behavior and remove this warning by setting:
|
559
|
-
|
560
|
-
config.active_record.raise_in_transactional_callbacks = true
|
561
|
-
|
562
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
563
|
-
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
564
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
565
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
566
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
567
|
-
Migrating to CreateWeelerSeos (20140123083704)
|
568
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
569
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083704_create_weeler_seos.rb:10)
|
570
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "weeler_seos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "description" text, "keywords" text, "section" varchar, "seoable_id" integer, "seoable_type" varchar, "created_at" datetime, "updated_at" datetime)
|
571
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_seos_on_seoable_type_and_seoable_id" ON "weeler_seos" ("seoable_type", "seoable_id")[0m
|
572
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
573
|
-
FROM sqlite_master
|
574
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
575
|
-
UNION ALL
|
576
|
-
SELECT sql
|
577
|
-
FROM sqlite_temp_master
|
578
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
579
|
-
|
580
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_seos_on_section" ON "weeler_seos" ("section")[0m
|
581
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140123083704"]]
|
582
|
-
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
583
|
-
Migrating to CreateWeelerSettings (20140123083705)
|
584
|
-
[1m[35m (0.0ms)[0m begin transaction
|
585
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083705_create_weeler_settings.rb:8)
|
586
|
-
[1m[36m (0.3ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
587
|
-
[1m[35m (0.3ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
588
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083705"]]
|
589
|
-
[1m[35m (0.7ms)[0m commit transaction
|
590
|
-
Migrating to CreateWeelerTranslations (20140123083706)
|
591
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
592
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083706_create_weeler_translations.rb:10)
|
593
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "weeler_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)
|
594
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_translations_on_locale" ON "weeler_translations" ("locale")[0m
|
595
|
-
[1m[35m (0.0ms)[0m SELECT sql
|
596
|
-
FROM sqlite_master
|
597
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
598
|
-
UNION ALL
|
599
|
-
SELECT sql
|
600
|
-
FROM sqlite_temp_master
|
601
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
602
|
-
|
603
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_weeler_translations_on_key" ON "weeler_translations" ("key")[0m
|
604
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140123083706"]]
|
605
|
-
[1m[36m (0.6ms)[0m [1mcommit transaction[0m
|
606
|
-
Migrating to TranslateWeelerSeos (20140123083707)
|
607
|
-
[1m[35m (0.0ms)[0m begin transaction
|
608
|
-
[1m[36m (0.2ms)[0m [1mCREATE TABLE "weeler_seo_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "weeler_seo_id" integer NOT NULL, "locale" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
609
|
-
[1m[35m (0.1ms)[0m ALTER TABLE "weeler_seo_translations" ADD "title" varchar
|
610
|
-
[1m[36m (0.1ms)[0m [1mALTER TABLE "weeler_seo_translations" ADD "description" text[0m
|
611
|
-
[1m[35m (0.1ms)[0m ALTER TABLE "weeler_seo_translations" ADD "keywords" text
|
612
|
-
[1m[36mWeeler::Seo Load (0.1ms)[0m [1mSELECT "weeler_seos".* FROM "weeler_seos" ORDER BY "weeler_seos"."id" ASC LIMIT 1000[0m
|
613
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_seo_translations_on_weeler_seo_id" ON "weeler_seo_translations" ("weeler_seo_id")
|
614
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
615
|
-
FROM sqlite_master
|
616
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
617
|
-
UNION ALL
|
618
|
-
SELECT sql
|
619
|
-
FROM sqlite_temp_master
|
620
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
621
|
-
[0m
|
622
|
-
[1m[35m (0.1ms)[0m CREATE INDEX "index_weeler_seo_translations_on_locale" ON "weeler_seo_translations" ("locale")
|
623
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140123083707"]]
|
624
|
-
[1m[35m (0.5ms)[0m commit transaction
|
625
|
-
Migrating to CreatePosts (20140718103237)
|
626
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
627
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140718103237_create_posts.rb:9)
|
628
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "sequence" integer DEFAULT 0, "status" integer DEFAULT 0, "created_at" datetime, "updated_at" datetime)
|
629
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140718103237"]]
|
630
|
-
[1m[35m (0.5ms)[0m commit transaction
|
631
|
-
Migrating to CreateTranslations (20140726151210)
|
632
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
633
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140726151210_create_translations.rb:9)
|
634
|
-
[1m[35m (0.3ms)[0m CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer, "locale" varchar, "title" varchar, "body" text, "created_at" datetime, "updated_at" datetime)
|
635
|
-
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translations_on_post_id" ON "translations" ("post_id")[0m
|
636
|
-
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140726151210"]]
|
637
|
-
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
638
|
-
Migrating to CreateWeelerLocks (20160330161101)
|
639
|
-
[1m[35m (0.0ms)[0m begin transaction
|
640
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20160330161101_create_weeler_locks.rb:5)
|
641
|
-
[1m[36m (0.2ms)[0m [1mCREATE TABLE "weeler_locks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(40), "created_at" datetime, "updated_at" datetime) [0m
|
642
|
-
[1m[35m (0.3ms)[0m CREATE UNIQUE INDEX "index_weeler_locks_on_name" ON "weeler_locks" ("name")
|
643
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160330161101"]]
|
644
|
-
[1m[35m (1.6ms)[0m commit transaction
|
645
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
646
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
647
|
-
FROM sqlite_master
|
648
|
-
WHERE name='index_settings_on_thing_type_and_thing_id_and_var' AND type='index'
|
649
|
-
UNION ALL
|
650
|
-
SELECT sql
|
651
|
-
FROM sqlite_temp_master
|
652
|
-
WHERE name='index_settings_on_thing_type_and_thing_id_and_var' AND type='index'
|
653
|
-
|
654
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
655
|
-
FROM sqlite_master
|
656
|
-
WHERE name='index_translations_on_post_id' AND type='index'
|
657
|
-
UNION ALL
|
658
|
-
SELECT sql
|
659
|
-
FROM sqlite_temp_master
|
660
|
-
WHERE name='index_translations_on_post_id' AND type='index'
|
661
|
-
[0m
|
662
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
663
|
-
FROM sqlite_master
|
664
|
-
WHERE name='index_weeler_locks_on_name' AND type='index'
|
665
|
-
UNION ALL
|
666
|
-
SELECT sql
|
667
|
-
FROM sqlite_temp_master
|
668
|
-
WHERE name='index_weeler_locks_on_name' AND type='index'
|
669
|
-
|
670
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
671
|
-
FROM sqlite_master
|
672
|
-
WHERE name='index_weeler_seo_translations_on_locale' AND type='index'
|
673
|
-
UNION ALL
|
674
|
-
SELECT sql
|
675
|
-
FROM sqlite_temp_master
|
676
|
-
WHERE name='index_weeler_seo_translations_on_locale' AND type='index'
|
677
|
-
[0m
|
678
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
679
|
-
FROM sqlite_master
|
680
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
681
|
-
UNION ALL
|
682
|
-
SELECT sql
|
683
|
-
FROM sqlite_temp_master
|
684
|
-
WHERE name='index_weeler_seo_translations_on_weeler_seo_id' AND type='index'
|
685
|
-
|
686
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
687
|
-
FROM sqlite_master
|
688
|
-
WHERE name='index_weeler_seos_on_section' AND type='index'
|
689
|
-
UNION ALL
|
690
|
-
SELECT sql
|
691
|
-
FROM sqlite_temp_master
|
692
|
-
WHERE name='index_weeler_seos_on_section' AND type='index'
|
693
|
-
[0m
|
694
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
695
|
-
FROM sqlite_master
|
696
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
697
|
-
UNION ALL
|
698
|
-
SELECT sql
|
699
|
-
FROM sqlite_temp_master
|
700
|
-
WHERE name='index_weeler_seos_on_seoable_type_and_seoable_id' AND type='index'
|
701
|
-
|
702
|
-
[1m[36m (0.1ms)[0m [1m SELECT sql
|
703
|
-
FROM sqlite_master
|
704
|
-
WHERE name='index_weeler_translations_on_key' AND type='index'
|
705
|
-
UNION ALL
|
706
|
-
SELECT sql
|
707
|
-
FROM sqlite_temp_master
|
708
|
-
WHERE name='index_weeler_translations_on_key' AND type='index'
|
709
|
-
[0m
|
710
|
-
[1m[35m (0.1ms)[0m SELECT sql
|
711
|
-
FROM sqlite_master
|
712
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
713
|
-
UNION ALL
|
714
|
-
SELECT sql
|
715
|
-
FROM sqlite_temp_master
|
716
|
-
WHERE name='index_weeler_translations_on_locale' AND type='index'
|
717
|
-
|
718
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
719
|
-
|
720
|
-
You can opt into the new behavior and remove this warning by setting:
|
721
|
-
|
722
|
-
config.active_record.raise_in_transactional_callbacks = true
|
723
|
-
|
724
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
725
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
726
|
-
|
727
|
-
You can opt into the new behavior and remove this warning by setting:
|
728
|
-
|
729
|
-
config.active_record.raise_in_transactional_callbacks = true
|
730
|
-
|
731
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
732
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
733
|
-
|
734
|
-
You can opt into the new behavior and remove this warning by setting:
|
735
|
-
|
736
|
-
config.active_record.raise_in_transactional_callbacks = true
|
737
|
-
|
738
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
739
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
740
|
-
|
741
|
-
You can opt into the new behavior and remove this warning by setting:
|
742
|
-
|
743
|
-
config.active_record.raise_in_transactional_callbacks = true
|
744
|
-
|
745
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
746
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
747
|
-
|
748
|
-
You can opt into the new behavior and remove this warning by setting:
|
749
|
-
|
750
|
-
config.active_record.raise_in_transactional_callbacks = true
|
751
|
-
|
752
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
753
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
754
|
-
|
755
|
-
You can opt into the new behavior and remove this warning by setting:
|
756
|
-
|
757
|
-
config.active_record.raise_in_transactional_callbacks = true
|
758
|
-
|
759
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
760
|
-
[1m[36m (14.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
|
761
|
-
[1m[35m (2.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
762
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
763
|
-
Migrating to CreateWeelerSeos (20140123083704)
|
764
|
-
[1m[35m (0.1ms)[0m BEGIN
|
765
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083704_create_weeler_seos.rb:10)
|
766
|
-
[1m[36m (6.4ms)[0m [1mCREATE TABLE "weeler_seos" ("id" serial primary key, "title" character varying, "description" text, "keywords" text, "section" character varying, "seoable_id" integer, "seoable_type" character varying, "created_at" timestamp, "updated_at" timestamp) [0m
|
767
|
-
[1m[35m (1.0ms)[0m CREATE INDEX "index_weeler_seos_on_seoable_type_and_seoable_id" ON "weeler_seos" ("seoable_type", "seoable_id")
|
768
|
-
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_weeler_seos_on_section" ON "weeler_seos" ("section")[0m
|
769
|
-
[1m[35mSQL (0.3ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140123083704"]]
|
770
|
-
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
|
771
|
-
Migrating to CreateWeelerSettings (20140123083705)
|
772
|
-
[1m[35m (0.3ms)[0m BEGIN
|
773
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083705_create_weeler_settings.rb:8)
|
774
|
-
[1m[36m (3.9ms)[0m [1mCREATE TABLE "settings" ("id" serial primary key, "var" character varying NOT NULL, "value" text, "thing_id" integer, "thing_type" character varying(30), "created_at" timestamp, "updated_at" timestamp) [0m
|
775
|
-
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
776
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140123083705"]]
|
777
|
-
[1m[35m (0.4ms)[0m COMMIT
|
778
|
-
Migrating to CreateWeelerTranslations (20140123083706)
|
779
|
-
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
780
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140123083706_create_weeler_translations.rb:10)
|
781
|
-
[1m[35m (8.8ms)[0m CREATE TABLE "weeler_translations" ("id" serial primary key, "locale" character varying, "key" character varying, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)
|
782
|
-
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_weeler_translations_on_locale" ON "weeler_translations" ("locale")[0m
|
783
|
-
[1m[35m (0.7ms)[0m CREATE INDEX "index_weeler_translations_on_key" ON "weeler_translations" ("key")
|
784
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140123083706"]]
|
785
|
-
[1m[35m (0.3ms)[0m COMMIT
|
786
|
-
Migrating to TranslateWeelerSeos (20140123083707)
|
787
|
-
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
788
|
-
[1m[35m (3.5ms)[0m CREATE TABLE "weeler_seo_translations" ("id" serial primary key, "weeler_seo_id" integer NOT NULL, "locale" character varying NOT NULL, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
|
789
|
-
[1m[36m (3.7ms)[0m [1mALTER TABLE "weeler_seo_translations" ADD "title" character varying[0m
|
790
|
-
[1m[35m (0.3ms)[0m ALTER TABLE "weeler_seo_translations" ADD "description" text
|
791
|
-
[1m[36m (0.2ms)[0m [1mALTER TABLE "weeler_seo_translations" ADD "keywords" text[0m
|
792
|
-
[1m[35mWeeler::Seo Load (0.7ms)[0m SELECT "weeler_seos".* FROM "weeler_seos" ORDER BY "weeler_seos"."id" ASC LIMIT 1000
|
793
|
-
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_weeler_seo_translations_on_weeler_seo_id" ON "weeler_seo_translations" ("weeler_seo_id")[0m
|
794
|
-
[1m[35m (1.1ms)[0m CREATE INDEX "index_weeler_seo_translations_on_locale" ON "weeler_seo_translations" ("locale")
|
795
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140123083707"]]
|
796
|
-
[1m[35m (2.3ms)[0m COMMIT
|
797
|
-
Migrating to CreatePosts (20140718103237)
|
798
|
-
[1m[36m (0.3ms)[0m [1mBEGIN[0m
|
799
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140718103237_create_posts.rb:9)
|
800
|
-
[1m[35m (3.3ms)[0m CREATE TABLE "posts" ("id" serial primary key, "title" character varying, "body" text, "sequence" integer DEFAULT 0, "status" integer DEFAULT 0, "created_at" timestamp, "updated_at" timestamp)
|
801
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140718103237"]]
|
802
|
-
[1m[35m (0.3ms)[0m COMMIT
|
803
|
-
Migrating to CreateTranslations (20140726151210)
|
804
|
-
[1m[36m (0.2ms)[0m [1mBEGIN[0m
|
805
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20140726151210_create_translations.rb:9)
|
806
|
-
[1m[35m (3.3ms)[0m CREATE TABLE "translations" ("id" serial primary key, "post_id" integer, "locale" character varying, "title" character varying, "body" text, "created_at" timestamp, "updated_at" timestamp)
|
807
|
-
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_translations_on_post_id" ON "translations" ("post_id")[0m
|
808
|
-
[1m[35mSQL (1.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140726151210"]]
|
809
|
-
[1m[36m (0.3ms)[0m [1mCOMMIT[0m
|
810
|
-
Migrating to CreateWeelerLocks (20160330161101)
|
811
|
-
[1m[35m (0.2ms)[0m BEGIN
|
812
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20160330161101_create_weeler_locks.rb:5)
|
813
|
-
[1m[36m (2.1ms)[0m [1mCREATE TABLE "weeler_locks" ("id" serial primary key, "name" character varying(40), "created_at" timestamp, "updated_at" timestamp) [0m
|
814
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_weeler_locks_on_name" ON "weeler_locks" ("name")
|
815
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160330161101"]]
|
816
|
-
[1m[35m (0.3ms)[0m COMMIT
|
817
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
818
|
-
[1m[35m (3.2ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
819
|
-
FROM pg_constraint c
|
820
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
821
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
822
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
823
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
824
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
825
|
-
WHERE c.contype = 'f'
|
826
|
-
AND t1.relname = 'posts'
|
827
|
-
AND t3.nspname = ANY (current_schemas(false))
|
828
|
-
ORDER BY c.conname
|
829
|
-
|
830
|
-
[1m[36m (2.7ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
831
|
-
FROM pg_constraint c
|
832
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
833
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
834
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
835
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
836
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
837
|
-
WHERE c.contype = 'f'
|
838
|
-
AND t1.relname = 'settings'
|
839
|
-
AND t3.nspname = ANY (current_schemas(false))
|
840
|
-
ORDER BY c.conname
|
841
|
-
[0m
|
842
|
-
[1m[35m (3.2ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
843
|
-
FROM pg_constraint c
|
844
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
845
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
846
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
847
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
848
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
849
|
-
WHERE c.contype = 'f'
|
850
|
-
AND t1.relname = 'translations'
|
851
|
-
AND t3.nspname = ANY (current_schemas(false))
|
852
|
-
ORDER BY c.conname
|
853
|
-
|
854
|
-
[1m[36m (2.8ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
855
|
-
FROM pg_constraint c
|
856
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
857
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
858
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
859
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
860
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
861
|
-
WHERE c.contype = 'f'
|
862
|
-
AND t1.relname = 'weeler_locks'
|
863
|
-
AND t3.nspname = ANY (current_schemas(false))
|
864
|
-
ORDER BY c.conname
|
865
|
-
[0m
|
866
|
-
[1m[35m (2.7ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
867
|
-
FROM pg_constraint c
|
868
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
869
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
870
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
871
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
872
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
873
|
-
WHERE c.contype = 'f'
|
874
|
-
AND t1.relname = 'weeler_seo_translations'
|
875
|
-
AND t3.nspname = ANY (current_schemas(false))
|
876
|
-
ORDER BY c.conname
|
877
|
-
|
878
|
-
[1m[36m (2.8ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
879
|
-
FROM pg_constraint c
|
880
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
881
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
882
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
883
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
884
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
885
|
-
WHERE c.contype = 'f'
|
886
|
-
AND t1.relname = 'weeler_seos'
|
887
|
-
AND t3.nspname = ANY (current_schemas(false))
|
888
|
-
ORDER BY c.conname
|
889
|
-
[0m
|
890
|
-
[1m[35m (3.1ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
891
|
-
FROM pg_constraint c
|
892
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
893
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
894
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
895
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
896
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
897
|
-
WHERE c.contype = 'f'
|
898
|
-
AND t1.relname = 'weeler_translations'
|
899
|
-
AND t3.nspname = ANY (current_schemas(false))
|
900
|
-
ORDER BY c.conname
|
901
|
-
|
902
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
903
|
-
|
904
|
-
You can opt into the new behavior and remove this warning by setting:
|
905
|
-
|
906
|
-
config.active_record.raise_in_transactional_callbacks = true
|
907
|
-
|
908
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
909
|
-
DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
|
910
|
-
|
911
|
-
You can opt into the new behavior and remove this warning by setting:
|
912
|
-
|
913
|
-
config.active_record.raise_in_transactional_callbacks = true
|
914
|
-
|
915
|
-
(called from block in tsort_each at /Users/homer/.rvm/rubies/ruby-2.2.0/lib/ruby/2.2.0/tsort.rb:226)
|
916
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
917
|
-
Migrating to CreateWeelerTranslationStats (20160330192005)
|
918
|
-
[1m[35m (0.2ms)[0m BEGIN
|
919
|
-
DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/homer/Dropbox/Projects/weeler/spec/dummy/db/migrate/20160330192005_create_weeler_translation_stats.rb:7)
|
920
|
-
[1m[36m (16.2ms)[0m [1mCREATE TABLE "weeler_translation_stats" ("id" serial primary key, "key" character varying, "usage_count" integer DEFAULT 0, "created_at" timestamp, "updated_at" timestamp) [0m
|
921
|
-
[1m[35m (1.2ms)[0m CREATE INDEX "index_weeler_translation_stats_on_key" ON "weeler_translation_stats" ("key")
|
922
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20160330192005"]]
|
923
|
-
[1m[35m (0.6ms)[0m COMMIT
|
924
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
925
|
-
[1m[35m (3.3ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
926
|
-
FROM pg_constraint c
|
927
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
928
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
929
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
930
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
931
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
932
|
-
WHERE c.contype = 'f'
|
933
|
-
AND t1.relname = 'posts'
|
934
|
-
AND t3.nspname = ANY (current_schemas(false))
|
935
|
-
ORDER BY c.conname
|
936
|
-
|
937
|
-
[1m[36m (2.9ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
938
|
-
FROM pg_constraint c
|
939
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
940
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
941
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
942
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
943
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
944
|
-
WHERE c.contype = 'f'
|
945
|
-
AND t1.relname = 'settings'
|
946
|
-
AND t3.nspname = ANY (current_schemas(false))
|
947
|
-
ORDER BY c.conname
|
948
|
-
[0m
|
949
|
-
[1m[35m (2.9ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
950
|
-
FROM pg_constraint c
|
951
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
952
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
953
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
954
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
955
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
956
|
-
WHERE c.contype = 'f'
|
957
|
-
AND t1.relname = 'translations'
|
958
|
-
AND t3.nspname = ANY (current_schemas(false))
|
959
|
-
ORDER BY c.conname
|
960
|
-
|
961
|
-
[1m[36m (4.1ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
962
|
-
FROM pg_constraint c
|
963
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
964
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
965
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
966
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
967
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
968
|
-
WHERE c.contype = 'f'
|
969
|
-
AND t1.relname = 'weeler_locks'
|
970
|
-
AND t3.nspname = ANY (current_schemas(false))
|
971
|
-
ORDER BY c.conname
|
972
|
-
[0m
|
973
|
-
[1m[35m (4.0ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
974
|
-
FROM pg_constraint c
|
975
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
976
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
977
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
978
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
979
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
980
|
-
WHERE c.contype = 'f'
|
981
|
-
AND t1.relname = 'weeler_seo_translations'
|
982
|
-
AND t3.nspname = ANY (current_schemas(false))
|
983
|
-
ORDER BY c.conname
|
984
|
-
|
985
|
-
[1m[36m (4.6ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
986
|
-
FROM pg_constraint c
|
987
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
988
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
989
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
990
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
991
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
992
|
-
WHERE c.contype = 'f'
|
993
|
-
AND t1.relname = 'weeler_seos'
|
994
|
-
AND t3.nspname = ANY (current_schemas(false))
|
995
|
-
ORDER BY c.conname
|
996
|
-
[0m
|
997
|
-
[1m[35m (3.2ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
998
|
-
FROM pg_constraint c
|
999
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
1000
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
1001
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
1002
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
1003
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
1004
|
-
WHERE c.contype = 'f'
|
1005
|
-
AND t1.relname = 'weeler_translation_stats'
|
1006
|
-
AND t3.nspname = ANY (current_schemas(false))
|
1007
|
-
ORDER BY c.conname
|
1008
|
-
|
1009
|
-
[1m[36m (3.5ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
|
1010
|
-
FROM pg_constraint c
|
1011
|
-
JOIN pg_class t1 ON c.conrelid = t1.oid
|
1012
|
-
JOIN pg_class t2 ON c.confrelid = t2.oid
|
1013
|
-
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
|
1014
|
-
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
|
1015
|
-
JOIN pg_namespace t3 ON c.connamespace = t3.oid
|
1016
|
-
WHERE c.contype = 'f'
|
1017
|
-
AND t1.relname = 'weeler_translations'
|
1018
|
-
AND t3.nspname = ANY (current_schemas(false))
|
1019
|
-
ORDER BY c.conname
|
1020
|
-
[0m
|