rails_admin_content_builder 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +15 -0
- data/.rspec +4 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +8 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +12 -0
- data/LICENSE.txt +21 -0
- data/README.md +129 -0
- data/Rakefile +21 -0
- data/app/assets/images/cb-image-default.jpg +0 -0
- data/app/assets/images/cb-loading.svg +1 -0
- data/app/assets/images/cb-snippet-image-text.jpg +0 -0
- data/app/assets/images/cb-snippet-image.jpg +0 -0
- data/app/assets/images/cb-snippet-quote-text.jpg +0 -0
- data/app/assets/images/cb-snippet-quote.jpg +0 -0
- data/app/assets/images/cb-snippet-text-image.jpg +0 -0
- data/app/assets/images/cb-snippet-text-quote.jpg +0 -0
- data/app/assets/images/cb-snippet-text.jpg +0 -0
- data/app/assets/images/cb-snippet-video.jpg +0 -0
- data/app/assets/images/cb-video-default.jpg +0 -0
- data/app/assets/javascripts/rails_admin/content_builder.js.erb +295 -0
- data/app/assets/stylesheets/rails_admin/content_builder.scss +238 -0
- data/app/controllers/rails_admin_content_builder/content_builder_controller.rb +19 -0
- data/app/helpers/rails_admin_content_builder/content_builder_helpers.rb +32 -0
- data/app/models/rails_admin_content_builder/content_builder.rb +27 -0
- data/app/models/rails_admin_content_builder/content_builder_category.rb +12 -0
- data/app/models/rails_admin_content_builder/content_builder_image.rb +10 -0
- data/app/views/.gitkeep +0 -0
- data/app/views/rails_admin/main/content_builder.html.erb +42 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/config/initializers/assets.rb +11 -0
- data/config/locales/content_builder.en.yml +17 -0
- data/config/locales/content_builder.pt-BR.yml +17 -0
- data/config/routes.rb +5 -0
- data/lib/generators/rails_admin_content_builder_generator.rb +32 -0
- data/lib/generators/templates/content_builder_image_uploader.rb +54 -0
- data/lib/generators/templates/create_content_builder_category_migration.rb +10 -0
- data/lib/generators/templates/create_content_builder_image_migration.rb +10 -0
- data/lib/generators/templates/create_content_builder_migration.rb +16 -0
- data/lib/generators/templates/rails_admin_content_builder.rb +37 -0
- data/lib/rails_admin_content_builder.rb +55 -0
- data/lib/rails_admin_content_builder/engine.rb +26 -0
- data/lib/rails_admin_content_builder/version.rb +3 -0
- data/rails_admin_content_builder.gemspec +42 -0
- data/screenshot/image1.png +0 -0
- data/spec/controllers/rails_admin_content_builder/content_builder_controller_spec.rb +19 -0
- data/spec/dummy/Gemfile +11 -0
- data/spec/dummy/Gemfile.lock +217 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/uploaders/content_builder_image_uploader.rb +54 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +31 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +41 -0
- data/spec/dummy/config/environments/production.rb +79 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/rails_admin.rb +37 -0
- data/spec/dummy/config/initializers/rails_admin_content_builder.rb +37 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/simple_form.rb +165 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/locales/simple_form.en.yml +31 -0
- data/spec/dummy/config/routes.rb +57 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20160713200802_create_content_builder_categories.rb +10 -0
- data/spec/dummy/db/migrate/20160713200803_create_content_builders.rb +15 -0
- data/spec/dummy/db/migrate/20160713200804_create_content_builder_images.rb +10 -0
- data/spec/dummy/db/schema.rb +46 -0
- data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
- data/spec/dummy/log/development.log +1182 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/1/center_example.jpg +0 -0
- data/spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/1/example.jpg +0 -0
- data/spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/1/left_or_right_example.jpg +0 -0
- data/spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/2/center_example.jpg +0 -0
- data/spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/2/example.jpg +0 -0
- data/spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/2/left_or_right_example.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1461693110-14578-0001-7683/center_example.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1461693110-14578-0001-7683/example.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1461693110-14578-0001-7683/left_or_right_example.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1461693202-14651-0001-6505/center_example.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1461693202-14651-0001-6505/example.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1461693202-14651-0001-6505/left_or_right_example.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1461693245-14728-0001-4392/center_example.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1461693245-14728-0001-4392/example.jpg +0 -0
- data/spec/dummy/public/uploads/tmp/1461693245-14728-0001-4392/left_or_right_example.jpg +0 -0
- data/spec/factories/content_builder_categories.rb +5 -0
- data/spec/factories/content_builder_images.rb +6 -0
- data/spec/factories/content_builders.rb +10 -0
- data/spec/features/create_content_builder_category_spec.rb +18 -0
- data/spec/features/create_content_builder_spec.rb +34 -0
- data/spec/features/status_content_builder_spec.rb +28 -0
- data/spec/fixtures/assets/example.jpg +0 -0
- data/spec/helpers/rails_admin_content_builder/content_builder_helper_spec.rb +33 -0
- data/spec/models/rails_admin_content_builder/content_builder_category_spec.rb +11 -0
- data/spec/models/rails_admin_content_builder/content_builder_image_spec.rb +11 -0
- data/spec/models/rails_admin_content_builder/content_builder_spec.rb +44 -0
- data/spec/spec_helper.rb +36 -0
- data/spec/version_spec.rb +7 -0
- data/vendor/assets/stylesheets/rails_admin_content_builder.scss +214 -0
- metadata +3100 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
# This file is auto-generated from the current state of the database. Instead
|
|
3
|
+
# of editing this file, please use the migrations feature of Active Record to
|
|
4
|
+
# incrementally modify your database, and then regenerate this schema definition.
|
|
5
|
+
#
|
|
6
|
+
# Note that this schema.rb definition is the authoritative source for your
|
|
7
|
+
# database schema. If you need to create the application database on another
|
|
8
|
+
# system, you should be using db:schema:load, not running all the migrations
|
|
9
|
+
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
10
|
+
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
11
|
+
#
|
|
12
|
+
# It's strongly recommended that you check this file into your version control system.
|
|
13
|
+
|
|
14
|
+
ActiveRecord::Schema.define(version: 20160713200804) do
|
|
15
|
+
|
|
16
|
+
create_table "content_builder_categories", force: :cascade do |t|
|
|
17
|
+
t.string "name"
|
|
18
|
+
t.string "slug"
|
|
19
|
+
t.datetime "created_at", null: false
|
|
20
|
+
t.datetime "updated_at", null: false
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
create_table "content_builder_images", force: :cascade do |t|
|
|
24
|
+
t.string "image"
|
|
25
|
+
t.integer "content_builder_id"
|
|
26
|
+
t.datetime "created_at", null: false
|
|
27
|
+
t.datetime "updated_at", null: false
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
add_index "content_builder_images", ["content_builder_id"], name: "index_content_builder_images_on_content_builder_id"
|
|
31
|
+
|
|
32
|
+
create_table "content_builders", force: :cascade do |t|
|
|
33
|
+
t.string "title"
|
|
34
|
+
t.string "written_by"
|
|
35
|
+
t.datetime "date_publish"
|
|
36
|
+
t.text "content"
|
|
37
|
+
t.boolean "status", default: false
|
|
38
|
+
t.string "slug"
|
|
39
|
+
t.integer "content_builder_category_id"
|
|
40
|
+
t.datetime "created_at", null: false
|
|
41
|
+
t.datetime "updated_at", null: false
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
add_index "content_builders", ["content_builder_category_id"], name: "index_content_builders_on_content_builder_category_id"
|
|
45
|
+
|
|
46
|
+
end
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<%%= simple_form_for(@<%= singular_table_name %>) do |f| %>
|
|
2
|
+
<%%= f.error_notification %>
|
|
3
|
+
|
|
4
|
+
<div class="form-inputs">
|
|
5
|
+
<%- attributes.each do |attribute| -%>
|
|
6
|
+
<%%= f.<%= attribute.reference? ? :association : :input %> :<%= attribute.name %> %>
|
|
7
|
+
<%- end -%>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
<div class="form-actions">
|
|
11
|
+
<%%= f.button :submit %>
|
|
12
|
+
</div>
|
|
13
|
+
<%% end %>
|
|
@@ -0,0 +1,1182 @@
|
|
|
1
|
+
[1m[36m (7.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
2
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
3
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
4
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
5
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.0ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
6
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
7
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
8
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
9
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
10
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
12
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
13
|
+
Migrating to CreateContentBuilders (20160426125046)
|
|
14
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
15
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
16
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160426125046"]]
|
|
17
|
+
[1m[36m (3.3ms)[0m [1mcommit transaction[0m
|
|
18
|
+
Migrating to CreateContentBuilderImages (20160426125047)
|
|
19
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
20
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
21
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
22
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
23
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160426125047"]]
|
|
24
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
25
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
26
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
27
|
+
FROM sqlite_master
|
|
28
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
29
|
+
UNION ALL
|
|
30
|
+
SELECT sql
|
|
31
|
+
FROM sqlite_temp_master
|
|
32
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
33
|
+
[0m
|
|
34
|
+
[1m[36m (6.6ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
35
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
36
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
37
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
38
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
39
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
40
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
41
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426125047')
|
|
42
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426125046')[0m
|
|
43
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
44
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
45
|
+
[1m[36m (0.4ms)[0m [1m SELECT sql
|
|
46
|
+
FROM sqlite_master
|
|
47
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
48
|
+
UNION ALL
|
|
49
|
+
SELECT sql
|
|
50
|
+
FROM sqlite_temp_master
|
|
51
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
52
|
+
[0m
|
|
53
|
+
[1m[36m (1.9ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
54
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
55
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
56
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
57
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
58
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
59
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
60
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426125047')
|
|
61
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426125046')[0m
|
|
62
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
63
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
64
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
65
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
66
|
+
Migrating to CreateContentBuilders (20160426125046)
|
|
67
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
68
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
69
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426125046"]]
|
|
70
|
+
[1m[35m (1.7ms)[0m commit transaction
|
|
71
|
+
Migrating to CreateContentBuilderImages (20160426125047)
|
|
72
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
73
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
74
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
75
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160426125047"]]
|
|
76
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
77
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
78
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
79
|
+
FROM sqlite_master
|
|
80
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
81
|
+
UNION ALL
|
|
82
|
+
SELECT sql
|
|
83
|
+
FROM sqlite_temp_master
|
|
84
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
85
|
+
[0m
|
|
86
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
87
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
88
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
89
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
90
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
91
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
92
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
93
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426125047')
|
|
94
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426125046')[0m
|
|
95
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
96
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
|
97
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
98
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
99
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
100
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
101
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
102
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426125047')[0m
|
|
103
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426125046')
|
|
104
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
105
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
106
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
107
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
108
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
109
|
+
Migrating to CreateContentBuilders (20160426125046)
|
|
110
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
111
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
112
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426125046"]]
|
|
113
|
+
[1m[35m (1.0ms)[0m commit transaction
|
|
114
|
+
Migrating to CreateContentBuilderImages (20160426125047)
|
|
115
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
116
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
117
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
118
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160426125047"]]
|
|
119
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
120
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
121
|
+
[1m[36m (0.4ms)[0m [1m SELECT sql
|
|
122
|
+
FROM sqlite_master
|
|
123
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
124
|
+
UNION ALL
|
|
125
|
+
SELECT sql
|
|
126
|
+
FROM sqlite_temp_master
|
|
127
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
128
|
+
[0m
|
|
129
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
130
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
131
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
132
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
133
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
134
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
135
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
136
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426125047')
|
|
137
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426125046')[0m
|
|
138
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
139
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
140
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
141
|
+
FROM sqlite_master
|
|
142
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
143
|
+
UNION ALL
|
|
144
|
+
SELECT sql
|
|
145
|
+
FROM sqlite_temp_master
|
|
146
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
147
|
+
[0m
|
|
148
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
149
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
150
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
151
|
+
FROM sqlite_master
|
|
152
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
153
|
+
UNION ALL
|
|
154
|
+
SELECT sql
|
|
155
|
+
FROM sqlite_temp_master
|
|
156
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
157
|
+
[0m
|
|
158
|
+
[1m[36m (6.2ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
159
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
160
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
161
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
162
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
163
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
164
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
165
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426125047')
|
|
166
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426125046')[0m
|
|
167
|
+
[1m[36m (7.9ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
168
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
169
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
170
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
171
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
172
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
173
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
174
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426125047')
|
|
175
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426125046')[0m
|
|
176
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
177
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
178
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
179
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
180
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
181
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
182
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
183
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426125047')
|
|
184
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426125046')[0m
|
|
185
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
186
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
187
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
188
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
189
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
190
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
191
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
192
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426125047')
|
|
193
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426125046')[0m
|
|
194
|
+
[1m[36m (6.8ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
195
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
196
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
197
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
198
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
199
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
200
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
201
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426125047')
|
|
202
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
203
|
+
Migrating to CreateContentBuilders (20160426205618)
|
|
204
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
205
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
206
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
207
|
+
[1m[36m (7.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
208
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
209
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
210
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
211
|
+
Migrating to CreateContentBuilders (20160426205618)
|
|
212
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
213
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
214
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205618"]]
|
|
215
|
+
[1m[35m (1.0ms)[0m commit transaction
|
|
216
|
+
Migrating to CreateContentBuilderImages (20160426205619)
|
|
217
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
218
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
219
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
220
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160426205619"]]
|
|
221
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
222
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
223
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
224
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
225
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160426205620"]]
|
|
226
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
227
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
228
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
229
|
+
FROM sqlite_master
|
|
230
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
231
|
+
UNION ALL
|
|
232
|
+
SELECT sql
|
|
233
|
+
FROM sqlite_temp_master
|
|
234
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
235
|
+
[0m
|
|
236
|
+
[1m[36m (218.0ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
237
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
238
|
+
[1m[36m (77.4ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
239
|
+
[1m[35m (127.3ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
240
|
+
[1m[36m (187.6ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
241
|
+
[1m[35m (77.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
242
|
+
[1m[36m (99.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
243
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
244
|
+
[1m[36m (79.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426205620')[0m
|
|
245
|
+
[1m[35m (79.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426205619')
|
|
246
|
+
[1m[36m (79.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426205618')[0m
|
|
247
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
248
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
249
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
250
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
251
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
252
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
253
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
254
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
255
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426205620')[0m
|
|
256
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426205619')
|
|
257
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426205618')[0m
|
|
258
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
259
|
+
Migrating to CreateContentBuilders (20160428143712)
|
|
260
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
261
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "news_source" varchar, "summary" text, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
262
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
263
|
+
[1m[36m (4.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
264
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
265
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
266
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
267
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
268
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
269
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
270
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
271
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
272
|
+
Migrating to CreateContentBuilders (20160428143712)
|
|
273
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
274
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "news_source" varchar, "summary" text, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
275
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160428143712"]]
|
|
276
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
277
|
+
Migrating to CreateContentBuilderImages (20160428143713)
|
|
278
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
279
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
280
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
281
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160428143713"]]
|
|
282
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
283
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
284
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
285
|
+
FROM sqlite_master
|
|
286
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
287
|
+
UNION ALL
|
|
288
|
+
SELECT sql
|
|
289
|
+
FROM sqlite_temp_master
|
|
290
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
291
|
+
[0m
|
|
292
|
+
[1m[36m (3.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
293
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
294
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
295
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
296
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
297
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
298
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
299
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
300
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
301
|
+
Migrating to CreateContentBuilders (20160428143712)
|
|
302
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
303
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "news_source" varchar, "summary" text, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
304
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160428143712"]]
|
|
305
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
306
|
+
Migrating to CreateContentBuilderImages (20160428143713)
|
|
307
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
308
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
309
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
310
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160428143713"]]
|
|
311
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
312
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
313
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
314
|
+
FROM sqlite_master
|
|
315
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
316
|
+
UNION ALL
|
|
317
|
+
SELECT sql
|
|
318
|
+
FROM sqlite_temp_master
|
|
319
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
320
|
+
[0m
|
|
321
|
+
[1m[36m (7.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
322
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
323
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
324
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
325
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
326
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
327
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
328
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
329
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
330
|
+
Migrating to CreateContentBuilders (20160428144721)
|
|
331
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
332
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "news_source" varchar, "summary" text, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
333
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160428144721"]]
|
|
334
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
335
|
+
Migrating to CreateContentBuilderImages (20160428144722)
|
|
336
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
337
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
338
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
339
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160428144722"]]
|
|
340
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
341
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
342
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
343
|
+
FROM sqlite_master
|
|
344
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
345
|
+
UNION ALL
|
|
346
|
+
SELECT sql
|
|
347
|
+
FROM sqlite_temp_master
|
|
348
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
349
|
+
[0m
|
|
350
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
351
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
352
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
353
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
354
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
355
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
356
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
357
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
358
|
+
[1m[35m (1.6ms)[0m commit transaction
|
|
359
|
+
Migrating to CreateContentBuilders (20160428144721)
|
|
360
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
361
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "news_source" varchar, "summary" text, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
362
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160428144721"]]
|
|
363
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
364
|
+
Migrating to CreateContentBuilderImages (20160428144722)
|
|
365
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
366
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
367
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
368
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160428144722"]]
|
|
369
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
370
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
371
|
+
[1m[36m (0.2ms)[0m [1m SELECT sql
|
|
372
|
+
FROM sqlite_master
|
|
373
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
374
|
+
UNION ALL
|
|
375
|
+
SELECT sql
|
|
376
|
+
FROM sqlite_temp_master
|
|
377
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
378
|
+
[0m
|
|
379
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
380
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
381
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
382
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
383
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "news_source" varchar, "summary" text, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
384
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
385
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
386
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
387
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160428144722')[0m
|
|
388
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160428144721')
|
|
389
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426205620')[0m
|
|
390
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
391
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
392
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
393
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
394
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
395
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
396
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
397
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
398
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
399
|
+
Migrating to CreateContentBuilders (20160428144721)
|
|
400
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
401
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "news_source" varchar, "summary" text, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
402
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160428144721"]]
|
|
403
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
404
|
+
Migrating to CreateContentBuilderImages (20160428144722)
|
|
405
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
406
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
407
|
+
[1m[36m (0.2ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
408
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160428144722"]]
|
|
409
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
410
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
411
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
412
|
+
FROM sqlite_master
|
|
413
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
414
|
+
UNION ALL
|
|
415
|
+
SELECT sql
|
|
416
|
+
FROM sqlite_temp_master
|
|
417
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
418
|
+
[0m
|
|
419
|
+
[1m[36m (2.2ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
420
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
421
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
422
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
423
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "news_source" varchar, "summary" text, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
424
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
425
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
426
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
427
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160428144722')[0m
|
|
428
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160428144721')
|
|
429
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426205620')[0m
|
|
430
|
+
[1m[36m (4.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
431
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
432
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
433
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
434
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
435
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
436
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
437
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
438
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
439
|
+
Migrating to CreateContentBuilders (20160502123538)
|
|
440
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
441
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
442
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160502123538"]]
|
|
443
|
+
[1m[35m (1.1ms)[0m commit transaction
|
|
444
|
+
Migrating to CreateContentBuilderImages (20160502123539)
|
|
445
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
446
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
447
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
448
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160502123539"]]
|
|
449
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
450
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.4ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
451
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
452
|
+
FROM sqlite_master
|
|
453
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
454
|
+
UNION ALL
|
|
455
|
+
SELECT sql
|
|
456
|
+
FROM sqlite_temp_master
|
|
457
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
458
|
+
[0m
|
|
459
|
+
[1m[36m (7.1ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
460
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
461
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
462
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
463
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
464
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
465
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
466
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
467
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160502123539')[0m
|
|
468
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160502123538')
|
|
469
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426205620')[0m
|
|
470
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
471
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
472
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
473
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
474
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
475
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
476
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
477
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
478
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
479
|
+
Migrating to CreateContentBuilders (20160713142319)
|
|
480
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
481
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
482
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713142319"]]
|
|
483
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
484
|
+
Migrating to CreateContentBuilderImages (20160713142320)
|
|
485
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
486
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
487
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
488
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713142320"]]
|
|
489
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
490
|
+
Migrating to CreateContentBuilderCategories (20160713142321)
|
|
491
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
492
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "content_builders" ADD "content_builder_category_id" integer[0m
|
|
493
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")
|
|
494
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
495
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713142321"]]
|
|
496
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
497
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
498
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
499
|
+
FROM sqlite_master
|
|
500
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
501
|
+
UNION ALL
|
|
502
|
+
SELECT sql
|
|
503
|
+
FROM sqlite_temp_master
|
|
504
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
505
|
+
[0m
|
|
506
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
507
|
+
FROM sqlite_master
|
|
508
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
509
|
+
UNION ALL
|
|
510
|
+
SELECT sql
|
|
511
|
+
FROM sqlite_temp_master
|
|
512
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
Started GET "/" for 127.0.0.1 at 2016-07-13 10:27:10 -0400
|
|
517
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
518
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
519
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (1.0ms)
|
|
520
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
Started GET "/admin" for 127.0.0.1 at 2016-07-13 10:27:13 -0400
|
|
524
|
+
Processing by RailsAdmin::MainController#dashboard as HTML
|
|
525
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builders"
|
|
526
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilder Load (0.1ms)[0m [1mSELECT "content_builders".* FROM "content_builders" ORDER BY content_builders.updated_at desc LIMIT 1[0m
|
|
527
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builder_categories"
|
|
528
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilderCategory Load (0.1ms)[0m [1mSELECT "content_builder_categories".* FROM "content_builder_categories" ORDER BY content_builder_categories.updated_at desc LIMIT 1[0m
|
|
529
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/dashboard.html.haml within layouts/rails_admin/application (6.8ms)
|
|
530
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_secondary_navigation.html.haml (1.9ms)
|
|
531
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_navigation.html.haml (4.3ms)
|
|
532
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_sidebar_navigation.html.haml (1.7ms)
|
|
533
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/pjax.html.haml (2.0ms)
|
|
534
|
+
Completed 200 OK in 3278ms (Views: 3149.5ms | ActiveRecord: 0.6ms)
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
Started GET "/assets/rails_admin/rails_admin.self-ea4795d73dc5c5e31b568ebd2ccf6b0437eaa95534a1a4a49d4acaf02492ef7e.css?body=1" for 127.0.0.1 at 2016-07-13 10:27:17 -0400
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
Started GET "/assets/rails_admin/jquery.remotipart.fixed.self-357a8f834a6b278f578acd51708542bff0852a75d8d583d0d761d3f387af5b4c.js?body=1" for 127.0.0.1 at 2016-07-13 10:27:17 -0400
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
Started GET "/assets/rails_admin/ra.nested-form-hooks.self-abecd3cd4d55ce44cbf00b87d2f612d570af5e7fe5701d05135d60f8c07e7d37.js?body=1" for 127.0.0.1 at 2016-07-13 10:27:17 -0400
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
Started GET "/assets/rails_admin/ra.filter-box.self-7a15aaeea6101fb1e648df5848917eddd01c5c193ffae1e121224ec7e96d8647.js?body=1" for 127.0.0.1 at 2016-07-13 10:27:17 -0400
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
Started GET "/assets/fontawesome-webfont-d3ebb498192527b985939ae62cc4e5eb5c108efc1896184126b45d866868e73d.woff2?v=4.6.1" for 127.0.0.1 at 2016-07-13 10:27:17 -0400
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
Started GET "/admin/rails_admin_content_builder~content_builder?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-13 10:27:20 -0400
|
|
553
|
+
Processing by RailsAdmin::MainController#index as HTML
|
|
554
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder"}
|
|
555
|
+
[1m[35mRailsAdminContentBuilder::ContentBuilder Load (0.2ms)[0m SELECT "content_builders".* FROM "content_builders" ORDER BY content_builders.id desc LIMIT 20 OFFSET 0
|
|
556
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "content_builders"[0m
|
|
557
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/pjax (27.1ms)
|
|
558
|
+
Completed 200 OK in 47ms (Views: 32.5ms | ActiveRecord: 0.8ms)
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
Started GET "/admin/rails_admin_content_builder~content_builder/new?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-13 10:27:22 -0400
|
|
562
|
+
Processing by RailsAdmin::MainController#new as HTML
|
|
563
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder"}
|
|
564
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_field.html.haml (1.9ms)
|
|
565
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_datetime.html.haml (2.0ms)
|
|
566
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_field.html.haml (0.4ms)
|
|
567
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_submit_buttons.html.haml (3.1ms)
|
|
568
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/new.html.haml within layouts/rails_admin/pjax (22.9ms)
|
|
569
|
+
Completed 200 OK in 34ms (Views: 29.9ms | ActiveRecord: 0.0ms)
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
Started POST "/admin/rails_admin_content_builder~content_builder/new" for 127.0.0.1 at 2016-07-13 10:27:29 -0400
|
|
573
|
+
Processing by RailsAdmin::MainController#new as HTML
|
|
574
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"MdUdfo5Ip7lVRe3t2mqkB8kTn39tGf5qvSjCo0nFdloQQHeAojD6Y2SUswvs0RLZbxnl5waSDzhop+fbwO9k8g==", "rails_admin_content_builder_content_builder"=>{"title"=>"teste", "date_publish"=>"July 25, 2016 10:27", "written_by"=>"Luiz Picolo"}, "return_to"=>"http://localhost:3000/admin/rails_admin_content_builder~content_builder", "_save"=>"", "model_name"=>"rails_admin_content_builder~content_builder"}
|
|
575
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
576
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilder Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "content_builders" WHERE ("content_builders"."id" IS NOT NULL) AND "content_builders"."slug" = ? LIMIT 1[0m [["slug", "teste"]]
|
|
577
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "content_builders" ("title", "date_publish", "written_by", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["title", "teste"], ["date_publish", "2016-07-25 10:27:00.000000"], ["written_by", "Luiz Picolo"], ["slug", "teste"], ["created_at", "2016-07-13 14:27:29.079160"], ["updated_at", "2016-07-13 14:27:29.079160"]]
|
|
578
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
|
579
|
+
Redirected to http://localhost:3000/admin/rails_admin_content_builder~content_builder
|
|
580
|
+
Completed 302 Found in 23ms (ActiveRecord: 2.3ms)
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
Started GET "/admin/rails_admin_content_builder~content_builder" for 127.0.0.1 at 2016-07-13 10:27:29 -0400
|
|
584
|
+
Processing by RailsAdmin::MainController#index as HTML
|
|
585
|
+
Parameters: {"model_name"=>"rails_admin_content_builder~content_builder"}
|
|
586
|
+
[1m[35mRailsAdminContentBuilder::ContentBuilder Load (0.2ms)[0m SELECT "content_builders".* FROM "content_builders" ORDER BY content_builders.id desc LIMIT 20 OFFSET 0
|
|
587
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "content_builders"[0m
|
|
588
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/application (15.6ms)
|
|
589
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_secondary_navigation.html.haml (0.9ms)
|
|
590
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_navigation.html.haml (3.3ms)
|
|
591
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_sidebar_navigation.html.haml (1.4ms)
|
|
592
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/pjax.html.haml (3.8ms)
|
|
593
|
+
Completed 200 OK in 189ms (Views: 185.7ms | ActiveRecord: 0.3ms)
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
Started GET "/admin/rails_admin_content_builder~content_builder/1/delete?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-13 10:27:32 -0400
|
|
597
|
+
Processing by RailsAdmin::MainController#delete as HTML
|
|
598
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder", "id"=>"1"}
|
|
599
|
+
[1m[35mRailsAdminContentBuilder::ContentBuilder Load (0.2ms)[0m SELECT "content_builders".* FROM "content_builders" WHERE "content_builders"."id" = ? ORDER BY "content_builders"."id" ASC LIMIT 1 [["id", 1]]
|
|
600
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilderImage Load (0.1ms)[0m [1mSELECT "content_builder_images".* FROM "content_builder_images" WHERE "content_builder_images"."content_builder_id" = ?[0m [["content_builder_id", 1]]
|
|
601
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_delete_notice.html.haml (18.8ms)
|
|
602
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/delete.html.haml within layouts/rails_admin/pjax (27.5ms)
|
|
603
|
+
Completed 200 OK in 41ms (Views: 35.2ms | ActiveRecord: 0.4ms)
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
Started DELETE "/admin/rails_admin_content_builder~content_builder/1/delete" for 127.0.0.1 at 2016-07-13 10:27:34 -0400
|
|
607
|
+
Processing by RailsAdmin::MainController#delete as HTML
|
|
608
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"ifdLBBbptSHs2DfSv2JpGdrSmyzTSsCX19mXhj0qEhmoYiH6OpHo+90JaTSJ2d/HfNjhtLjBMcUCVrL+tAAAsQ==", "return_to"=>"http://localhost:3000/admin/rails_admin_content_builder~content_builder", "model_name"=>"rails_admin_content_builder~content_builder", "id"=>"1"}
|
|
609
|
+
[1m[35mRailsAdminContentBuilder::ContentBuilder Load (0.1ms)[0m SELECT "content_builders".* FROM "content_builders" WHERE "content_builders"."id" = ? ORDER BY "content_builders"."id" ASC LIMIT 1 [["id", 1]]
|
|
610
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
611
|
+
[1m[35mRailsAdminContentBuilder::ContentBuilderImage Load (0.0ms)[0m SELECT "content_builder_images".* FROM "content_builder_images" WHERE "content_builder_images"."content_builder_id" = ? [["content_builder_id", 1]]
|
|
612
|
+
[1m[36mSQL (0.1ms)[0m [1mDELETE FROM "content_builders" WHERE "content_builders"."id" = ?[0m [["id", 1]]
|
|
613
|
+
[1m[35m (1.8ms)[0m commit transaction
|
|
614
|
+
Redirected to http://localhost:3000/admin/rails_admin_content_builder~content_builder
|
|
615
|
+
Completed 302 Found in 7ms (ActiveRecord: 2.0ms)
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
Started GET "/admin/rails_admin_content_builder~content_builder" for 127.0.0.1 at 2016-07-13 10:27:34 -0400
|
|
619
|
+
Processing by RailsAdmin::MainController#index as HTML
|
|
620
|
+
Parameters: {"model_name"=>"rails_admin_content_builder~content_builder"}
|
|
621
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilder Load (0.1ms)[0m [1mSELECT "content_builders".* FROM "content_builders" ORDER BY content_builders.id desc LIMIT 20 OFFSET 0[0m
|
|
622
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builders"
|
|
623
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/application (6.7ms)
|
|
624
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_secondary_navigation.html.haml (0.6ms)
|
|
625
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_navigation.html.haml (1.6ms)
|
|
626
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_sidebar_navigation.html.haml (1.0ms)
|
|
627
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/pjax.html.haml (2.6ms)
|
|
628
|
+
Completed 200 OK in 119ms (Views: 116.0ms | ActiveRecord: 0.2ms)
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
Started GET "/admin/rails_admin_content_builder~content_builder" for 127.0.0.1 at 2016-07-13 10:30:46 -0400
|
|
632
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
633
|
+
|
|
634
|
+
ActiveRecord::PendingMigrationError (
|
|
635
|
+
|
|
636
|
+
Migrations are pending. To resolve this issue, run:
|
|
637
|
+
|
|
638
|
+
bin/rake db:migrate RAILS_ENV=development
|
|
639
|
+
|
|
640
|
+
):
|
|
641
|
+
activerecord (4.2.6) lib/active_record/migration.rb:392:in `check_pending!'
|
|
642
|
+
activerecord (4.2.6) lib/active_record/migration.rb:373:in `call'
|
|
643
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
644
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
|
645
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
|
646
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
647
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
648
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
649
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
|
650
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
651
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
652
|
+
railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app'
|
|
653
|
+
railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call'
|
|
654
|
+
activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
655
|
+
activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
656
|
+
activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
657
|
+
railties (4.2.6) lib/rails/rack/logger.rb:20:in `call'
|
|
658
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
659
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
|
660
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
|
661
|
+
activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
662
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
|
663
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call'
|
|
664
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
|
665
|
+
railties (4.2.6) lib/rails/engine.rb:518:in `call'
|
|
666
|
+
railties (4.2.6) lib/rails/application.rb:165:in `call'
|
|
667
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
|
668
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
|
669
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
|
670
|
+
/home/w3case/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
671
|
+
/home/w3case/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
672
|
+
/home/w3case/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.4ms)
|
|
676
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
|
|
677
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
|
678
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.0ms)
|
|
679
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
680
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
681
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
682
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
683
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
684
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "content_builder_category_id" integer)
|
|
685
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
686
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
687
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
688
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
689
|
+
[1m[36m (0.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713142321')[0m
|
|
690
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426205620')
|
|
691
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
692
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
693
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
|
694
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
695
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
696
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "content_builder_category_id" integer)
|
|
697
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
698
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
699
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
700
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
701
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713142321')[0m
|
|
702
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426205620')
|
|
703
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
704
|
+
[1m[36m (7.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
705
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
706
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
707
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
708
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
709
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
710
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
711
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
712
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
713
|
+
Migrating to CreateContentBuilders (20160713142956)
|
|
714
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
715
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
716
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713142956"]]
|
|
717
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
718
|
+
Migrating to CreateContentBuilderImages (20160713142957)
|
|
719
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
720
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
721
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
722
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713142957"]]
|
|
723
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
724
|
+
Migrating to CreateContentBuilderCategories (20160713142958)
|
|
725
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
726
|
+
[1m[36m (0.2ms)[0m [1mALTER TABLE "content_builders" ADD "content_builder_category_id" integer[0m
|
|
727
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")
|
|
728
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
729
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713142958"]]
|
|
730
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
731
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
732
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
733
|
+
FROM sqlite_master
|
|
734
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
735
|
+
UNION ALL
|
|
736
|
+
SELECT sql
|
|
737
|
+
FROM sqlite_temp_master
|
|
738
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
739
|
+
[0m
|
|
740
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
741
|
+
FROM sqlite_master
|
|
742
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
743
|
+
UNION ALL
|
|
744
|
+
SELECT sql
|
|
745
|
+
FROM sqlite_temp_master
|
|
746
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
Started GET "/" for 127.0.0.1 at 2016-07-13 10:31:32 -0400
|
|
751
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
752
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
753
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/railties-4.2.6/lib/rails/templates/rails/welcome/index.html.erb (1.0ms)
|
|
754
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
Started GET "/admin" for 127.0.0.1 at 2016-07-13 10:31:36 -0400
|
|
758
|
+
Processing by RailsAdmin::MainController#dashboard as HTML
|
|
759
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builders"
|
|
760
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilder Load (0.2ms)[0m [1mSELECT "content_builders".* FROM "content_builders" ORDER BY content_builders.updated_at desc LIMIT 1[0m
|
|
761
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builder_categories"
|
|
762
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilderCategory Load (0.1ms)[0m [1mSELECT "content_builder_categories".* FROM "content_builder_categories" ORDER BY content_builder_categories.updated_at desc LIMIT 1[0m
|
|
763
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/dashboard.html.haml within layouts/rails_admin/application (7.2ms)
|
|
764
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_secondary_navigation.html.haml (2.0ms)
|
|
765
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_navigation.html.haml (4.4ms)
|
|
766
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_sidebar_navigation.html.haml (1.8ms)
|
|
767
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/pjax.html.haml (2.4ms)
|
|
768
|
+
Completed 200 OK in 571ms (Views: 418.6ms | ActiveRecord: 0.7ms)
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
Started GET "/admin/rails_admin_content_builder~content_builder_category?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-13 10:31:40 -0400
|
|
772
|
+
Processing by RailsAdmin::MainController#index as HTML
|
|
773
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder_category"}
|
|
774
|
+
[1m[35mRailsAdminContentBuilder::ContentBuilderCategory Load (0.2ms)[0m SELECT "content_builder_categories".* FROM "content_builder_categories" ORDER BY content_builder_categories.id desc LIMIT 20 OFFSET 0
|
|
775
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "content_builder_categories"[0m
|
|
776
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/pjax (21.8ms)
|
|
777
|
+
Completed 200 OK in 37ms (Views: 29.4ms | ActiveRecord: 0.5ms)
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
Started GET "/admin/rails_admin_content_builder~content_builder_category/new?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-13 10:31:41 -0400
|
|
781
|
+
Processing by RailsAdmin::MainController#new as HTML
|
|
782
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder_category"}
|
|
783
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_field.html.haml (1.7ms)
|
|
784
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_submit_buttons.html.haml (2.7ms)
|
|
785
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/new.html.haml within layouts/rails_admin/pjax (15.1ms)
|
|
786
|
+
Completed 200 OK in 29ms (Views: 23.9ms | ActiveRecord: 0.0ms)
|
|
787
|
+
|
|
788
|
+
|
|
789
|
+
Started POST "/admin/rails_admin_content_builder~content_builder_category/new" for 127.0.0.1 at 2016-07-13 10:31:44 -0400
|
|
790
|
+
Processing by RailsAdmin::MainController#new as HTML
|
|
791
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"L5K2VyAh9X1FDKUO/haXgdUNDLyEdY+eeh0Q3U2E8l4OB9ypDFmop3Td++jIrSFfcwd2JO/+fsyvkjWlxK7g9g==", "rails_admin_content_builder_content_builder_category"=>{"title"=>"test"}, "return_to"=>"http://localhost:3000/admin/rails_admin_content_builder~content_builder_category", "_save"=>"", "model_name"=>"rails_admin_content_builder~content_builder_category"}
|
|
792
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
793
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilderCategory Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "content_builder_categories" WHERE ("content_builder_categories"."id" IS NOT NULL) AND "content_builder_categories"."slug" = ? LIMIT 1[0m [["slug", "test"]]
|
|
794
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "content_builder_categories" ("title", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "test"], ["slug", "test"], ["created_at", "2016-07-13 14:31:44.460333"], ["updated_at", "2016-07-13 14:31:44.460333"]]
|
|
795
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
796
|
+
Redirected to http://localhost:3000/admin/rails_admin_content_builder~content_builder_category
|
|
797
|
+
Completed 302 Found in 19ms (ActiveRecord: 1.2ms)
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
Started GET "/admin/rails_admin_content_builder~content_builder_category" for 127.0.0.1 at 2016-07-13 10:31:44 -0400
|
|
801
|
+
Processing by RailsAdmin::MainController#index as HTML
|
|
802
|
+
Parameters: {"model_name"=>"rails_admin_content_builder~content_builder_category"}
|
|
803
|
+
[1m[35mRailsAdminContentBuilder::ContentBuilderCategory Load (0.1ms)[0m SELECT "content_builder_categories".* FROM "content_builder_categories" ORDER BY content_builder_categories.id desc LIMIT 20 OFFSET 0
|
|
804
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "content_builder_categories"[0m
|
|
805
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/application (7.9ms)
|
|
806
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_secondary_navigation.html.haml (0.5ms)
|
|
807
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_navigation.html.haml (1.5ms)
|
|
808
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_sidebar_navigation.html.haml (1.2ms)
|
|
809
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/pjax.html.haml (2.6ms)
|
|
810
|
+
Completed 200 OK in 101ms (Views: 97.1ms | ActiveRecord: 0.2ms)
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
Started GET "/admin/rails_admin_content_builder~content_builder?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-13 10:31:46 -0400
|
|
814
|
+
Processing by RailsAdmin::MainController#index as HTML
|
|
815
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder"}
|
|
816
|
+
[1m[35mRailsAdminContentBuilder::ContentBuilder Load (0.1ms)[0m SELECT "content_builders".* FROM "content_builders" ORDER BY content_builders.id desc LIMIT 20 OFFSET 0
|
|
817
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "content_builders"[0m
|
|
818
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/pjax (10.3ms)
|
|
819
|
+
Completed 200 OK in 28ms (Views: 15.5ms | ActiveRecord: 0.4ms)
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
Started GET "/admin/rails_admin_content_builder~content_builder/new?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-13 10:31:47 -0400
|
|
823
|
+
Processing by RailsAdmin::MainController#new as HTML
|
|
824
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder"}
|
|
825
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_field.html.haml (0.4ms)
|
|
826
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_datetime.html.haml (2.1ms)
|
|
827
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_field.html.haml (0.3ms)
|
|
828
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builder_categories"
|
|
829
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilderCategory Load (0.1ms)[0m [1mSELECT "content_builder_categories".* FROM "content_builder_categories" ORDER BY content_builder_categories.id desc[0m
|
|
830
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_filtering_select.html.haml (8.6ms)
|
|
831
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/_submit_buttons.html.haml (0.9ms)
|
|
832
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.2.1@rails_admin_content_builder/gems/rails_admin-0.8.1/app/views/rails_admin/main/new.html.haml within layouts/rails_admin/pjax (27.8ms)
|
|
833
|
+
Completed 200 OK in 36ms (Views: 32.2ms | ActiveRecord: 0.2ms)
|
|
834
|
+
[1m[36m (4.0ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
835
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
836
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
837
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
838
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
839
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "content_builder_category_id" integer)
|
|
840
|
+
[1m[36m (0.9ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
841
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
842
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
843
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
844
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713142958')[0m
|
|
845
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426205620')
|
|
846
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713142957')[0m
|
|
847
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713142956')
|
|
848
|
+
[1m[36m (4.2ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
849
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
850
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
851
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
852
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
853
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "content_builder_category_id" integer)
|
|
854
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
855
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
856
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
857
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
858
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713142958')[0m
|
|
859
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426205620')
|
|
860
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713142957')[0m
|
|
861
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713142956')
|
|
862
|
+
[1m[36m (7.5ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
863
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
864
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
865
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
866
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
867
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "content_builder_category_id" integer)
|
|
868
|
+
[1m[36m (0.8ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
869
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
870
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
871
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
872
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713142958')[0m
|
|
873
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426205620')
|
|
874
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713142957')[0m
|
|
875
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713142956')
|
|
876
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
877
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
878
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
879
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
880
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
881
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
882
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
883
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
884
|
+
[1m[35m (1.0ms)[0m commit transaction
|
|
885
|
+
Migrating to CreateContentBuilders (20160713185406)
|
|
886
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
887
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
888
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713185406"]]
|
|
889
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
890
|
+
Migrating to CreateContentBuilderImages (20160713185407)
|
|
891
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
892
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
893
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
894
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713185407"]]
|
|
895
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
896
|
+
Migrating to CreateContentBuilderCategories (20160713185408)
|
|
897
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
898
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
899
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_content_builder_categories_on_content_builder_id" ON "content_builder_categories" ("content_builder_id")
|
|
900
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713185408"]]
|
|
901
|
+
[1m[35m (1.0ms)[0m commit transaction
|
|
902
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
903
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
904
|
+
FROM sqlite_master
|
|
905
|
+
WHERE name='index_content_builder_categories_on_content_builder_id' AND type='index'
|
|
906
|
+
UNION ALL
|
|
907
|
+
SELECT sql
|
|
908
|
+
FROM sqlite_temp_master
|
|
909
|
+
WHERE name='index_content_builder_categories_on_content_builder_id' AND type='index'
|
|
910
|
+
|
|
911
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
912
|
+
FROM sqlite_master
|
|
913
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
914
|
+
UNION ALL
|
|
915
|
+
SELECT sql
|
|
916
|
+
FROM sqlite_temp_master
|
|
917
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
918
|
+
[0m
|
|
919
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
920
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
921
|
+
[1m[36m (1.0ms)[0m [1mCREATE INDEX "index_content_builder_categories_on_content_builder_id" ON "content_builder_categories" ("content_builder_id")[0m
|
|
922
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
923
|
+
[1m[36m (0.6ms)[0m [1mCREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")[0m
|
|
924
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
925
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
926
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
927
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
928
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
929
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713185408')[0m
|
|
930
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160426205620')
|
|
931
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713185407')[0m
|
|
932
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713185406')
|
|
933
|
+
[1m[36m (8.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
934
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
935
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
936
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
937
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
938
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
939
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
940
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
941
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
942
|
+
Migrating to CreateContentBuilders (20160713185613)
|
|
943
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
944
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
945
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
946
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713185613"]]
|
|
947
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
948
|
+
Migrating to CreateContentBuilderImages (20160713185614)
|
|
949
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
950
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
951
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
952
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713185614"]]
|
|
953
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
954
|
+
Migrating to CreateContentBuilderCategories (20160713185615)
|
|
955
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
956
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
957
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713185615"]]
|
|
958
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
959
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
960
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
961
|
+
FROM sqlite_master
|
|
962
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
963
|
+
UNION ALL
|
|
964
|
+
SELECT sql
|
|
965
|
+
FROM sqlite_temp_master
|
|
966
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
967
|
+
|
|
968
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
969
|
+
FROM sqlite_master
|
|
970
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
971
|
+
UNION ALL
|
|
972
|
+
SELECT sql
|
|
973
|
+
FROM sqlite_temp_master
|
|
974
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
975
|
+
[0m
|
|
976
|
+
[1m[36m (4.2ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
977
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
978
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
979
|
+
[1m[35m (1.0ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
980
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
981
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
982
|
+
[1m[36m (0.7ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
983
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
984
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
985
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
986
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713185615')[0m
|
|
987
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713185614')
|
|
988
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160426205620')[0m
|
|
989
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713185613')
|
|
990
|
+
[1m[36m (8.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
991
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
992
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
993
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
994
|
+
Migrating to CreateContentBuilderRelateds (20160426205620)
|
|
995
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
996
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_relateds" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content_builder_id" integer, "content_builder_related_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
997
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160426205620"]]
|
|
998
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
999
|
+
Migrating to CreateContentBuilderCategories (20160713185839)
|
|
1000
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1001
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1002
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713185839"]]
|
|
1003
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
1004
|
+
Migrating to CreateContentBuilders (20160713185840)
|
|
1005
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1006
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1007
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
1008
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713185840"]]
|
|
1009
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
|
1010
|
+
Migrating to CreateContentBuilderImages (20160713185841)
|
|
1011
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
1012
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1013
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
1014
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713185841"]]
|
|
1015
|
+
[1m[35m (1.1ms)[0m commit transaction
|
|
1016
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1017
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
1018
|
+
FROM sqlite_master
|
|
1019
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
1020
|
+
UNION ALL
|
|
1021
|
+
SELECT sql
|
|
1022
|
+
FROM sqlite_temp_master
|
|
1023
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
1024
|
+
|
|
1025
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
1026
|
+
FROM sqlite_master
|
|
1027
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
1028
|
+
UNION ALL
|
|
1029
|
+
SELECT sql
|
|
1030
|
+
FROM sqlite_temp_master
|
|
1031
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
1032
|
+
[0m
|
|
1033
|
+
[1m[36m (3.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
1034
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
1035
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
1036
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
1037
|
+
Migrating to CreateContentBuilderCategories (20160713185839)
|
|
1038
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1039
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1040
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713185839"]]
|
|
1041
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
1042
|
+
Migrating to CreateContentBuilders (20160713185840)
|
|
1043
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1044
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1045
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
1046
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713185840"]]
|
|
1047
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
1048
|
+
Migrating to CreateContentBuilderImages (20160713185841)
|
|
1049
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1050
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1051
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
1052
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713185841"]]
|
|
1053
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
1054
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1055
|
+
[1m[35m (0.2ms)[0m SELECT sql
|
|
1056
|
+
FROM sqlite_master
|
|
1057
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
1058
|
+
UNION ALL
|
|
1059
|
+
SELECT sql
|
|
1060
|
+
FROM sqlite_temp_master
|
|
1061
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
1062
|
+
|
|
1063
|
+
[1m[36m (0.2ms)[0m [1m SELECT sql
|
|
1064
|
+
FROM sqlite_master
|
|
1065
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
1066
|
+
UNION ALL
|
|
1067
|
+
SELECT sql
|
|
1068
|
+
FROM sqlite_temp_master
|
|
1069
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
1070
|
+
[0m
|
|
1071
|
+
[1m[36m (7.4ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1072
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1073
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
|
1074
|
+
[1m[35m (1.4ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
1075
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1076
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")
|
|
1077
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
1078
|
+
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
1079
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
1080
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713185841')
|
|
1081
|
+
[1m[36m (1.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713185840')[0m
|
|
1082
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713185839')
|
|
1083
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
1084
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
1085
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
1086
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
1087
|
+
Migrating to CreateContentBuilderCategories (20160713200214)
|
|
1088
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1089
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1090
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713200214"]]
|
|
1091
|
+
[1m[35m (0.8ms)[0m commit transaction
|
|
1092
|
+
Migrating to CreateContentBuilders (20160713200215)
|
|
1093
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1094
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1095
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
1096
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713200215"]]
|
|
1097
|
+
[1m[36m (1.0ms)[0m [1mcommit transaction[0m
|
|
1098
|
+
Migrating to CreateContentBuilderImages (20160713200216)
|
|
1099
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1100
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1101
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
1102
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713200216"]]
|
|
1103
|
+
[1m[35m (1.0ms)[0m commit transaction
|
|
1104
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1105
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
1106
|
+
FROM sqlite_master
|
|
1107
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
1108
|
+
UNION ALL
|
|
1109
|
+
SELECT sql
|
|
1110
|
+
FROM sqlite_temp_master
|
|
1111
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
1112
|
+
|
|
1113
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
1114
|
+
FROM sqlite_master
|
|
1115
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
1116
|
+
UNION ALL
|
|
1117
|
+
SELECT sql
|
|
1118
|
+
FROM sqlite_temp_master
|
|
1119
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
1120
|
+
[0m
|
|
1121
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1122
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1123
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
1124
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
1125
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1126
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")
|
|
1127
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
1128
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
1129
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
1130
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713200216')
|
|
1131
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713200215')[0m
|
|
1132
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713200214')
|
|
1133
|
+
[1m[36m (6.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
1134
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
1135
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
1136
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
1137
|
+
Migrating to CreateContentBuilderCategories (20160713200802)
|
|
1138
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1139
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1140
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713200802"]]
|
|
1141
|
+
[1m[35m (0.7ms)[0m commit transaction
|
|
1142
|
+
Migrating to CreateContentBuilders (20160713200803)
|
|
1143
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1144
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1145
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
|
1146
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713200803"]]
|
|
1147
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
|
1148
|
+
Migrating to CreateContentBuilderImages (20160713200804)
|
|
1149
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1150
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1151
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
1152
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160713200804"]]
|
|
1153
|
+
[1m[35m (0.9ms)[0m commit transaction
|
|
1154
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1155
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
1156
|
+
FROM sqlite_master
|
|
1157
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
1158
|
+
UNION ALL
|
|
1159
|
+
SELECT sql
|
|
1160
|
+
FROM sqlite_temp_master
|
|
1161
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
|
1162
|
+
|
|
1163
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
1164
|
+
FROM sqlite_master
|
|
1165
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
1166
|
+
UNION ALL
|
|
1167
|
+
SELECT sql
|
|
1168
|
+
FROM sqlite_temp_master
|
|
1169
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
|
1170
|
+
[0m
|
|
1171
|
+
[1m[36m (8.6ms)[0m [1mCREATE TABLE "content_builder_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1172
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "content_builder_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_builder_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
1173
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
|
1174
|
+
[1m[35m (0.9ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
|
1175
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "content_builders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "written_by" varchar, "date_publish" datetime, "content" text, "status" boolean DEFAULT 'f', "slug" varchar, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1176
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")
|
|
1177
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
|
1178
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
1179
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
1180
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713200804')
|
|
1181
|
+
[1m[36m (0.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160713200803')[0m
|
|
1182
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160713200802')
|