rails_admin_featured_content 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 +2 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +13 -0
- data/LICENSE.txt +21 -0
- data/README.md +81 -0
- data/Rakefile +21 -0
- data/app/assets/images/fc-image-default.jpg +0 -0
- data/app/assets/images/fc-loading.svg +1 -0
- data/app/assets/images/fc-snippet-highlight.jpg +0 -0
- data/app/assets/images/fc-snippet-slide.jpg +0 -0
- data/app/assets/images/fc-snippet-text.jpg +0 -0
- data/app/assets/images/fc-snippet-three.jpg +0 -0
- data/app/assets/images/fc-snippet-two.jpg +0 -0
- data/app/assets/javascripts/rails_admin/featured_content.js.erb +399 -0
- data/app/assets/stylesheets/rails_admin/featured_content.scss +599 -0
- data/app/controllers/rails_admin_featured_content/featured_content_controller.rb +28 -0
- data/app/models/.keep +0 -0
- data/app/models/rails_admin_featured_content/featured_content.rb +16 -0
- data/app/models/rails_admin_featured_content/featured_content_image.rb +9 -0
- data/app/views/.gitkeep +0 -0
- data/app/views/rails_admin/main/featured_content.html.erb +42 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/config/initializers/assets.rb +7 -0
- data/config/locales/featured_content.en.yml +17 -0
- data/config/locales/featured_content.pt-BR.yml +17 -0
- data/config/routes.rb +9 -0
- data/lib/generators/rails_admin_featured_content_generator.rb +31 -0
- data/lib/generators/templates/create_featured_content_images_migration.rb +10 -0
- data/lib/generators/templates/create_featured_content_migration.rb +11 -0
- data/lib/generators/templates/featured_content_image_uploader.rb +50 -0
- data/lib/generators/templates/rails_admin_featured_content.rb +22 -0
- data/lib/rails_admin_featured_content.rb +55 -0
- data/lib/rails_admin_featured_content/engine.rb +23 -0
- data/lib/rails_admin_featured_content/version.rb +3 -0
- data/rails_admin_featured_content.gemspec +45 -0
- data/spec/controllers/rails_admin_featured_content/featured_content_controller_spec.rb +42 -0
- data/spec/dummy/Gemfile +11 -0
- data/spec/dummy/Gemfile.lock +235 -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/uploaders/featured_content_image_uploader.rb +50 -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/rails_admin_featured_content.rb +22 -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/20160729105801_create_content_builder_categories.rb +10 -0
- data/spec/dummy/db/migrate/20160729105802_create_content_builders.rb +16 -0
- data/spec/dummy/db/migrate/20160729105803_create_content_builder_images.rb +10 -0
- data/spec/dummy/db/migrate/20160729105947_create_featured_contents.rb +11 -0
- data/spec/dummy/db/migrate/20160729105948_create_featured_content_images.rb +10 -0
- data/spec/dummy/db/schema.rb +64 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
- data/spec/dummy/log/development.log +1698 -0
- data/spec/dummy/log/test.log +36 -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/rails_admin_featured_content/featured_content_image/image/1/example.jpg +0 -0
- data/spec/dummy/public/uploads/rails_admin_featured_content/featured_content_image/image/1/thumb_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/featured_content.rb +7 -0
- data/spec/factories/featured_content_image.rb +7 -0
- data/spec/fixtures/assets/example.jpg +0 -0
- data/spec/spec_helper.rb +20 -0
- data/spec/version_spec.rb +7 -0
- data/vendor/assets/stylesheets/rails_admin_featured_content.scss +557 -0
- metadata +575 -0
File without changes
|
@@ -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,1698 @@
|
|
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')
|
1183
|
+
[1m[36m (2.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1184
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1185
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1186
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1187
|
+
Migrating to CreateContentBuilderCategories (20160729105801)
|
1188
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1189
|
+
[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)
|
1190
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160729105801"]]
|
1191
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1192
|
+
Migrating to CreateContentBuilders (20160729105802)
|
1193
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1194
|
+
[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, "summary" text, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
1195
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
1196
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160729105802"]]
|
1197
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1198
|
+
Migrating to CreateContentBuilderImages (20160729105803)
|
1199
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1200
|
+
[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
|
1201
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
1202
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160729105803"]]
|
1203
|
+
[1m[35m (0.7ms)[0m commit transaction
|
1204
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1205
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
1206
|
+
FROM sqlite_master
|
1207
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
1208
|
+
UNION ALL
|
1209
|
+
SELECT sql
|
1210
|
+
FROM sqlite_temp_master
|
1211
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
1212
|
+
|
1213
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
1214
|
+
FROM sqlite_master
|
1215
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
1216
|
+
UNION ALL
|
1217
|
+
SELECT sql
|
1218
|
+
FROM sqlite_temp_master
|
1219
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
1220
|
+
[0m
|
1221
|
+
|
1222
|
+
|
1223
|
+
Started GET "/admin" for 127.0.0.1 at 2016-07-29 06:58:43 -0400
|
1224
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1225
|
+
Processing by RailsAdmin::MainController#dashboard as HTML
|
1226
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builders"
|
1227
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilder Load (0.1ms)[0m [1mSELECT "content_builders".* FROM "content_builders" ORDER BY content_builders.updated_at desc LIMIT 1[0m
|
1228
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builder_categories"
|
1229
|
+
[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
|
1230
|
+
Completed 500 Internal Server Error in 116ms (ActiveRecord: 0.6ms)
|
1231
|
+
|
1232
|
+
ActiveRecord::StatementInvalid (Could not find table 'featured_contents'):
|
1233
|
+
activerecord (4.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:513:in `table_structure'
|
1234
|
+
activerecord (4.2.6) lib/active_record/connection_adapters/sqlite3_adapter.rb:387:in `columns'
|
1235
|
+
activerecord (4.2.6) lib/active_record/connection_adapters/schema_cache.rb:43:in `columns'
|
1236
|
+
activerecord (4.2.6) lib/active_record/attributes.rb:93:in `columns'
|
1237
|
+
activerecord (4.2.6) lib/active_record/model_schema.rb:260:in `column_names'
|
1238
|
+
activerecord (4.2.6) lib/active_record/relation/calculations.rb:226:in `aggregate_column'
|
1239
|
+
activerecord (4.2.6) lib/active_record/relation/calculations.rb:252:in `execute_simple_calculation'
|
1240
|
+
activerecord (4.2.6) lib/active_record/relation/calculations.rb:221:in `perform_calculation'
|
1241
|
+
activerecord (4.2.6) lib/active_record/relation/calculations.rb:127:in `calculate'
|
1242
|
+
activerecord (4.2.6) lib/active_record/relation/calculations.rb:42:in `count'
|
1243
|
+
rails_admin (0.8.1) lib/rails_admin/adapters/active_record.rb:43:in `count'
|
1244
|
+
rails_admin (0.8.1) lib/rails_admin/config/actions/dashboard.rb:26:in `block (3 levels) in <class:Dashboard>'
|
1245
|
+
rails_admin (0.8.1) lib/rails_admin/config/actions/dashboard.rb:24:in `each'
|
1246
|
+
rails_admin (0.8.1) lib/rails_admin/config/actions/dashboard.rb:24:in `block (2 levels) in <class:Dashboard>'
|
1247
|
+
rails_admin (0.8.1) app/controllers/rails_admin/main_controller.rb:22:in `instance_eval'
|
1248
|
+
rails_admin (0.8.1) app/controllers/rails_admin/main_controller.rb:22:in `dashboard'
|
1249
|
+
actionpack (4.2.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1250
|
+
actionpack (4.2.6) lib/abstract_controller/base.rb:198:in `process_action'
|
1251
|
+
actionpack (4.2.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1252
|
+
actionpack (4.2.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
1253
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:117:in `call'
|
1254
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
|
1255
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:505:in `call'
|
1256
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
|
1257
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
1258
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1259
|
+
actionpack (4.2.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
1260
|
+
actionpack (4.2.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1261
|
+
actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
1262
|
+
activesupport (4.2.6) lib/active_support/notifications.rb:164:in `block in instrument'
|
1263
|
+
activesupport (4.2.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1264
|
+
activesupport (4.2.6) lib/active_support/notifications.rb:164:in `instrument'
|
1265
|
+
actionpack (4.2.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1266
|
+
actionpack (4.2.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
1267
|
+
activerecord (4.2.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1268
|
+
actionpack (4.2.6) lib/abstract_controller/base.rb:137:in `process'
|
1269
|
+
actionview (4.2.6) lib/action_view/rendering.rb:30:in `process'
|
1270
|
+
actionpack (4.2.6) lib/action_controller/metal.rb:196:in `dispatch'
|
1271
|
+
actionpack (4.2.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1272
|
+
actionpack (4.2.6) lib/action_controller/metal.rb:237:in `block in action'
|
1273
|
+
actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
|
1274
|
+
actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:43:in `serve'
|
1275
|
+
actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
1276
|
+
actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each'
|
1277
|
+
actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve'
|
1278
|
+
actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
1279
|
+
railties (4.2.6) lib/rails/engine.rb:518:in `call'
|
1280
|
+
railties (4.2.6) lib/rails/railtie.rb:194:in `public_send'
|
1281
|
+
railties (4.2.6) lib/rails/railtie.rb:194:in `method_missing'
|
1282
|
+
actionpack (4.2.6) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
1283
|
+
actionpack (4.2.6) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
1284
|
+
actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `each'
|
1285
|
+
actionpack (4.2.6) lib/action_dispatch/journey/router.rb:30:in `serve'
|
1286
|
+
actionpack (4.2.6) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
1287
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call'
|
1288
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call'
|
1289
|
+
rack-pjax (0.8.0) lib/rack/pjax.rb:12:in `call'
|
1290
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
1291
|
+
rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
|
1292
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
1293
|
+
remotipart (1.2.1) lib/remotipart/middleware.rb:27:in `call'
|
1294
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1295
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
1296
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
1297
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
1298
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
1299
|
+
activerecord (4.2.6) lib/active_record/query_cache.rb:36:in `call'
|
1300
|
+
activerecord (4.2.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
1301
|
+
activerecord (4.2.6) lib/active_record/migration.rb:377:in `call'
|
1302
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1303
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
1304
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
1305
|
+
activesupport (4.2.6) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1306
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1307
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
1308
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
1309
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1310
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1311
|
+
railties (4.2.6) lib/rails/rack/logger.rb:38:in `call_app'
|
1312
|
+
railties (4.2.6) lib/rails/rack/logger.rb:20:in `block in call'
|
1313
|
+
activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1314
|
+
activesupport (4.2.6) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1315
|
+
activesupport (4.2.6) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1316
|
+
railties (4.2.6) lib/rails/rack/logger.rb:20:in `call'
|
1317
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1318
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
1319
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
1320
|
+
activesupport (4.2.6) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1321
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
1322
|
+
actionpack (4.2.6) lib/action_dispatch/middleware/static.rb:120:in `call'
|
1323
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
1324
|
+
railties (4.2.6) lib/rails/engine.rb:518:in `call'
|
1325
|
+
railties (4.2.6) lib/rails/application.rb:165:in `call'
|
1326
|
+
rack (1.6.4) lib/rack/lock.rb:17:in `call'
|
1327
|
+
rack (1.6.4) lib/rack/content_length.rb:15:in `call'
|
1328
|
+
rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
|
1329
|
+
/home/w3case/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
1330
|
+
/home/w3case/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
1331
|
+
/home/w3case/.rvm/rubies/ruby-2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
1332
|
+
|
1333
|
+
|
1334
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@global/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms)
|
1335
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@global/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms)
|
1336
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@global/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.7ms)
|
1337
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@global/gems/actionpack-4.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.3ms)
|
1338
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1339
|
+
Migrating to CreateFeaturedContents (20160729105947)
|
1340
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1341
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "featured_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
1342
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160729105947"]]
|
1343
|
+
[1m[36m (7.6ms)[0m [1mcommit transaction[0m
|
1344
|
+
Migrating to CreateFeaturedContentImages (20160729105948)
|
1345
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1346
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "featured_content_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "featured_content_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
1347
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
1348
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_featured_content_images_on_featured_content_id" ON "featured_content_images" ("featured_content_id")[0m
|
1349
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160729105948"]]
|
1350
|
+
[1m[36m (0.9ms)[0m [1mcommit transaction[0m
|
1351
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1352
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
1353
|
+
FROM sqlite_master
|
1354
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
1355
|
+
UNION ALL
|
1356
|
+
SELECT sql
|
1357
|
+
FROM sqlite_temp_master
|
1358
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
1359
|
+
[0m
|
1360
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
1361
|
+
FROM sqlite_master
|
1362
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
1363
|
+
UNION ALL
|
1364
|
+
SELECT sql
|
1365
|
+
FROM sqlite_temp_master
|
1366
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
1367
|
+
|
1368
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
1369
|
+
FROM sqlite_master
|
1370
|
+
WHERE name='index_featured_content_images_on_featured_content_id' AND type='index'
|
1371
|
+
UNION ALL
|
1372
|
+
SELECT sql
|
1373
|
+
FROM sqlite_temp_master
|
1374
|
+
WHERE name='index_featured_content_images_on_featured_content_id' AND type='index'
|
1375
|
+
[0m
|
1376
|
+
|
1377
|
+
|
1378
|
+
Started GET "/admin" for 127.0.0.1 at 2016-07-29 07:00:00 -0400
|
1379
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1380
|
+
Processing by RailsAdmin::MainController#dashboard as HTML
|
1381
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builders"
|
1382
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilder Load (0.1ms)[0m [1mSELECT "content_builders".* FROM "content_builders" ORDER BY content_builders.updated_at desc LIMIT 1[0m
|
1383
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builder_categories"
|
1384
|
+
[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
|
1385
|
+
[1m[35m (0.0ms)[0m SELECT COUNT(*) FROM "featured_contents"
|
1386
|
+
[1m[36mRailsAdminFeaturedContent::FeaturedContent Load (0.1ms)[0m [1mSELECT "featured_contents".* FROM "featured_contents" ORDER BY featured_contents.updated_at desc LIMIT 1[0m
|
1387
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/dashboard.html.haml within layouts/rails_admin/application (8.1ms)
|
1388
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_secondary_navigation.html.haml (2.7ms)
|
1389
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_navigation.html.haml (5.8ms)
|
1390
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/_sidebar_navigation.html.haml (2.8ms)
|
1391
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/layouts/rails_admin/pjax.html.haml (2.6ms)
|
1392
|
+
Completed 200 OK in 4642ms (Views: 4505.9ms | ActiveRecord: 0.8ms)
|
1393
|
+
|
1394
|
+
|
1395
|
+
Started GET "/assets/rails_admin/rails_admin.self-692c454098375a4b2211f115c7f408254590e69f75635bb1ff65cc98ab15a67f.css?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1396
|
+
|
1397
|
+
|
1398
|
+
Started GET "/assets/rails_admin/jquery.remotipart.fixed.self-357a8f834a6b278f578acd51708542bff0852a75d8d583d0d761d3f387af5b4c.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1399
|
+
|
1400
|
+
|
1401
|
+
Started GET "/assets/rails_admin/ra.filter-box.self-7a15aaeea6101fb1e648df5848917eddd01c5c193ffae1e121224ec7e96d8647.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1402
|
+
|
1403
|
+
|
1404
|
+
Started GET "/assets/rails_admin/ra.nested-form-hooks.self-abecd3cd4d55ce44cbf00b87d2f612d570af5e7fe5701d05135d60f8c07e7d37.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1405
|
+
|
1406
|
+
|
1407
|
+
Started GET "/assets/jquery.self-660adc51e0224b731d29f575a6f1ec167ba08ad06ed5deca4f1e8654c135bf4c.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1408
|
+
|
1409
|
+
|
1410
|
+
Started GET "/assets/jquery.iframe-transport.self-9d6de1e3d97369f20a85456477db38a3d2b674761f4a252275201ec0272793a4.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1411
|
+
|
1412
|
+
|
1413
|
+
Started GET "/assets/jquery-ui/effect.self-3acdb29e7da09c8f0195b994d2f04d73bfef50dc539c84fd2c835d964d33e5c1.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1414
|
+
|
1415
|
+
|
1416
|
+
Started GET "/assets/jquery-ui/mouse.self-c513294e8da73f31f84ba3ef11e2a1180a47faea0eb2fea4a53fc26153dd21fd.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1417
|
+
|
1418
|
+
|
1419
|
+
Started GET "/assets/jquery_ujs.self-e87806d0cf4489aeb1bb7288016024e8de67fd18db693fe026fe3907581e53cd.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1420
|
+
|
1421
|
+
|
1422
|
+
Started GET "/assets/jquery-ui/widget.self-c1602241ddc51216b58391768667068867b8e15b9efc722befcd25771eda6819.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1423
|
+
|
1424
|
+
|
1425
|
+
Started GET "/assets/jquery-ui/core.self-93be4d22eda916787802a64d8f88b52db8a9027d4ccbbc0942625324a7d12d44.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1426
|
+
|
1427
|
+
|
1428
|
+
Started GET "/assets/jquery-ui/position.self-e693ced4ecfa1a276f0b794f32c1d30d792764b08788bf68ecfa3b388c291333.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1429
|
+
|
1430
|
+
|
1431
|
+
Started GET "/assets/jquery-ui/sortable.self-df2d80a36f9dfbe0facc596ccd92af83ca50d38e4cd6a84810aaf5d40b8cd181.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1432
|
+
|
1433
|
+
|
1434
|
+
Started GET "/assets/rails_admin/bootstrap-datetimepicker.self-9bf8b50ba86095fb5caaadd1ee11eaf661b3f4879f3ea5263d541e9804fd7b15.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1435
|
+
|
1436
|
+
|
1437
|
+
Started GET "/assets/rails_admin/moment-with-locales.self-c29e385ac561ac8d380cf9a68428251c3dd6b6f0f05f6114c6ae7e8114678db8.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1438
|
+
|
1439
|
+
|
1440
|
+
Started GET "/assets/jquery-ui/menu.self-7abc1c9401509a7e4fc609b1e461be6fd17e8116e8fda19cc59d05ba79aefb68.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1441
|
+
|
1442
|
+
|
1443
|
+
Started GET "/assets/rails_admin/jquery.colorpicker.self-65a540a6a8e61569a39a37bd1456543ae5e5bbe48868247372bed40a1dff2bcf.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1444
|
+
|
1445
|
+
|
1446
|
+
Started GET "/assets/jquery-ui/autocomplete.self-3befc48aba87cead090cfd014562b2771a662ac6d2c8197b24c08b2d9f3d9f2d.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:05 -0400
|
1447
|
+
|
1448
|
+
|
1449
|
+
Started GET "/assets/rails_admin/ra.filtering-multiselect.self-0eadfce64f22b8e533f96e573e738fdf5af614af5729c772838b8d1383739035.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1450
|
+
|
1451
|
+
|
1452
|
+
Started GET "/assets/rails_admin/jquery.pjax.self-aa02343d5b755c77fd76db8b2d2864cf2aebdba056b56e74b3b91f2e65207444.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1453
|
+
|
1454
|
+
|
1455
|
+
Started GET "/assets/rails_admin/ra.remote-form.self-6ee31242b35c47eae247621696152697683860be737fcb9fc7705305736c9370.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1456
|
+
|
1457
|
+
|
1458
|
+
Started GET "/assets/rails_admin/ra.filtering-select.self-29fedc7e0063905fecd8485d5a526f85b0d0c3f04de8416c2b56227e5b530528.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1459
|
+
|
1460
|
+
|
1461
|
+
Started GET "/assets/jquery_nested_form.self-d38045d10ebdd28aac44152cb451796232091957b86b47bedad1ab171a3a12cd.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1462
|
+
|
1463
|
+
|
1464
|
+
Started GET "/assets/rails_admin/ra.i18n.self-725ab24c454e18d4832f68df96ec4fffa6190faed5636160923a6d1162a1a0ba.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1465
|
+
|
1466
|
+
|
1467
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-transition.self-09ff30b1e8a93d1f7728b9855f55d9c9d8d5734c8861e0d8139994e50944572a.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1468
|
+
|
1469
|
+
|
1470
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-affix.self-d2b642d8fbfc1d7041e2edefd66683ada567a980789dcd6f94fddda0b33408b5.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1471
|
+
|
1472
|
+
|
1473
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-alert.self-a29e91e8cd3ddaba9bbc466901d53ec2127e9256b9b941905d525a3a716bd1a5.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1474
|
+
|
1475
|
+
|
1476
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-button.self-a6cb16785434acb365ae426aef9f1fce05ed553cae7a965e4471c3da71509175.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1477
|
+
|
1478
|
+
|
1479
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-carousel.self-57eb8422043cf0a85b7a9dc6843916eb0a3e35b419c7798a5eb254b918997631.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1480
|
+
|
1481
|
+
|
1482
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-collapse.self-7dc8bfbc2fbfabd2bad62c58ff8ffeaf8f20fb87c7ca6cd35f06d4dc19632587.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1483
|
+
|
1484
|
+
|
1485
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-dropdown.self-9314126777c6be5443e37ea7f7967d7914d72b3e60449ba50edc967446373059.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1486
|
+
|
1487
|
+
|
1488
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-scrollspy.self-a155b9d4b2f978905f0326c0f6635e1134fe91c6bfbfcbad079fa24a9fef2b0e.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1489
|
+
|
1490
|
+
|
1491
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-modal.self-72f95ffa1071297725a9ac91989693d56d1abf23f441a47455073b0da2857a5b.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1492
|
+
|
1493
|
+
|
1494
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-tooltip.self-11cf547be953f25f511cec668f6690473fd97b2f65502e4032f4030999a3f0c3.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1495
|
+
|
1496
|
+
|
1497
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-tab.self-122235057fbd4c6c7da377d59dc58f47b44cb1088a2e38e6ee6ce9d8ac29a26a.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1498
|
+
|
1499
|
+
|
1500
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-popover.self-77d8e3a2499c1104ef146396a68b82469ee2bdb365199b874694698d10405e9a.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1501
|
+
|
1502
|
+
|
1503
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap-typeahead.self-2621ced336904d375bef144d46edd9d304889e09c6559d64df325bbd10f4ce8a.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1504
|
+
|
1505
|
+
|
1506
|
+
Started GET "/assets/rails_admin/rails_admin.self-ab9f3e5c71b96d0ca434851ecacc97b0fc3a0e8d96ab171916e9d5fdd10ef15b.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1507
|
+
|
1508
|
+
|
1509
|
+
Started GET "/assets/rails_admin/bootstrap/bootstrap.self-94f59a48294d99f8d9b7632cd5a1742670c7735fe37ec7c555aab939b635fdde.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1510
|
+
|
1511
|
+
|
1512
|
+
Started GET "/assets/rails_admin/ra.widgets.self-b707ff6592e3d3359ef77e61d1161a0370c5663c303eb0a5cec459fbf1fa7229.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1513
|
+
|
1514
|
+
|
1515
|
+
Started GET "/assets/rails_admin/custom/ui.self-877aef30ae1b040ab8a3aba4e3e309a11d7f2612f44dde450b5c157aa5f95c05.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1516
|
+
|
1517
|
+
|
1518
|
+
Started GET "/assets/rails_admin/ui.self-5f1671365225e7918e5bf4cb99fc38b189e81884fb859682f79a683f41ee19b7.js?body=1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1519
|
+
|
1520
|
+
|
1521
|
+
Started GET "/assets/fontawesome-webfont-d3ebb498192527b985939ae62cc4e5eb5c108efc1896184126b45d866868e73d.woff2?v=4.6.1" for 127.0.0.1 at 2016-07-29 07:00:06 -0400
|
1522
|
+
|
1523
|
+
|
1524
|
+
Started GET "/admin/rails_admin_content_builder~content_builder?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-29 07:00:15 -0400
|
1525
|
+
Processing by RailsAdmin::MainController#index as HTML
|
1526
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder"}
|
1527
|
+
[1m[35mRailsAdminContentBuilder::ContentBuilder Load (0.1ms)[0m SELECT "content_builders".* FROM "content_builders" ORDER BY content_builders.id desc LIMIT 20 OFFSET 0
|
1528
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "content_builders"[0m
|
1529
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/pjax (22.4ms)
|
1530
|
+
Completed 200 OK in 45ms (Views: 26.8ms | ActiveRecord: 0.6ms)
|
1531
|
+
|
1532
|
+
|
1533
|
+
Started GET "/admin/rails_admin_content_builder~content_builder_category?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-29 07:00:16 -0400
|
1534
|
+
Processing by RailsAdmin::MainController#index as HTML
|
1535
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder_category"}
|
1536
|
+
[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
|
1537
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "content_builder_categories"[0m
|
1538
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/pjax (8.3ms)
|
1539
|
+
Completed 200 OK in 20ms (Views: 13.6ms | ActiveRecord: 0.2ms)
|
1540
|
+
|
1541
|
+
|
1542
|
+
Started GET "/admin/rails_admin_featured_content~featured_content?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-29 07:00:17 -0400
|
1543
|
+
Processing by RailsAdmin::MainController#index as HTML
|
1544
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_featured_content~featured_content"}
|
1545
|
+
[1m[35mRailsAdminFeaturedContent::FeaturedContent Load (0.3ms)[0m SELECT "featured_contents".* FROM "featured_contents" ORDER BY featured_contents.id desc LIMIT 20 OFFSET 0
|
1546
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "featured_contents"[0m
|
1547
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/pjax (10.0ms)
|
1548
|
+
Completed 200 OK in 22ms (Views: 14.6ms | ActiveRecord: 0.5ms)
|
1549
|
+
|
1550
|
+
|
1551
|
+
Started GET "/admin/rails_admin_featured_content~featured_content/new?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-29 07:00:19 -0400
|
1552
|
+
Processing by RailsAdmin::MainController#new as HTML
|
1553
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_featured_content~featured_content"}
|
1554
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_field.html.haml (1.7ms)
|
1555
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/_submit_buttons.html.haml (2.7ms)
|
1556
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/new.html.haml within layouts/rails_admin/pjax (14.3ms)
|
1557
|
+
Completed 200 OK in 25ms (Views: 19.8ms | ActiveRecord: 0.0ms)
|
1558
|
+
|
1559
|
+
|
1560
|
+
Started GET "/admin/rails_admin_content_builder~content_builder_category?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-29 07:00:21 -0400
|
1561
|
+
Processing by RailsAdmin::MainController#index as HTML
|
1562
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder_category"}
|
1563
|
+
[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
|
1564
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "content_builder_categories"[0m
|
1565
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/pjax (6.7ms)
|
1566
|
+
Completed 200 OK in 16ms (Views: 12.0ms | ActiveRecord: 0.2ms)
|
1567
|
+
|
1568
|
+
|
1569
|
+
Started GET "/admin/rails_admin_content_builder~content_builder_category/new?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-29 07:00:21 -0400
|
1570
|
+
Processing by RailsAdmin::MainController#new as HTML
|
1571
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder_category"}
|
1572
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_field.html.haml (0.4ms)
|
1573
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/_submit_buttons.html.haml (1.0ms)
|
1574
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/new.html.haml within layouts/rails_admin/pjax (5.7ms)
|
1575
|
+
Completed 200 OK in 16ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
1576
|
+
|
1577
|
+
|
1578
|
+
Started GET "/admin/rails_admin_content_builder~content_builder?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-29 07:00:22 -0400
|
1579
|
+
Processing by RailsAdmin::MainController#index as HTML
|
1580
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder"}
|
1581
|
+
[1m[35mRailsAdminContentBuilder::ContentBuilder Load (0.2ms)[0m SELECT "content_builders".* FROM "content_builders" ORDER BY content_builders.id desc LIMIT 20 OFFSET 0
|
1582
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "content_builders"[0m
|
1583
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/index.html.haml within layouts/rails_admin/pjax (11.3ms)
|
1584
|
+
Completed 200 OK in 24ms (Views: 17.3ms | ActiveRecord: 0.3ms)
|
1585
|
+
|
1586
|
+
|
1587
|
+
Started GET "/admin/rails_admin_content_builder~content_builder/new?_pjax=%5Bdata-pjax-container%5D" for 127.0.0.1 at 2016-07-29 07:00:23 -0400
|
1588
|
+
Processing by RailsAdmin::MainController#new as HTML
|
1589
|
+
Parameters: {"_pjax"=>"[data-pjax-container]", "model_name"=>"rails_admin_content_builder~content_builder"}
|
1590
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_field.html.haml (0.4ms)
|
1591
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_datetime.html.haml (2.1ms)
|
1592
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_field.html.haml (0.4ms)
|
1593
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "content_builder_categories"
|
1594
|
+
[1m[36mRailsAdminContentBuilder::ContentBuilderCategory Load (0.1ms)[0m [1mSELECT "content_builder_categories".* FROM "content_builder_categories" ORDER BY content_builder_categories.id desc[0m
|
1595
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/_form_filtering_select.html.haml (11.7ms)
|
1596
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/_submit_buttons.html.haml (0.8ms)
|
1597
|
+
Rendered /home/w3case/.rvm/gems/ruby-2.3.0@rails_admin_feature_content/gems/rails_admin-0.8.1/app/views/rails_admin/main/new.html.haml within layouts/rails_admin/pjax (28.0ms)
|
1598
|
+
Completed 200 OK in 39ms (Views: 33.6ms | ActiveRecord: 0.2ms)
|
1599
|
+
[1m[36m (2.0ms)[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
|
1600
|
+
[1m[35m (1.0ms)[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)
|
1601
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
1602
|
+
[1m[35m (1.7ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
1603
|
+
[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, "summary" text, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
1604
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")
|
1605
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "featured_content_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "featured_content_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
1606
|
+
[1m[35m (0.8ms)[0m CREATE INDEX "index_featured_content_images_on_featured_content_id" ON "featured_content_images" ("featured_content_id")
|
1607
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "featured_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
1608
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
1609
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1610
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
1611
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160729105948')[0m
|
1612
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160729105801')
|
1613
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160729105947')[0m
|
1614
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20160729105803')
|
1615
|
+
[1m[36m (0.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20160729105802')[0m
|
1616
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1617
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1618
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
1619
|
+
FROM sqlite_master
|
1620
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
1621
|
+
UNION ALL
|
1622
|
+
SELECT sql
|
1623
|
+
FROM sqlite_temp_master
|
1624
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
1625
|
+
[0m
|
1626
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
1627
|
+
FROM sqlite_master
|
1628
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
1629
|
+
UNION ALL
|
1630
|
+
SELECT sql
|
1631
|
+
FROM sqlite_temp_master
|
1632
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
1633
|
+
|
1634
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
1635
|
+
FROM sqlite_master
|
1636
|
+
WHERE name='index_featured_content_images_on_featured_content_id' AND type='index'
|
1637
|
+
UNION ALL
|
1638
|
+
SELECT sql
|
1639
|
+
FROM sqlite_temp_master
|
1640
|
+
WHERE name='index_featured_content_images_on_featured_content_id' AND type='index'
|
1641
|
+
[0m
|
1642
|
+
[1m[36m (9.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
1643
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1644
|
+
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1645
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.0ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1646
|
+
Migrating to CreateContentBuilderCategories (20160729105801)
|
1647
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1648
|
+
[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)
|
1649
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160729105801"]]
|
1650
|
+
[1m[35m (0.9ms)[0m commit transaction
|
1651
|
+
Migrating to CreateContentBuilders (20160729105802)
|
1652
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1653
|
+
[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, "summary" text, "content_builder_category_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
1654
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_content_builders_on_content_builder_category_id" ON "content_builders" ("content_builder_category_id")[0m
|
1655
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160729105802"]]
|
1656
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
1657
|
+
Migrating to CreateContentBuilderImages (20160729105803)
|
1658
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1659
|
+
[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
|
1660
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_content_builder_images_on_content_builder_id" ON "content_builder_images" ("content_builder_id")
|
1661
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160729105803"]]
|
1662
|
+
[1m[35m (1.1ms)[0m commit transaction
|
1663
|
+
Migrating to CreateFeaturedContents (20160729105947)
|
1664
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1665
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "featured_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "content" text, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
1666
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20160729105947"]]
|
1667
|
+
[1m[35m (0.7ms)[0m commit transaction
|
1668
|
+
Migrating to CreateFeaturedContentImages (20160729105948)
|
1669
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1670
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "featured_content_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "featured_content_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
1671
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_featured_content_images_on_featured_content_id" ON "featured_content_images" ("featured_content_id")[0m
|
1672
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160729105948"]]
|
1673
|
+
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
1674
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
1675
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
1676
|
+
FROM sqlite_master
|
1677
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
1678
|
+
UNION ALL
|
1679
|
+
SELECT sql
|
1680
|
+
FROM sqlite_temp_master
|
1681
|
+
WHERE name='index_content_builder_images_on_content_builder_id' AND type='index'
|
1682
|
+
[0m
|
1683
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
1684
|
+
FROM sqlite_master
|
1685
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
1686
|
+
UNION ALL
|
1687
|
+
SELECT sql
|
1688
|
+
FROM sqlite_temp_master
|
1689
|
+
WHERE name='index_content_builders_on_content_builder_category_id' AND type='index'
|
1690
|
+
|
1691
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
1692
|
+
FROM sqlite_master
|
1693
|
+
WHERE name='index_featured_content_images_on_featured_content_id' AND type='index'
|
1694
|
+
UNION ALL
|
1695
|
+
SELECT sql
|
1696
|
+
FROM sqlite_temp_master
|
1697
|
+
WHERE name='index_featured_content_images_on_featured_content_id' AND type='index'
|
1698
|
+
[0m
|