shakespeare 0.1.0

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.
Files changed (43) hide show
  1. data/README.md +85 -0
  2. data/Rakefile +43 -0
  3. data/app/controllers/admin/pages_controller.rb +47 -0
  4. data/app/controllers/pages_controller.rb +5 -0
  5. data/app/models/page.rb +10 -0
  6. data/app/views/admin/pages/_form.html.erb +38 -0
  7. data/app/views/admin/pages/edit.html.erb +3 -0
  8. data/app/views/admin/pages/index.html.erb +24 -0
  9. data/app/views/admin/pages/new.html.erb +3 -0
  10. data/app/views/layouts/admin.html.erb +9 -0
  11. data/app/views/pages/show.html.erb +3 -0
  12. data/config/cucumber.yml +7 -0
  13. data/config/routes.rb +8 -0
  14. data/features/admin_pages.feature +38 -0
  15. data/features/public_pages.feature +12 -0
  16. data/features/step_definitions/page_steps.rb +7 -0
  17. data/features/step_definitions/web_steps.rb +259 -0
  18. data/features/support/env.rb +55 -0
  19. data/features/support/paths.rb +32 -0
  20. data/features/support/shakespeare_env.rb +3 -0
  21. data/generators/definition.txt +0 -0
  22. data/generators/shakespeare/USAGE +5 -0
  23. data/generators/shakespeare/shakespeare_generator.rb +8 -0
  24. data/generators/shakespeare/templates/20091230095600_create_pages.rb +25 -0
  25. data/lib/shakespeare.rb +7 -0
  26. data/lib/shakespeare/helpers.rb +16 -0
  27. data/lib/shakespeare/settings.rb +30 -0
  28. data/lib/shakespeare/shakespeare.rb +8 -0
  29. data/lib/shakespeare/view_helpers.rb +29 -0
  30. data/rails/init.rb +1 -0
  31. data/rerun.txt +1 -0
  32. data/spec/blueprints.rb +9 -0
  33. data/spec/controllers/admin/pages_controller_spec.rb +35 -0
  34. data/spec/database.yml +21 -0
  35. data/spec/debug.log +1937 -0
  36. data/spec/helpers_spec.rb +19 -0
  37. data/spec/models/page_spec.rb +28 -0
  38. data/spec/schema.rb +16 -0
  39. data/spec/shakespeare_generator_spec.rb +36 -0
  40. data/spec/shakespeare_spec.rb +3 -0
  41. data/spec/spec_helper.rb +41 -0
  42. data/spec/view_helpers_spec.rb +103 -0
  43. metadata +104 -0
@@ -0,0 +1,55 @@
1
+ # IMPORTANT: This file is generated by cucumber-rails - edit at your own peril.
2
+ # It is recommended to regenerate this file in the future when you upgrade to a
3
+ # newer version of cucumber-rails. Consider adding your own code to a new file
4
+ # instead of editing this one. Cucumber will automatically load all features/**/*.rb
5
+ # files.
6
+
7
+ ENV["RAILS_ENV"] ||= "cucumber"
8
+ require File.expand_path(File.dirname(__FILE__) + '/../../../../../config/environment')
9
+
10
+ require 'cucumber/formatter/unicode' # Remove this line if you don't want Cucumber Unicode support
11
+ require 'cucumber/rails/rspec'
12
+ require 'cucumber/rails/world'
13
+ require 'cucumber/rails/active_record'
14
+ require 'cucumber/web/tableish'
15
+
16
+ require 'webrat'
17
+ require 'webrat/core/matchers'
18
+ require 'cucumber/webrat/element_locator' # Deprecated in favor of #tableish - remove this line if you don't use #element_at or #table_at
19
+
20
+ Webrat.configure do |config|
21
+ config.mode = :rails
22
+ config.open_error_files = false # Set to true if you want error pages to pop up in the browser
23
+ end
24
+
25
+
26
+ # If you set this to false, any error raised from within your app will bubble
27
+ # up to your step definition and out to cucumber unless you catch it somewhere
28
+ # on the way. You can make Rails rescue errors and render error pages on a
29
+ # per-scenario basis by tagging a scenario or feature with the @allow-rescue tag.
30
+ #
31
+ # If you set this to true, Rails will rescue all errors and render error
32
+ # pages, more or less in the same way your application would behave in the
33
+ # default production environment. It's not recommended to do this for all
34
+ # of your scenarios, as this makes it hard to discover errors in your application.
35
+ ActionController::Base.allow_rescue = false
36
+
37
+ # If you set this to true, each scenario will run in a database transaction.
38
+ # You can still turn off transactions on a per-scenario basis, simply tagging
39
+ # a feature or scenario with the @no-txn tag. If you are using Capybara,
40
+ # tagging with @culerity or @javascript will also turn transactions off.
41
+ #
42
+ # If you set this to false, transactions will be off for all scenarios,
43
+ # regardless of whether you use @no-txn or not.
44
+ #
45
+ # Beware that turning transactions off will leave data in your database
46
+ # after each scenario, which can lead to hard-to-debug failures in
47
+ # subsequent scenarios. If you do this, we recommend you create a Before
48
+ # block that will explicitly put your database in a known state.
49
+ Cucumber::Rails::World.use_transactional_fixtures = true
50
+
51
+ # How to clean your database when transactions are turned off. See
52
+ # http://github.com/bmabey/database_cleaner for more info.
53
+ require 'database_cleaner'
54
+ DatabaseCleaner.strategy = :truncation
55
+
@@ -0,0 +1,32 @@
1
+ module NavigationHelpers
2
+ # Maps a name to a path. Used by the
3
+ #
4
+ # When /^I go to (.+)$/ do |page_name|
5
+ #
6
+ # step definition in web_steps.rb
7
+ #
8
+ def path_to(page_name)
9
+ case page_name
10
+
11
+ when /the home\s?page/
12
+ '/'
13
+ when /the pages admin page/
14
+ admin_pages_path
15
+ when /the page for "([^"]*)"/
16
+ page = Page.find_by_title($1)
17
+ page_path(page)
18
+
19
+ # Add more mappings here.
20
+ # Here is an example that pulls values out of the Regexp:
21
+ #
22
+ # when /^(.*)'s profile page$/i
23
+ # user_profile_path(User.find_by_login($1))
24
+
25
+ else
26
+ raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
27
+ "Now, go and add a mapping in #{__FILE__}"
28
+ end
29
+ end
30
+ end
31
+
32
+ World(NavigationHelpers)
@@ -0,0 +1,3 @@
1
+ require 'spec/spec_helper'
2
+ require 'spec/blueprints'
3
+ load_schema
File without changes
@@ -0,0 +1,5 @@
1
+ Description:
2
+ Creates a migration to create a table to store pages called "pages"
3
+
4
+ Examples:
5
+ `./script/generate shakespeare`
@@ -0,0 +1,8 @@
1
+ class ShakespeareGenerator < Rails::Generator::Base
2
+ def manifest
3
+ record do |m|
4
+ m.directory 'db/migrate'
5
+ m.file "20091230095600_create_pages.rb", "db/migrate/20091230095600_create_pages.rb"
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,25 @@
1
+ class CreatePages < ActiveRecord::Migration
2
+ def self.up
3
+ create_table "pages", :force => true do |t|
4
+ t.string "title"
5
+ t.string "url"
6
+ t.text "keywords"
7
+ t.text "description"
8
+ t.text "content"
9
+ t.datetime "created_at"
10
+ t.datetime "updated_at"
11
+ t.boolean "noindex"
12
+ t.boolean "nofollow"
13
+ t.string "canonical"
14
+ t.boolean "enable_canonical"
15
+ t.boolean "enable_keywords"
16
+ end
17
+
18
+ add_index :pages, :url
19
+ end
20
+
21
+ def self.down
22
+ remove_index :pages, :url
23
+ drop_table :pages
24
+ end
25
+ end
@@ -0,0 +1,7 @@
1
+ require 'shakespeare/settings'
2
+ require 'shakespeare/shakespeare'
3
+ require 'shakespeare/helpers'
4
+ require 'shakespeare/view_helpers'
5
+
6
+ ApplicationController.send(:include, Shakespeare::Helpers)
7
+ ActionView::Base.send(:include, Shakespeare::ViewHelpers)
@@ -0,0 +1,16 @@
1
+ module Shakespeare
2
+ module Helpers
3
+ def self.included(base)
4
+ base.send(:helper_method, :page_content) if base.respond_to?(:helper_method)
5
+ end
6
+
7
+ def page_content
8
+ @page_content = Page.find_by_url("#{controller_name}/#{action_name}")
9
+ end
10
+
11
+ def protect_in_production
12
+ return true unless Shakespeare.env == 'production'
13
+ render :text => 'Unauthorized' unless Shakespeare::Settings.allow_anonymous
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,30 @@
1
+ module Shakespeare
2
+ class Settings
3
+ class << self
4
+ def layout
5
+ @layout ||= 'admin'
6
+ end
7
+
8
+ def layout=(layout_choice)
9
+ @layout = layout_choice
10
+ end
11
+
12
+ def before_filters
13
+ @before_filters ||= []
14
+ end
15
+
16
+ def before_filters=(filters)
17
+ @before_filters ||= filters
18
+ end
19
+
20
+ def allow_anonymous
21
+ @allow_anonymous ||= false
22
+ end
23
+
24
+ def allow_anonymous=(boolean)
25
+ @allow_anonymous = boolean
26
+ end
27
+ end
28
+ end
29
+
30
+ end
@@ -0,0 +1,8 @@
1
+ module Shakespeare
2
+
3
+ class << self
4
+ def env
5
+ Rails.env
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,29 @@
1
+ module Shakespeare
2
+ module ViewHelpers
3
+ def page_title
4
+ return if page_content.nil? or page_content.title.blank?
5
+ page_content.title
6
+ end
7
+
8
+ def description_meta_tag
9
+ return if page_content.nil? or page_content.description.blank?
10
+ %Q[<meta name="description" content="#{page_content.description}">]
11
+ end
12
+
13
+ def keywords_meta_tag
14
+ return if page_content.nil? or page_content.keywords.blank?
15
+ %Q[<meta name="keywords" content="#{page_content.keywords}">]
16
+ end
17
+
18
+ def robots_meta_tag
19
+ return if page_content.nil? or page_content.robots.blank?
20
+ %Q[<meta name="robots" content="#{page_content.robots}">]
21
+ end
22
+
23
+ def canonical_link_tag
24
+ return if page_content.nil? or page_content.canonical.blank?
25
+ return unless page_content.enable_canonical?
26
+ %Q[<link href="#{page_content.canonical}" rel="canonical" />]
27
+ end
28
+ end
29
+ end
data/rails/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'shakespeare'
data/rerun.txt ADDED
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,9 @@
1
+ require 'machinist/active_record'
2
+ require 'sham'
3
+ require 'faker'
4
+
5
+ Sham.title { Faker::Lorem.sentence }
6
+
7
+ Page.blueprint do
8
+ title
9
+ end
@@ -0,0 +1,35 @@
1
+ require 'spec/spec_helper'
2
+
3
+ describe Admin::PagesController do
4
+
5
+ describe "#protect_in_production" do
6
+
7
+
8
+ context "not in production" do
9
+
10
+ it "shouldn't do anything" do
11
+ @controller = Admin::PagesController.new
12
+ @controller.protect_in_production.should be_true
13
+ end
14
+
15
+ end
16
+
17
+ context "in production" do
18
+
19
+ it "shouldn't allow proceeding by default" do
20
+ Shakespeare.stub!(:env).and_return('production')
21
+ get :index
22
+ response.body.should == 'Unauthorized'
23
+ end
24
+
25
+ it "should allow proceeding if allow_anonymous is set" do
26
+ Shakespeare.stub!(:env).and_return('production')
27
+ Shakespeare::Settings.stub!(:allow_anonymous).and_return(true)
28
+ get :index
29
+ response.body.should_not == 'Unauthorized'
30
+ end
31
+
32
+ end
33
+ end
34
+
35
+ end
data/spec/database.yml ADDED
@@ -0,0 +1,21 @@
1
+ sqlite:
2
+ :adapter: sqlite
3
+ :database: vendor/plugins/shakespeare/test/shakespeare_plugin.sqlite.db
4
+
5
+ sqlite3:
6
+ :adapter: sqlite3
7
+ :dbfile: vendor/plugins/shakespeare/test/shakespeare_plugin.sqlite3.db
8
+
9
+ postgresql:
10
+ :adapter: postgresql
11
+ :username: postgres
12
+ :password: postgres
13
+ :database: shakespeare_plugin_test
14
+ :min_messages: ERROR
15
+
16
+ mysql:
17
+ :adapter: mysql
18
+ :host: localhost
19
+ :username: root
20
+ :password:
21
+ :database: shakespeare_plugin_test
data/spec/debug.log ADDED
@@ -0,0 +1,1937 @@
1
+ # Logfile created on Wed Dec 30 07:00:56 +0000 2009 by /
2
+ SQL (0.2ms) select sqlite_version(*)
3
+ SQL (0.5ms)  SELECT name
4
+ FROM sqlite_master
5
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
6
+ 
7
+ SQL (2.5ms) DROP TABLE "pages"
8
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
9
+ SQL (3.3ms)  SELECT name
10
+ FROM sqlite_master
11
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
12
+ 
13
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
14
+ SQL (0.2ms) select sqlite_version(*)
15
+ SQL (0.4ms)  SELECT name
16
+ FROM sqlite_master
17
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
18
+ 
19
+ SQL (2.4ms) DROP TABLE "pages"
20
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
21
+ SQL (0.2ms)  SELECT name
22
+ FROM sqlite_master
23
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
24
+ 
25
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
26
+ SQL (0.2ms) select sqlite_version(*)
27
+ SQL (0.4ms)  SELECT name
28
+ FROM sqlite_master
29
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
30
+ 
31
+ SQL (2.7ms) DROP TABLE "pages"
32
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
33
+ SQL (0.3ms)  SELECT name
34
+ FROM sqlite_master
35
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
36
+ 
37
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
38
+ SQL (0.2ms) select sqlite_version(*)
39
+ SQL (0.4ms)  SELECT name
40
+ FROM sqlite_master
41
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
42
+ 
43
+ SQL (2.4ms) DROP TABLE "pages"
44
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
45
+ SQL (0.3ms)  SELECT name
46
+ FROM sqlite_master
47
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
48
+ 
49
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
50
+ SQL (0.2ms) select sqlite_version(*)
51
+ SQL (0.4ms)  SELECT name
52
+ FROM sqlite_master
53
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
54
+ 
55
+ SQL (2.3ms) DROP TABLE "pages"
56
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
57
+ SQL (0.2ms)  SELECT name
58
+ FROM sqlite_master
59
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
60
+ 
61
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
62
+ SQL (0.2ms) select sqlite_version(*)
63
+ SQL (0.4ms)  SELECT name
64
+ FROM sqlite_master
65
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
66
+ 
67
+ SQL (1.5ms) DROP TABLE "pages"
68
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
69
+ SQL (0.2ms)  SELECT name
70
+ FROM sqlite_master
71
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
72
+ 
73
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
74
+ Page Load (0.2ms) SELECT * FROM "pages" 
75
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2009-12-30 07:06:07', 'Harry and the Hendersons', '2009-12-30 07:06:07', '', 'f', '', 'f', '', 'f', NULL, NULL)
76
+ Page Load (0.3ms) SELECT * FROM "pages" 
77
+ Page Create (0.6ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 07:06:07', 'Mr. MacAllister''s Christmas', '2009-12-30 07:06:07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
78
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
79
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
80
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2009-12-30 07:06:07', "content" = 'I was Home Alone' WHERE "id" = 1
81
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
82
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
83
+ SQL (0.2ms) select sqlite_version(*)
84
+ SQL (0.4ms)  SELECT name
85
+ FROM sqlite_master
86
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
87
+ 
88
+ SQL (2.3ms) DROP TABLE "pages"
89
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
90
+ SQL (0.3ms)  SELECT name
91
+ FROM sqlite_master
92
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
93
+ 
94
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
95
+ SQL (0.2ms) select sqlite_version(*)
96
+ SQL (0.4ms)  SELECT name
97
+ FROM sqlite_master
98
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
99
+ 
100
+ SQL (2.6ms) DROP TABLE "pages"
101
+ SQL (2.1ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
102
+ SQL (0.3ms)  SELECT name
103
+ FROM sqlite_master
104
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
105
+ 
106
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
107
+ SQL (0.2ms) select sqlite_version(*)
108
+ SQL (0.4ms)  SELECT name
109
+ FROM sqlite_master
110
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
111
+ 
112
+ SQL (1.5ms) DROP TABLE "pages"
113
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
114
+ SQL (0.2ms)  SELECT name
115
+ FROM sqlite_master
116
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
117
+ 
118
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
119
+ Page Load (0.3ms) SELECT * FROM "pages" 
120
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 07:23:19', 'Mr. MacAllister''s Christmas', '2009-12-30 07:23:19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
121
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
122
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
123
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2009-12-30 07:23:19', "content" = 'I was Home Alone' WHERE "id" = 1
124
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
125
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
126
+ SQL (0.2ms) select sqlite_version(*)
127
+ SQL (0.4ms)  SELECT name
128
+ FROM sqlite_master
129
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
130
+ 
131
+ SQL (2.7ms) DROP TABLE "pages"
132
+ SQL (2.1ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
133
+ SQL (0.3ms)  SELECT name
134
+ FROM sqlite_master
135
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
136
+ 
137
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
138
+ Page Load (0.3ms) SELECT * FROM "pages" 
139
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2009-12-30 07:23:57', 'Harry and the Hendersons', '2009-12-30 07:23:57', '', 'f', '', 'f', '', 'f', NULL, NULL)
140
+ Page Load (0.4ms) SELECT * FROM "pages" 
141
+ SQL (0.2ms) select sqlite_version(*)
142
+ SQL (0.3ms)  SELECT name
143
+ FROM sqlite_master
144
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
145
+ 
146
+ SQL (2.7ms) DROP TABLE "pages"
147
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
148
+ SQL (0.3ms)  SELECT name
149
+ FROM sqlite_master
150
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
151
+ 
152
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
153
+ SQL (0.2ms) select sqlite_version(*)
154
+ SQL (0.4ms)  SELECT name
155
+ FROM sqlite_master
156
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
157
+ 
158
+ SQL (3.0ms) DROP TABLE "pages"
159
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
160
+ SQL (0.3ms)  SELECT name
161
+ FROM sqlite_master
162
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
163
+ 
164
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
165
+ SQL (0.2ms) select sqlite_version(*)
166
+ SQL (0.5ms)  SELECT name
167
+ FROM sqlite_master
168
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
169
+ 
170
+ SQL (2.6ms) DROP TABLE "pages"
171
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
172
+ SQL (0.5ms)  SELECT name
173
+ FROM sqlite_master
174
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
175
+ 
176
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
177
+ SQL (0.2ms) select sqlite_version(*)
178
+ SQL (0.8ms)  SELECT name
179
+ FROM sqlite_master
180
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
181
+ 
182
+ SQL (2.5ms) DROP TABLE "pages"
183
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
184
+ SQL (0.3ms)  SELECT name
185
+ FROM sqlite_master
186
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
187
+ 
188
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
189
+ SQL (0.2ms) select sqlite_version(*)
190
+ SQL (0.3ms)  SELECT name
191
+ FROM sqlite_master
192
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
193
+ 
194
+ SQL (2.9ms) DROP TABLE "pages"
195
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
196
+ SQL (0.3ms)  SELECT name
197
+ FROM sqlite_master
198
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
199
+ 
200
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
201
+ Page Load (0.2ms) SELECT * FROM "pages" 
202
+ SQL (0.2ms) select sqlite_version(*)
203
+ SQL (0.4ms)  SELECT name
204
+ FROM sqlite_master
205
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
206
+ 
207
+ SQL (2.7ms) DROP TABLE "pages"
208
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
209
+ SQL (0.3ms)  SELECT name
210
+ FROM sqlite_master
211
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
212
+ 
213
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
214
+ Page Load (0.2ms) SELECT * FROM "pages" 
215
+ SQL (0.2ms) select sqlite_version(*)
216
+ SQL (0.4ms)  SELECT name
217
+ FROM sqlite_master
218
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
219
+ 
220
+ SQL (2.5ms) DROP TABLE "pages"
221
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
222
+ SQL (0.2ms)  SELECT name
223
+ FROM sqlite_master
224
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
225
+ 
226
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
227
+ Page Load (0.2ms) SELECT * FROM "pages" 
228
+ SQL (0.4ms) select sqlite_version(*)
229
+ SQL (0.4ms)  SELECT name
230
+ FROM sqlite_master
231
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
232
+ 
233
+ SQL (3.0ms) DROP TABLE "pages"
234
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
235
+ SQL (0.2ms)  SELECT name
236
+ FROM sqlite_master
237
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
238
+ 
239
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
240
+ Page Load (0.2ms) SELECT * FROM "pages" 
241
+ SQL (0.2ms) select sqlite_version(*)
242
+ SQL (0.4ms)  SELECT name
243
+ FROM sqlite_master
244
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
245
+ 
246
+ SQL (2.4ms) DROP TABLE "pages"
247
+ SQL (2.2ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
248
+ SQL (0.4ms)  SELECT name
249
+ FROM sqlite_master
250
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
251
+ 
252
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
253
+ Page Load (0.2ms) SELECT * FROM "pages" 
254
+ SQL (0.2ms) select sqlite_version(*)
255
+ SQL (0.3ms)  SELECT name
256
+ FROM sqlite_master
257
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
258
+ 
259
+ SQL (2.9ms) DROP TABLE "pages"
260
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
261
+ SQL (0.3ms)  SELECT name
262
+ FROM sqlite_master
263
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
264
+ 
265
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
266
+ Page Load (0.2ms) SELECT * FROM "pages" 
267
+ SQL (0.2ms) select sqlite_version(*)
268
+ SQL (0.4ms)  SELECT name
269
+ FROM sqlite_master
270
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
271
+ 
272
+ SQL (2.6ms) DROP TABLE "pages"
273
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
274
+ SQL (0.3ms)  SELECT name
275
+ FROM sqlite_master
276
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
277
+ 
278
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
279
+ Page Load (0.2ms) SELECT * FROM "pages" 
280
+ SQL (0.2ms) select sqlite_version(*)
281
+ SQL (0.3ms)  SELECT name
282
+ FROM sqlite_master
283
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
284
+ 
285
+ SQL (2.6ms) DROP TABLE "pages"
286
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
287
+ SQL (0.3ms)  SELECT name
288
+ FROM sqlite_master
289
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
290
+ 
291
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
292
+ Page Load (0.2ms) SELECT * FROM "pages" 
293
+ SQL (0.2ms) select sqlite_version(*)
294
+ SQL (0.4ms)  SELECT name
295
+ FROM sqlite_master
296
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
297
+ 
298
+ SQL (2.6ms) DROP TABLE "pages"
299
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
300
+ SQL (0.3ms)  SELECT name
301
+ FROM sqlite_master
302
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
303
+ 
304
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
305
+ Page Load (0.2ms) SELECT * FROM "pages" 
306
+ SQL (0.2ms) select sqlite_version(*)
307
+ SQL (0.3ms)  SELECT name
308
+ FROM sqlite_master
309
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
310
+ 
311
+ SQL (2.7ms) DROP TABLE "pages"
312
+ SQL (2.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
313
+ SQL (0.3ms)  SELECT name
314
+ FROM sqlite_master
315
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
316
+ 
317
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
318
+ Page Load (0.2ms) SELECT * FROM "pages" 
319
+ SQL (0.2ms) select sqlite_version(*)
320
+ SQL (0.3ms)  SELECT name
321
+ FROM sqlite_master
322
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
323
+ 
324
+ SQL (2.9ms) DROP TABLE "pages"
325
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
326
+ SQL (0.3ms)  SELECT name
327
+ FROM sqlite_master
328
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
329
+ 
330
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
331
+ Page Load (0.2ms) SELECT * FROM "pages" 
332
+ SQL (0.2ms) select sqlite_version(*)
333
+ SQL (0.3ms)  SELECT name
334
+ FROM sqlite_master
335
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
336
+ 
337
+ SQL (2.8ms) DROP TABLE "pages"
338
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
339
+ SQL (0.4ms)  SELECT name
340
+ FROM sqlite_master
341
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
342
+ 
343
+ SQL (0.4ms) SELECT version FROM "schema_migrations"
344
+ Page Load (0.2ms) SELECT * FROM "pages" 
345
+ SQL (0.2ms) select sqlite_version(*)
346
+ SQL (0.3ms)  SELECT name
347
+ FROM sqlite_master
348
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
349
+ 
350
+ SQL (2.7ms) DROP TABLE "pages"
351
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
352
+ SQL (0.4ms)  SELECT name
353
+ FROM sqlite_master
354
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
355
+ 
356
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
357
+ Page Load (0.2ms) SELECT * FROM "pages" 
358
+ SQL (0.2ms) select sqlite_version(*)
359
+ SQL (0.4ms)  SELECT name
360
+ FROM sqlite_master
361
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
362
+ 
363
+ SQL (2.5ms) DROP TABLE "pages"
364
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
365
+ SQL (0.2ms)  SELECT name
366
+ FROM sqlite_master
367
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
368
+ 
369
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
370
+ Page Load (0.2ms) SELECT * FROM "pages" 
371
+ SQL (0.2ms) select sqlite_version(*)
372
+ SQL (0.4ms)  SELECT name
373
+ FROM sqlite_master
374
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
375
+ 
376
+ SQL (2.5ms) DROP TABLE "pages"
377
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
378
+ SQL (0.3ms)  SELECT name
379
+ FROM sqlite_master
380
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
381
+ 
382
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
383
+ Page Load (0.2ms) SELECT * FROM "pages" 
384
+ SQL (0.2ms) select sqlite_version(*)
385
+ SQL (0.4ms)  SELECT name
386
+ FROM sqlite_master
387
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
388
+ 
389
+ SQL (2.7ms) DROP TABLE "pages"
390
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
391
+ SQL (0.3ms)  SELECT name
392
+ FROM sqlite_master
393
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
394
+ 
395
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
396
+ Page Load (0.2ms) SELECT * FROM "pages" 
397
+ SQL (0.2ms) select sqlite_version(*)
398
+ SQL (0.4ms)  SELECT name
399
+ FROM sqlite_master
400
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
401
+ 
402
+ SQL (2.7ms) DROP TABLE "pages"
403
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
404
+ SQL (0.3ms)  SELECT name
405
+ FROM sqlite_master
406
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
407
+ 
408
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
409
+ Page Load (0.2ms) SELECT * FROM "pages" 
410
+ SQL (0.2ms) select sqlite_version(*)
411
+ SQL (0.3ms)  SELECT name
412
+ FROM sqlite_master
413
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
414
+ 
415
+ SQL (3.1ms) DROP TABLE "pages"
416
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
417
+ SQL (0.2ms)  SELECT name
418
+ FROM sqlite_master
419
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
420
+ 
421
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
422
+ Page Load (0.2ms) SELECT * FROM "pages" 
423
+ SQL (0.2ms) select sqlite_version(*)
424
+ SQL (0.3ms)  SELECT name
425
+ FROM sqlite_master
426
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
427
+ 
428
+ SQL (3.1ms) DROP TABLE "pages"
429
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
430
+ SQL (0.3ms)  SELECT name
431
+ FROM sqlite_master
432
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
433
+ 
434
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
435
+ Page Load (0.2ms) SELECT * FROM "pages" 
436
+ SQL (0.2ms) select sqlite_version(*)
437
+ SQL (0.5ms)  SELECT name
438
+ FROM sqlite_master
439
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
440
+ 
441
+ SQL (2.7ms) DROP TABLE "pages"
442
+ SQL (2.1ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
443
+ SQL (0.3ms)  SELECT name
444
+ FROM sqlite_master
445
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
446
+ 
447
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
448
+ SQL (0.2ms) select sqlite_version(*)
449
+ SQL (0.3ms)  SELECT name
450
+ FROM sqlite_master
451
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
452
+ 
453
+ SQL (2.7ms) DROP TABLE "pages"
454
+ SQL (2.1ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
455
+ SQL (0.3ms)  SELECT name
456
+ FROM sqlite_master
457
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
458
+ 
459
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
460
+ Page Load (0.2ms) SELECT * FROM "pages" 
461
+ SQL (0.2ms) select sqlite_version(*)
462
+ SQL (0.4ms)  SELECT name
463
+ FROM sqlite_master
464
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
465
+ 
466
+ SQL (3.1ms) DROP TABLE "pages"
467
+ SQL (1.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
468
+ SQL (0.2ms)  SELECT name
469
+ FROM sqlite_master
470
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
471
+ 
472
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
473
+ Page Load (0.2ms) SELECT * FROM "pages" 
474
+ SQL (0.2ms) select sqlite_version(*)
475
+ SQL (0.4ms)  SELECT name
476
+ FROM sqlite_master
477
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
478
+ 
479
+ SQL (2.5ms) DROP TABLE "pages"
480
+ SQL (1.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
481
+ SQL (0.2ms)  SELECT name
482
+ FROM sqlite_master
483
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
484
+ 
485
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
486
+ Page Load (0.2ms) SELECT * FROM "pages" 
487
+ SQL (0.2ms) select sqlite_version(*)
488
+ SQL (0.4ms)  SELECT name
489
+ FROM sqlite_master
490
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
491
+ 
492
+ SQL (2.6ms) DROP TABLE "pages"
493
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
494
+ SQL (0.2ms)  SELECT name
495
+ FROM sqlite_master
496
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
497
+ 
498
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
499
+ Page Load (0.2ms) SELECT * FROM "pages" 
500
+ SQL (0.2ms) select sqlite_version(*)
501
+ SQL (0.6ms)  SELECT name
502
+ FROM sqlite_master
503
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
504
+ 
505
+ SQL (2.7ms) DROP TABLE "pages"
506
+ SQL (1.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
507
+ SQL (0.2ms)  SELECT name
508
+ FROM sqlite_master
509
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
510
+ 
511
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
512
+ Page Load (0.2ms) SELECT * FROM "pages" 
513
+ SQL (0.2ms) select sqlite_version(*)
514
+ SQL (0.3ms)  SELECT name
515
+ FROM sqlite_master
516
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
517
+ 
518
+ SQL (2.6ms) DROP TABLE "pages"
519
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
520
+ SQL (0.3ms)  SELECT name
521
+ FROM sqlite_master
522
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
523
+ 
524
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
525
+ Page Load (0.2ms) SELECT * FROM "pages" 
526
+ SQL (0.2ms) select sqlite_version(*)
527
+ SQL (0.3ms)  SELECT name
528
+ FROM sqlite_master
529
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
530
+ 
531
+ SQL (3.2ms) DROP TABLE "pages"
532
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
533
+ SQL (0.4ms)  SELECT name
534
+ FROM sqlite_master
535
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
536
+ 
537
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
538
+ Page Load (0.2ms) SELECT * FROM "pages" 
539
+ SQL (0.2ms) select sqlite_version(*)
540
+ SQL (0.4ms)  SELECT name
541
+ FROM sqlite_master
542
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
543
+ 
544
+ SQL (2.7ms) DROP TABLE "pages"
545
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
546
+ SQL (0.3ms)  SELECT name
547
+ FROM sqlite_master
548
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
549
+ 
550
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
551
+ Page Load (0.2ms) SELECT * FROM "pages" 
552
+ SQL (0.2ms) select sqlite_version(*)
553
+ SQL (0.4ms)  SELECT name
554
+ FROM sqlite_master
555
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
556
+ 
557
+ SQL (2.5ms) DROP TABLE "pages"
558
+ SQL (1.8ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
559
+ SQL (0.3ms)  SELECT name
560
+ FROM sqlite_master
561
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
562
+ 
563
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
564
+ Page Load (0.2ms) SELECT * FROM "pages" 
565
+ SQL (0.2ms) select sqlite_version(*)
566
+ SQL (0.4ms)  SELECT name
567
+ FROM sqlite_master
568
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
569
+ 
570
+ SQL (2.6ms) DROP TABLE "pages"
571
+ SQL (1.8ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
572
+ SQL (0.3ms)  SELECT name
573
+ FROM sqlite_master
574
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
575
+ 
576
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
577
+ Page Load (0.2ms) SELECT * FROM "pages" 
578
+ SQL (0.2ms) select sqlite_version(*)
579
+ SQL (0.4ms)  SELECT name
580
+ FROM sqlite_master
581
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
582
+ 
583
+ SQL (2.8ms) DROP TABLE "pages"
584
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
585
+ SQL (0.4ms)  SELECT name
586
+ FROM sqlite_master
587
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
588
+ 
589
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
590
+ Page Load (0.9ms) SELECT * FROM "pages" 
591
+ SQL (0.2ms) select sqlite_version(*)
592
+ SQL (0.4ms)  SELECT name
593
+ FROM sqlite_master
594
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
595
+ 
596
+ SQL (1.9ms) DROP TABLE "pages"
597
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
598
+ SQL (0.4ms)  SELECT name
599
+ FROM sqlite_master
600
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
601
+ 
602
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
603
+ Page Load (0.2ms) SELECT * FROM "pages" 
604
+ SQL (0.2ms) select sqlite_version(*)
605
+ SQL (0.4ms)  SELECT name
606
+ FROM sqlite_master
607
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
608
+ 
609
+ SQL (2.4ms) DROP TABLE "pages"
610
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
611
+ SQL (0.2ms)  SELECT name
612
+ FROM sqlite_master
613
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
614
+ 
615
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
616
+ Page Load (0.2ms) SELECT * FROM "pages" 
617
+ SQL (0.2ms) select sqlite_version(*)
618
+ SQL (0.4ms)  SELECT name
619
+ FROM sqlite_master
620
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
621
+ 
622
+ SQL (2.9ms) DROP TABLE "pages"
623
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
624
+ SQL (0.3ms)  SELECT name
625
+ FROM sqlite_master
626
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
627
+ 
628
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
629
+ Page Load (0.2ms) SELECT * FROM "pages" 
630
+ SQL (0.2ms) select sqlite_version(*)
631
+ SQL (0.4ms)  SELECT name
632
+ FROM sqlite_master
633
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
634
+ 
635
+ SQL (2.3ms) DROP TABLE "pages"
636
+ SQL (1.2ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
637
+ SQL (0.2ms)  SELECT name
638
+ FROM sqlite_master
639
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
640
+ 
641
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
642
+ Page Load (0.2ms) SELECT * FROM "pages" 
643
+ SQL (0.2ms) select sqlite_version(*)
644
+ SQL (0.3ms)  SELECT name
645
+ FROM sqlite_master
646
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
647
+ 
648
+ SQL (2.4ms) DROP TABLE "pages"
649
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
650
+ SQL (0.2ms)  SELECT name
651
+ FROM sqlite_master
652
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
653
+ 
654
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
655
+ Page Load (0.2ms) SELECT * FROM "pages" 
656
+ SQL (0.2ms) select sqlite_version(*)
657
+ SQL (0.4ms)  SELECT name
658
+ FROM sqlite_master
659
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
660
+ 
661
+ SQL (3.1ms) DROP TABLE "pages"
662
+ SQL (1.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
663
+ SQL (0.3ms)  SELECT name
664
+ FROM sqlite_master
665
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
666
+ 
667
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
668
+ Page Load (0.2ms) SELECT * FROM "pages" 
669
+ SQL (0.2ms) select sqlite_version(*)
670
+ SQL (0.4ms)  SELECT name
671
+ FROM sqlite_master
672
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
673
+ 
674
+ SQL (2.7ms) DROP TABLE "pages"
675
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
676
+ SQL (0.3ms)  SELECT name
677
+ FROM sqlite_master
678
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
679
+ 
680
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
681
+ Page Load (0.2ms) SELECT * FROM "pages" 
682
+ SQL (0.3ms) select sqlite_version(*)
683
+ SQL (0.4ms)  SELECT name
684
+ FROM sqlite_master
685
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
686
+ 
687
+ SQL (2.7ms) DROP TABLE "pages"
688
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
689
+ SQL (0.3ms)  SELECT name
690
+ FROM sqlite_master
691
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
692
+ 
693
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
694
+ Page Load (0.2ms) SELECT * FROM "pages" 
695
+ SQL (0.2ms) select sqlite_version(*)
696
+ SQL (1.6ms)  SELECT name
697
+ FROM sqlite_master
698
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
699
+ 
700
+ SQL (2.8ms) DROP TABLE "pages"
701
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
702
+ SQL (0.3ms)  SELECT name
703
+ FROM sqlite_master
704
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
705
+ 
706
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
707
+ SQL (0.2ms) select sqlite_version(*)
708
+ SQL (0.4ms)  SELECT name
709
+ FROM sqlite_master
710
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
711
+ 
712
+ SQL (2.3ms) DROP TABLE "pages"
713
+ SQL (1.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
714
+ SQL (0.2ms)  SELECT name
715
+ FROM sqlite_master
716
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
717
+ 
718
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
719
+ Page Load (0.2ms) SELECT * FROM "pages" 
720
+ SQL (0.2ms) select sqlite_version(*)
721
+ SQL (0.4ms)  SELECT name
722
+ FROM sqlite_master
723
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
724
+ 
725
+ SQL (2.7ms) DROP TABLE "pages"
726
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
727
+ SQL (0.2ms)  SELECT name
728
+ FROM sqlite_master
729
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
730
+ 
731
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
732
+ Page Load (0.2ms) SELECT * FROM "pages" 
733
+ SQL (0.2ms) select sqlite_version(*)
734
+ SQL (0.4ms)  SELECT name
735
+ FROM sqlite_master
736
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
737
+ 
738
+ SQL (2.3ms) DROP TABLE "pages"
739
+ SQL (1.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
740
+ SQL (0.2ms)  SELECT name
741
+ FROM sqlite_master
742
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
743
+ 
744
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
745
+ Page Load (0.2ms) SELECT * FROM "pages" 
746
+ SQL (0.2ms) select sqlite_version(*)
747
+ SQL (0.4ms)  SELECT name
748
+ FROM sqlite_master
749
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
750
+ 
751
+ SQL (2.9ms) DROP TABLE "pages"
752
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
753
+ SQL (0.3ms)  SELECT name
754
+ FROM sqlite_master
755
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
756
+ 
757
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
758
+ SQL (0.2ms) select sqlite_version(*)
759
+ SQL (0.4ms)  SELECT name
760
+ FROM sqlite_master
761
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
762
+ 
763
+ SQL (2.6ms) DROP TABLE "pages"
764
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
765
+ SQL (0.3ms)  SELECT name
766
+ FROM sqlite_master
767
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
768
+ 
769
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
770
+ Page Load (0.2ms) SELECT * FROM "pages" 
771
+ SQL (0.2ms) select sqlite_version(*)
772
+ SQL (0.3ms)  SELECT name
773
+ FROM sqlite_master
774
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
775
+ 
776
+ SQL (3.5ms) DROP TABLE "pages"
777
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
778
+ SQL (0.2ms)  SELECT name
779
+ FROM sqlite_master
780
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
781
+ 
782
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
783
+ Page Load (0.2ms) SELECT * FROM "pages" 
784
+ SQL (0.2ms) select sqlite_version(*)
785
+ SQL (0.4ms)  SELECT name
786
+ FROM sqlite_master
787
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
788
+ 
789
+ SQL (2.6ms) DROP TABLE "pages"
790
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
791
+ SQL (0.3ms)  SELECT name
792
+ FROM sqlite_master
793
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
794
+ 
795
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
796
+ Page Load (0.2ms) SELECT * FROM "pages" 
797
+ SQL (0.2ms) select sqlite_version(*)
798
+ SQL (0.4ms)  SELECT name
799
+ FROM sqlite_master
800
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
801
+ 
802
+ SQL (2.5ms) DROP TABLE "pages"
803
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
804
+ SQL (0.3ms)  SELECT name
805
+ FROM sqlite_master
806
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
807
+ 
808
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
809
+ Page Load (0.2ms) SELECT * FROM "pages" 
810
+ SQL (0.2ms) select sqlite_version(*)
811
+ SQL (0.4ms)  SELECT name
812
+ FROM sqlite_master
813
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
814
+ 
815
+ SQL (2.4ms) DROP TABLE "pages"
816
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
817
+ SQL (0.3ms)  SELECT name
818
+ FROM sqlite_master
819
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
820
+ 
821
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
822
+ Page Load (0.2ms) SELECT * FROM "pages" 
823
+ SQL (0.2ms) select sqlite_version(*)
824
+ SQL (0.4ms)  SELECT name
825
+ FROM sqlite_master
826
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
827
+ 
828
+ SQL (2.6ms) DROP TABLE "pages"
829
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
830
+ SQL (0.3ms)  SELECT name
831
+ FROM sqlite_master
832
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
833
+ 
834
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
835
+ Page Load (0.2ms) SELECT * FROM "pages" 
836
+ SQL (0.2ms) select sqlite_version(*)
837
+ SQL (0.4ms)  SELECT name
838
+ FROM sqlite_master
839
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
840
+ 
841
+ SQL (2.5ms) DROP TABLE "pages"
842
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
843
+ SQL (0.2ms)  SELECT name
844
+ FROM sqlite_master
845
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
846
+ 
847
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
848
+ Page Load (0.2ms) SELECT * FROM "pages" 
849
+ SQL (0.2ms) select sqlite_version(*)
850
+ SQL (0.3ms)  SELECT name
851
+ FROM sqlite_master
852
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
853
+ 
854
+ SQL (2.5ms) DROP TABLE "pages"
855
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
856
+ SQL (0.3ms)  SELECT name
857
+ FROM sqlite_master
858
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
859
+ 
860
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
861
+ Page Load (0.2ms) SELECT * FROM "pages" 
862
+ SQL (0.2ms) select sqlite_version(*)
863
+ SQL (0.4ms)  SELECT name
864
+ FROM sqlite_master
865
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
866
+ 
867
+ SQL (2.0ms) DROP TABLE "pages"
868
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
869
+ SQL (1.2ms)  SELECT name
870
+ FROM sqlite_master
871
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
872
+ 
873
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
874
+ Page Load (0.2ms) SELECT * FROM "pages" 
875
+ SQL (0.2ms) select sqlite_version(*)
876
+ SQL (0.3ms)  SELECT name
877
+ FROM sqlite_master
878
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
879
+ 
880
+ SQL (2.5ms) DROP TABLE "pages"
881
+ SQL (1.8ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
882
+ SQL (0.3ms)  SELECT name
883
+ FROM sqlite_master
884
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
885
+ 
886
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
887
+ Page Load (0.2ms) SELECT * FROM "pages" 
888
+ SQL (0.2ms) select sqlite_version(*)
889
+ SQL (0.4ms)  SELECT name
890
+ FROM sqlite_master
891
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
892
+ 
893
+ SQL (2.7ms) DROP TABLE "pages"
894
+ SQL (1.8ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
895
+ SQL (0.3ms)  SELECT name
896
+ FROM sqlite_master
897
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
898
+ 
899
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
900
+ Page Load (0.2ms) SELECT * FROM "pages" 
901
+ SQL (0.2ms) select sqlite_version(*)
902
+ SQL (0.4ms)  SELECT name
903
+ FROM sqlite_master
904
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
905
+ 
906
+ SQL (2.3ms) DROP TABLE "pages"
907
+ SQL (1.1ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
908
+ SQL (0.2ms)  SELECT name
909
+ FROM sqlite_master
910
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
911
+ 
912
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
913
+ Page Load (0.2ms) SELECT * FROM "pages" 
914
+ SQL (0.3ms) select sqlite_version(*)
915
+ SQL (0.4ms)  SELECT name
916
+ FROM sqlite_master
917
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
918
+ 
919
+ SQL (2.4ms) DROP TABLE "pages"
920
+ SQL (1.1ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
921
+ SQL (0.3ms)  SELECT name
922
+ FROM sqlite_master
923
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
924
+ 
925
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
926
+ Page Load (0.2ms) SELECT * FROM "pages" 
927
+ SQL (0.2ms) select sqlite_version(*)
928
+ SQL (0.4ms)  SELECT name
929
+ FROM sqlite_master
930
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
931
+ 
932
+ SQL (3.2ms) DROP TABLE "pages"
933
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
934
+ SQL (0.3ms)  SELECT name
935
+ FROM sqlite_master
936
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
937
+ 
938
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
939
+ Page Load (3.7ms) SELECT * FROM "pages" 
940
+ SQL (0.2ms) select sqlite_version(*)
941
+ SQL (0.4ms)  SELECT name
942
+ FROM sqlite_master
943
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
944
+ 
945
+ SQL (2.3ms) DROP TABLE "pages"
946
+ SQL (1.1ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
947
+ SQL (0.3ms)  SELECT name
948
+ FROM sqlite_master
949
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
950
+ 
951
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
952
+ Page Load (0.2ms) SELECT * FROM "pages" 
953
+ SQL (0.2ms) select sqlite_version(*)
954
+ SQL (0.4ms)  SELECT name
955
+ FROM sqlite_master
956
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
957
+ 
958
+ SQL (2.8ms) DROP TABLE "pages"
959
+ SQL (1.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
960
+ SQL (0.3ms)  SELECT name
961
+ FROM sqlite_master
962
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
963
+ 
964
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
965
+ SQL (0.2ms) select sqlite_version(*)
966
+ SQL (0.4ms)  SELECT name
967
+ FROM sqlite_master
968
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
969
+ 
970
+ SQL (2.6ms) DROP TABLE "pages"
971
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
972
+ SQL (0.3ms)  SELECT name
973
+ FROM sqlite_master
974
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
975
+ 
976
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
977
+ Page Load (0.2ms) SELECT * FROM "pages" 
978
+ SQL (0.2ms) select sqlite_version(*)
979
+ SQL (0.5ms)  SELECT name
980
+ FROM sqlite_master
981
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
982
+ 
983
+ SQL (2.3ms) DROP TABLE "pages"
984
+ SQL (1.2ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
985
+ SQL (0.2ms)  SELECT name
986
+ FROM sqlite_master
987
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
988
+ 
989
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
990
+ SQL (0.2ms) select sqlite_version(*)
991
+ SQL (0.3ms)  SELECT name
992
+ FROM sqlite_master
993
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
994
+ 
995
+ SQL (2.6ms) DROP TABLE "pages"
996
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
997
+ SQL (1.1ms)  SELECT name
998
+ FROM sqlite_master
999
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1000
+ 
1001
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1002
+ Page Load (0.2ms) SELECT * FROM "pages" 
1003
+ SQL (0.2ms) select sqlite_version(*)
1004
+ SQL (0.4ms)  SELECT name
1005
+ FROM sqlite_master
1006
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1007
+ 
1008
+ SQL (2.8ms) DROP TABLE "pages"
1009
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1010
+ SQL (0.2ms)  SELECT name
1011
+ FROM sqlite_master
1012
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1013
+ 
1014
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1015
+ SQL (0.2ms) select sqlite_version(*)
1016
+ SQL (0.3ms)  SELECT name
1017
+ FROM sqlite_master
1018
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1019
+ 
1020
+ SQL (2.9ms) DROP TABLE "pages"
1021
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1022
+ SQL (0.3ms)  SELECT name
1023
+ FROM sqlite_master
1024
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1025
+ 
1026
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1027
+ SQL (0.2ms) select sqlite_version(*)
1028
+ SQL (0.4ms)  SELECT name
1029
+ FROM sqlite_master
1030
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1031
+ 
1032
+ SQL (3.0ms) DROP TABLE "pages"
1033
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1034
+ SQL (0.2ms)  SELECT name
1035
+ FROM sqlite_master
1036
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1037
+ 
1038
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1039
+ Page Load (0.2ms) SELECT * FROM "pages" 
1040
+ SQL (0.2ms) select sqlite_version(*)
1041
+ SQL (0.4ms)  SELECT name
1042
+ FROM sqlite_master
1043
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1044
+ 
1045
+ SQL (2.3ms) DROP TABLE "pages"
1046
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1047
+ SQL (0.3ms)  SELECT name
1048
+ FROM sqlite_master
1049
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1050
+ 
1051
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1052
+ Page Load (0.3ms) SELECT * FROM "pages" 
1053
+ SQL (0.2ms) select sqlite_version(*)
1054
+ SQL (0.5ms)  SELECT name
1055
+ FROM sqlite_master
1056
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1057
+ 
1058
+ SQL (2.6ms) DROP TABLE "pages"
1059
+ SQL (1.8ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1060
+ SQL (0.4ms)  SELECT name
1061
+ FROM sqlite_master
1062
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1063
+ 
1064
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1065
+ Page Load (0.2ms) SELECT * FROM "pages" 
1066
+ SQL (0.2ms) select sqlite_version(*)
1067
+ SQL (0.4ms)  SELECT name
1068
+ FROM sqlite_master
1069
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1070
+ 
1071
+ SQL (2.2ms) DROP TABLE "pages"
1072
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1073
+ SQL (0.3ms)  SELECT name
1074
+ FROM sqlite_master
1075
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1076
+ 
1077
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1078
+ Page Load (0.5ms) SELECT * FROM "pages" 
1079
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2009-12-30 09:49:52', 'Harry and the Hendersons', '2009-12-30 09:49:52', '', 'f', '', 'f', '', 'f', NULL, NULL)
1080
+ Page Load (0.4ms) SELECT * FROM "pages" 
1081
+ Page Create (0.5ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 09:49:52', 'Mr. MacAllister''s Christmas', '2009-12-30 09:49:52', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1082
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1083
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1084
+ Page Update (0.3ms) UPDATE "pages" SET "updated_at" = '2009-12-30 09:49:52', "content" = 'I was Home Alone' WHERE "id" = 1
1085
+ Page Load (0.5ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1086
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1087
+ SQL (0.2ms) select sqlite_version(*)
1088
+ SQL (0.4ms)  SELECT name
1089
+ FROM sqlite_master
1090
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1091
+ 
1092
+ SQL (2.6ms) DROP TABLE "pages"
1093
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1094
+ SQL (0.3ms)  SELECT name
1095
+ FROM sqlite_master
1096
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1097
+ 
1098
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1099
+ Page Load (0.2ms) SELECT * FROM "pages" 
1100
+ Page Load (0.2ms) SELECT * FROM "pages" 
1101
+ Page Create (1.1ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2009-12-30 09:52:46', 'Harry and the Hendersons', '2009-12-30 09:52:46', '', 'f', '', 'f', '', 'f', NULL, NULL)
1102
+ Page Load (0.4ms) SELECT * FROM "pages" 
1103
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 09:52:46', 'Mr. MacAllister''s Christmas', '2009-12-30 09:52:46', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1104
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1105
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1106
+ Page Update (1.1ms) UPDATE "pages" SET "updated_at" = '2009-12-30 09:52:46', "content" = 'I was Home Alone' WHERE "id" = 1
1107
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1108
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1109
+ SQL (0.2ms) select sqlite_version(*)
1110
+ SQL (0.3ms)  SELECT name
1111
+ FROM sqlite_master
1112
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1113
+ 
1114
+ SQL (2.6ms) DROP TABLE "pages"
1115
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1116
+ SQL (0.2ms)  SELECT name
1117
+ FROM sqlite_master
1118
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1119
+ 
1120
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1121
+ Page Load (0.3ms) SELECT * FROM "pages" 
1122
+ Page Load (0.4ms) SELECT * FROM "pages" 
1123
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2009-12-30 09:53:02', 'Harry and the Hendersons', '2009-12-30 09:53:02', '', 'f', '', 'f', '', 'f', NULL, NULL)
1124
+ Page Load (0.3ms) SELECT * FROM "pages" 
1125
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 09:53:02', 'Harry and the Hendersons', '2009-12-30 09:53:02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1126
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1127
+ Page Load (0.4ms) SELECT * FROM "pages" 
1128
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 09:53:02', 'Mr. MacAllister''s Christmas', '2009-12-30 09:53:02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1129
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1130
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1131
+ Page Update (0.2ms) UPDATE "pages" SET "updated_at" = '2009-12-30 09:53:02', "content" = 'I was Home Alone' WHERE "id" = 1
1132
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1133
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1134
+ SQL (0.2ms) select sqlite_version(*)
1135
+ SQL (0.4ms)  SELECT name
1136
+ FROM sqlite_master
1137
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1138
+ 
1139
+ SQL (2.7ms) DROP TABLE "pages"
1140
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1141
+ SQL (0.3ms)  SELECT name
1142
+ FROM sqlite_master
1143
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1144
+ 
1145
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1146
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 09:53:26', 'Harry and the Hendersons', '2009-12-30 09:53:26', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1147
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1148
+ Page Load (0.5ms) SELECT * FROM "pages" 
1149
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1150
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1151
+ Page Update (0.2ms) UPDATE "pages" SET "updated_at" = '2009-12-30 09:53:26', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "url" = '', "canonical" = '', "noindex" = 'f', "description" = '', "enable_canonical" = 'f' WHERE "id" = 1
1152
+ SQL (0.2ms) select sqlite_version(*)
1153
+ SQL (0.4ms)  SELECT name
1154
+ FROM sqlite_master
1155
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1156
+ 
1157
+ SQL (3.5ms) DROP TABLE "pages"
1158
+ SQL (4.8ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1159
+ SQL (0.3ms)  SELECT name
1160
+ FROM sqlite_master
1161
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1162
+ 
1163
+ SQL (0.3ms) SELECT version FROM "schema_migrations"
1164
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 09:53:47', 'Harry and the Hendersons', '2009-12-30 09:53:47', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1165
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1166
+ Page Load (0.4ms) SELECT * FROM "pages" 
1167
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1168
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1169
+ Page Update (0.2ms) UPDATE "pages" SET "updated_at" = '2009-12-30 09:53:47', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "url" = '', "canonical" = '', "noindex" = 'f', "description" = '', "enable_canonical" = 'f' WHERE "id" = 1
1170
+ Page Load (2.5ms) SELECT * FROM "pages" 
1171
+ SQL (0.2ms) select sqlite_version(*)
1172
+ SQL (0.4ms)  SELECT name
1173
+ FROM sqlite_master
1174
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1175
+ 
1176
+ SQL (2.9ms) DROP TABLE "pages"
1177
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1178
+ SQL (0.4ms)  SELECT name
1179
+ FROM sqlite_master
1180
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1181
+ 
1182
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1183
+ Page Load (0.2ms) SELECT * FROM "pages" 
1184
+ Page Load (0.3ms) SELECT * FROM "pages" 
1185
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2009-12-30 09:54:51', 'Harry and the Hendersons', '2009-12-30 09:54:51', '', 'f', '', 'f', '', 'f', NULL, NULL)
1186
+ Page Load (0.4ms) SELECT * FROM "pages" 
1187
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 09:54:51', 'Harry and the Hendersons', '2009-12-30 09:54:51', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1188
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1189
+ Page Load (0.7ms) SELECT * FROM "pages" 
1190
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1191
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1192
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2009-12-30 09:54:52', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "url" = '', "canonical" = '', "noindex" = 'f', "description" = '', "enable_canonical" = 'f' WHERE "id" = 1
1193
+ Page Load (0.4ms) SELECT * FROM "pages" 
1194
+ Page Create (0.5ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 09:54:52', 'The Departed', '2009-12-30 09:54:52', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1195
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1196
+ Page Load (0.4ms) SELECT * FROM "pages" 
1197
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1198
+ Page Destroy (0.4ms) DELETE FROM "pages" WHERE "id" = 1
1199
+ Page Load (0.2ms) SELECT * FROM "pages" 
1200
+ Page Create (0.5ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 09:54:52', 'Mr. MacAllister''s Christmas', '2009-12-30 09:54:52', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1201
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1202
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1203
+ Page Update (0.2ms) UPDATE "pages" SET "updated_at" = '2009-12-30 09:54:52', "content" = 'I was Home Alone' WHERE "id" = 1
1204
+ Page Load (0.6ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1205
+ Page Load (0.6ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1206
+ SQL (0.2ms) select sqlite_version(*)
1207
+ SQL (0.3ms)  SELECT name
1208
+ FROM sqlite_master
1209
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1210
+ 
1211
+ SQL (1.6ms) DROP TABLE "pages"
1212
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1213
+ SQL (0.7ms)  SELECT name
1214
+ FROM sqlite_master
1215
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1216
+ 
1217
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1218
+ Page Load (0.2ms) SELECT * FROM "pages" 
1219
+ SQL (0.2ms) select sqlite_version(*)
1220
+ SQL (0.4ms)  SELECT name
1221
+ FROM sqlite_master
1222
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1223
+ 
1224
+ SQL (2.6ms) DROP TABLE "pages"
1225
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1226
+ SQL (0.8ms)  SELECT name
1227
+ FROM sqlite_master
1228
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1229
+ 
1230
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1231
+ Page Load (0.2ms) SELECT * FROM "pages" 
1232
+ SQL (0.2ms) select sqlite_version(*)
1233
+ SQL (0.4ms)  SELECT name
1234
+ FROM sqlite_master
1235
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1236
+ 
1237
+ SQL (2.4ms) DROP TABLE "pages"
1238
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1239
+ SQL (0.2ms)  SELECT name
1240
+ FROM sqlite_master
1241
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1242
+ 
1243
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1244
+ Page Load (0.9ms) SELECT * FROM "pages" 
1245
+ Page Load (0.2ms) SELECT * FROM "pages" 
1246
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2009-12-30 10:00:48', 'Harry and the Hendersons', '2009-12-30 10:00:48', '', 'f', '', 'f', '', 'f', NULL, NULL)
1247
+ Page Load (0.3ms) SELECT * FROM "pages" 
1248
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 10:00:48', 'Harry and the Hendersons', '2009-12-30 10:00:48', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1249
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1250
+ Page Load (0.9ms) SELECT * FROM "pages" 
1251
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1252
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1253
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2009-12-30 10:00:48', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "url" = '', "canonical" = '', "noindex" = 'f', "description" = '', "enable_canonical" = 'f' WHERE "id" = 1
1254
+ Page Load (0.3ms) SELECT * FROM "pages" 
1255
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 10:00:48', 'The Departed', '2009-12-30 10:00:48', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1256
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1257
+ Page Load (0.3ms) SELECT * FROM "pages" 
1258
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1259
+ Page Destroy (0.1ms) DELETE FROM "pages" WHERE "id" = 1
1260
+ Page Load (0.2ms) SELECT * FROM "pages" 
1261
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 10:00:48', 'Mr. MacAllister''s Christmas', '2009-12-30 10:00:48', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1262
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1263
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1264
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2009-12-30 10:00:48', "content" = 'I was Home Alone' WHERE "id" = 1
1265
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1266
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1267
+ SQL (0.2ms) select sqlite_version(*)
1268
+ SQL (0.4ms)  SELECT name
1269
+ FROM sqlite_master
1270
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1271
+ 
1272
+ SQL (2.4ms) DROP TABLE "pages"
1273
+ SQL (1.8ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1274
+ SQL (0.8ms)  SELECT name
1275
+ FROM sqlite_master
1276
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1277
+ 
1278
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1279
+ Page Load (0.2ms) SELECT * FROM "pages" 
1280
+ SQL (0.2ms) select sqlite_version(*)
1281
+ SQL (0.4ms)  SELECT name
1282
+ FROM sqlite_master
1283
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1284
+ 
1285
+ SQL (3.2ms) DROP TABLE "pages"
1286
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1287
+ SQL (0.3ms)  SELECT name
1288
+ FROM sqlite_master
1289
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1290
+ 
1291
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1292
+ Page Load (0.2ms) SELECT * FROM "pages" 
1293
+ Page Load (0.2ms) SELECT * FROM "pages" 
1294
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 11:47:35', 'Harry and the Hendersons', '2009-12-30 11:47:35', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1295
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1296
+ Page Load (0.3ms) SELECT * FROM "pages" 
1297
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 11:47:35', 'The Departed', '2009-12-30 11:47:35', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1298
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1299
+ Page Load (0.3ms) SELECT * FROM "pages" 
1300
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 11:47:35', 'Mr. MacAllister''s Christmas', '2009-12-30 11:47:35', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1301
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1302
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1303
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2009-12-30 11:47:35', "content" = 'I was Home Alone' WHERE "id" = 1
1304
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1305
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1306
+ SQL (0.2ms) select sqlite_version(*)
1307
+ SQL (0.3ms)  SELECT name
1308
+ FROM sqlite_master
1309
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1310
+ 
1311
+ SQL (1.5ms) DROP TABLE "pages"
1312
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1313
+ SQL (0.2ms)  SELECT name
1314
+ FROM sqlite_master
1315
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1316
+ 
1317
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1318
+ Page Load (0.2ms) SELECT * FROM "pages" 
1319
+ Page Load (0.2ms) SELECT * FROM "pages" 
1320
+ Page Create (1.0ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 11:48:44', 'Harry and the Hendersons', '2009-12-30 11:48:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1321
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1322
+ Page Load (0.4ms) SELECT * FROM "pages" 
1323
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 11:48:44', 'The Departed', '2009-12-30 11:48:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1324
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1325
+ Page Load (0.3ms) SELECT * FROM "pages" 
1326
+ SQL (0.2ms) select sqlite_version(*)
1327
+ SQL (0.4ms)  SELECT name
1328
+ FROM sqlite_master
1329
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1330
+ 
1331
+ SQL (1.6ms) DROP TABLE "pages"
1332
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1333
+ SQL (0.2ms)  SELECT name
1334
+ FROM sqlite_master
1335
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1336
+ 
1337
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1338
+ Page Load (0.7ms) SELECT * FROM "pages" 
1339
+ Page Load (0.2ms) SELECT * FROM "pages" 
1340
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2009-12-30 11:51:10', 'Harry and the Hendersons', '2009-12-30 11:51:10', '', 'f', '', 'f', '', 'f', NULL, NULL)
1341
+ Page Load (2.2ms) SELECT * FROM "pages" 
1342
+ Page Create (0.8ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 11:51:10', 'Harry and the Hendersons', '2009-12-30 11:51:10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1343
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1344
+ Page Load (0.3ms) SELECT * FROM "pages" 
1345
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1346
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1347
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2009-12-30 11:51:10', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "url" = '', "canonical" = '', "noindex" = 'f', "description" = '', "enable_canonical" = 'f' WHERE "id" = 1
1348
+ Page Load (0.3ms) SELECT * FROM "pages" 
1349
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2009-12-30 11:51:10', 'The Departed', '2009-12-30 11:51:10', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1350
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1351
+ Page Load (0.3ms) SELECT * FROM "pages" 
1352
+ Page Load (0.5ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1353
+ Page Destroy (0.1ms) DELETE FROM "pages" WHERE "id" = 1
1354
+ Page Load (0.2ms) SELECT * FROM "pages" 
1355
+ SQL (0.7ms) select sqlite_version(*)
1356
+ SQL (0.3ms)  SELECT name
1357
+ FROM sqlite_master
1358
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1359
+ 
1360
+ SQL (3.1ms) DROP TABLE "pages"
1361
+ SQL (2.2ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1362
+ SQL (0.2ms)  SELECT name
1363
+ FROM sqlite_master
1364
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1365
+ 
1366
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1367
+ Page Load (0.2ms) SELECT * FROM "pages" 
1368
+ SQL (0.2ms) select sqlite_version(*)
1369
+ SQL (0.4ms)  SELECT name
1370
+ FROM sqlite_master
1371
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1372
+ 
1373
+ SQL (2.0ms) DROP TABLE "pages"
1374
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1375
+ SQL (0.3ms)  SELECT name
1376
+ FROM sqlite_master
1377
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1378
+ 
1379
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1380
+ Page Load (0.2ms) SELECT * FROM "pages" 
1381
+ SQL (0.2ms)  SELECT name
1382
+ FROM sqlite_master
1383
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1384
+ 
1385
+ SQL (0.2ms) select sqlite_version(*)
1386
+ SQL (0.3ms)  SELECT name
1387
+ FROM sqlite_master
1388
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1389
+ 
1390
+ SQL (2.6ms) DROP TABLE "pages"
1391
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1392
+ SQL (0.3ms)  SELECT name
1393
+ FROM sqlite_master
1394
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1395
+ 
1396
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1397
+ Page Load (0.2ms) SELECT * FROM "pages" 
1398
+ SQL (0.2ms) select sqlite_version(*)
1399
+ SQL (0.4ms)  SELECT name
1400
+ FROM sqlite_master
1401
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1402
+ 
1403
+ SQL (1.1ms) DROP TABLE "pages"
1404
+ SQL (1.1ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1405
+ SQL (0.2ms)  SELECT name
1406
+ FROM sqlite_master
1407
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1408
+ 
1409
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1410
+ Page Load (0.2ms) SELECT * FROM "pages" 
1411
+ SQL (0.2ms) select sqlite_version(*)
1412
+ SQL (0.4ms)  SELECT name
1413
+ FROM sqlite_master
1414
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1415
+ 
1416
+ SQL (2.0ms) DROP TABLE "pages"
1417
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1418
+ SQL (0.2ms)  SELECT name
1419
+ FROM sqlite_master
1420
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1421
+ 
1422
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1423
+ Page Load (0.4ms) SELECT * FROM "pages" 
1424
+ SQL (0.2ms) select sqlite_version(*)
1425
+ SQL (0.4ms)  SELECT name
1426
+ FROM sqlite_master
1427
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1428
+ 
1429
+ SQL (2.3ms) DROP TABLE "pages"
1430
+ SQL (1.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1431
+ SQL (0.2ms)  SELECT name
1432
+ FROM sqlite_master
1433
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1434
+ 
1435
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1436
+ Page Load (0.2ms) SELECT * FROM "pages" 
1437
+ SQL (0.2ms) select sqlite_version(*)
1438
+ SQL (0.4ms)  SELECT name
1439
+ FROM sqlite_master
1440
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1441
+ 
1442
+ SQL (3.4ms) DROP TABLE "pages"
1443
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1444
+ SQL (0.3ms)  SELECT name
1445
+ FROM sqlite_master
1446
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1447
+ 
1448
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1449
+ Page Load (0.2ms) SELECT * FROM "pages" 
1450
+ SQL (0.2ms) select sqlite_version(*)
1451
+ SQL (0.3ms)  SELECT name
1452
+ FROM sqlite_master
1453
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1454
+ 
1455
+ SQL (2.3ms) DROP TABLE "pages"
1456
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1457
+ SQL (0.2ms)  SELECT name
1458
+ FROM sqlite_master
1459
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1460
+ 
1461
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1462
+ Page Load (0.2ms) SELECT * FROM "pages" 
1463
+ SQL (0.2ms) select sqlite_version(*)
1464
+ SQL (0.5ms)  SELECT name
1465
+ FROM sqlite_master
1466
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1467
+ 
1468
+ SQL (2.2ms) DROP TABLE "pages"
1469
+ SQL (1.8ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1470
+ SQL (0.3ms)  SELECT name
1471
+ FROM sqlite_master
1472
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1473
+ 
1474
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1475
+ Page Load (0.2ms) SELECT * FROM "pages" 
1476
+ SQL (0.3ms) select sqlite_version(*)
1477
+ SQL (0.7ms)  SELECT name
1478
+ FROM sqlite_master
1479
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1480
+ 
1481
+ SQL (2.6ms) DROP TABLE "pages"
1482
+ SQL (13.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1483
+ SQL (0.3ms)  SELECT name
1484
+ FROM sqlite_master
1485
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1486
+ 
1487
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1488
+ Page Load (0.2ms) SELECT * FROM "pages" 
1489
+ SQL (0.2ms) select sqlite_version(*)
1490
+ SQL (0.3ms)  SELECT name
1491
+ FROM sqlite_master
1492
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1493
+ 
1494
+ SQL (3.4ms) DROP TABLE "pages"
1495
+ SQL (2.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1496
+ SQL (0.2ms)  SELECT name
1497
+ FROM sqlite_master
1498
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1499
+ 
1500
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1501
+ Page Load (0.2ms) SELECT * FROM "pages" 
1502
+ SQL (0.2ms) select sqlite_version(*)
1503
+ SQL (0.4ms)  SELECT name
1504
+ FROM sqlite_master
1505
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1506
+ 
1507
+ SQL (2.5ms) DROP TABLE "pages"
1508
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1509
+ SQL (0.3ms)  SELECT name
1510
+ FROM sqlite_master
1511
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1512
+ 
1513
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1514
+ Page Load (0.2ms) SELECT * FROM "pages" 
1515
+ Page Load (0.2ms) SELECT * FROM "pages" 
1516
+ Page Create (0.5ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-01 21:17:56', 'Harry and the Hendersons', '2010-01-01 21:17:56', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1517
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1518
+ Page Load (0.3ms) SELECT * FROM "pages" 
1519
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-01 21:17:56', 'The Departed', '2010-01-01 21:17:56', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1520
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1521
+ Page Load (0.3ms) SELECT * FROM "pages" 
1522
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-01 21:17:57', 'Mr. MacAllister''s Christmas', '2010-01-01 21:17:57', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1523
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1524
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1525
+ Page Update (0.2ms) UPDATE "pages" SET "updated_at" = '2010-01-01 21:17:57', "content" = 'I was Home Alone' WHERE "id" = 1
1526
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1527
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1528
+ SQL (0.2ms) select sqlite_version(*)
1529
+ SQL (0.4ms)  SELECT name
1530
+ FROM sqlite_master
1531
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1532
+ 
1533
+ SQL (2.4ms) DROP TABLE "pages"
1534
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1535
+ SQL (0.2ms)  SELECT name
1536
+ FROM sqlite_master
1537
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1538
+ 
1539
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1540
+ Page Load (0.2ms) SELECT * FROM "pages" 
1541
+ SQL (0.2ms) select sqlite_version(*)
1542
+ SQL (0.3ms)  SELECT name
1543
+ FROM sqlite_master
1544
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1545
+ 
1546
+ SQL (2.6ms) DROP TABLE "pages"
1547
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1548
+ SQL (0.2ms)  SELECT name
1549
+ FROM sqlite_master
1550
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1551
+ 
1552
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1553
+ Page Load (0.2ms) SELECT * FROM "pages" 
1554
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1555
+ SQL (0.2ms) select sqlite_version(*)
1556
+ SQL (0.4ms)  SELECT name
1557
+ FROM sqlite_master
1558
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1559
+ 
1560
+ SQL (1.6ms) DROP TABLE "pages"
1561
+ SQL (3.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1562
+ SQL (0.3ms)  SELECT name
1563
+ FROM sqlite_master
1564
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1565
+ 
1566
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1567
+ Page Load (0.3ms) SELECT * FROM "pages" 
1568
+ Page Load (0.2ms) SELECT * FROM "pages" 
1569
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2010-01-01 21:20:31', 'Harry and the Hendersons', '2010-01-01 21:20:31', '', 'f', '', 'f', '', 'f', NULL, NULL)
1570
+ Page Load (0.4ms) SELECT * FROM "pages" 
1571
+ Page Create (0.5ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-01 21:20:31', 'Harry and the Hendersons', '2010-01-01 21:20:31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1572
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1573
+ Page Load (0.4ms) SELECT * FROM "pages" 
1574
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1575
+ Page Load (0.5ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1576
+ Page Update (0.2ms) UPDATE "pages" SET "updated_at" = '2010-01-01 21:20:31', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "url" = '', "canonical" = '', "noindex" = 'f', "description" = '', "enable_canonical" = 'f' WHERE "id" = 1
1577
+ Page Load (0.4ms) SELECT * FROM "pages" 
1578
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-01 21:20:31', 'The Departed', '2010-01-01 21:20:31', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1579
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1580
+ Page Load (0.3ms) SELECT * FROM "pages" 
1581
+ Page Load (0.7ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1582
+ Page Destroy (0.1ms) DELETE FROM "pages" WHERE "id" = 1
1583
+ Page Load (0.1ms) SELECT * FROM "pages" 
1584
+ SQL (0.2ms) select sqlite_version(*)
1585
+ SQL (0.5ms)  SELECT name
1586
+ FROM sqlite_master
1587
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1588
+ 
1589
+ SQL (3.8ms) DROP TABLE "pages"
1590
+ SQL (1.8ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1591
+ SQL (0.4ms)  SELECT name
1592
+ FROM sqlite_master
1593
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1594
+ 
1595
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1596
+ Page Load (0.2ms) SELECT * FROM "pages" 
1597
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1598
+ SQL (0.2ms) select sqlite_version(*)
1599
+ SQL (0.4ms)  SELECT name
1600
+ FROM sqlite_master
1601
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1602
+ 
1603
+ SQL (2.7ms) DROP TABLE "pages"
1604
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1605
+ SQL (0.3ms)  SELECT name
1606
+ FROM sqlite_master
1607
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1608
+ 
1609
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1610
+ Page Load (0.2ms) SELECT * FROM "pages" 
1611
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1612
+ SQL (0.2ms) select sqlite_version(*)
1613
+ SQL (0.4ms)  SELECT name
1614
+ FROM sqlite_master
1615
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1616
+ 
1617
+ SQL (2.7ms) DROP TABLE "pages"
1618
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1619
+ SQL (0.3ms)  SELECT name
1620
+ FROM sqlite_master
1621
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1622
+ 
1623
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1624
+ Page Load (0.2ms) SELECT * FROM "pages" 
1625
+ Page Load (12.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1626
+ Page Load (0.1ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1627
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1628
+ Page Load (0.1ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1629
+ SQL (0.2ms) select sqlite_version(*)
1630
+ SQL (0.4ms)  SELECT name
1631
+ FROM sqlite_master
1632
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1633
+ 
1634
+ SQL (2.7ms) DROP TABLE "pages"
1635
+ SQL (2.0ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1636
+ SQL (0.3ms)  SELECT name
1637
+ FROM sqlite_master
1638
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1639
+ 
1640
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1641
+ Page Load (0.2ms) SELECT * FROM "pages" 
1642
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1643
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1644
+ SQL (0.2ms) select sqlite_version(*)
1645
+ SQL (0.3ms)  SELECT name
1646
+ FROM sqlite_master
1647
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1648
+ 
1649
+ SQL (2.8ms) DROP TABLE "pages"
1650
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1651
+ SQL (0.4ms)  SELECT name
1652
+ FROM sqlite_master
1653
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1654
+ 
1655
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1656
+ Page Load (0.2ms) SELECT * FROM "pages" 
1657
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1658
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1659
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1660
+ SQL (0.2ms) select sqlite_version(*)
1661
+ SQL (0.4ms)  SELECT name
1662
+ FROM sqlite_master
1663
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1664
+ 
1665
+ SQL (2.8ms) DROP TABLE "pages"
1666
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1667
+ SQL (0.3ms)  SELECT name
1668
+ FROM sqlite_master
1669
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1670
+ 
1671
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1672
+ Page Load (0.3ms) SELECT * FROM "pages" 
1673
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1674
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1675
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1676
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1677
+ SQL (0.2ms) select sqlite_version(*)
1678
+ SQL (0.4ms)  SELECT name
1679
+ FROM sqlite_master
1680
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1681
+ 
1682
+ SQL (2.0ms) DROP TABLE "pages"
1683
+ SQL (1.7ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1684
+ SQL (0.3ms)  SELECT name
1685
+ FROM sqlite_master
1686
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1687
+ 
1688
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1689
+ Page Load (0.2ms) SELECT * FROM "pages" 
1690
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1691
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1692
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1693
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1694
+ SQL (0.2ms) select sqlite_version(*)
1695
+ SQL (0.4ms)  SELECT name
1696
+ FROM sqlite_master
1697
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1698
+ 
1699
+ SQL (2.4ms) DROP TABLE "pages"
1700
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1701
+ SQL (0.3ms)  SELECT name
1702
+ FROM sqlite_master
1703
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1704
+ 
1705
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1706
+ Page Load (0.2ms) SELECT * FROM "pages" 
1707
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1708
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1709
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1710
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1711
+ SQL (0.2ms) select sqlite_version(*)
1712
+ SQL (0.9ms)  SELECT name
1713
+ FROM sqlite_master
1714
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1715
+ 
1716
+ SQL (2.0ms) DROP TABLE "pages"
1717
+ SQL (1.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1718
+ SQL (0.3ms)  SELECT name
1719
+ FROM sqlite_master
1720
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1721
+ 
1722
+ SQL (0.3ms) SELECT version FROM "schema_migrations"
1723
+ Page Load (0.2ms) SELECT * FROM "pages" 
1724
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1725
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1726
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1727
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1728
+ SQL (0.2ms) select sqlite_version(*)
1729
+ SQL (0.4ms)  SELECT name
1730
+ FROM sqlite_master
1731
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1732
+ 
1733
+ SQL (2.8ms) DROP TABLE "pages"
1734
+ SQL (2.1ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1735
+ SQL (0.3ms)  SELECT name
1736
+ FROM sqlite_master
1737
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1738
+ 
1739
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1740
+ Page Load (0.2ms) SELECT * FROM "pages" 
1741
+ SQL (0.2ms) select sqlite_version(*)
1742
+ SQL (0.7ms)  SELECT name
1743
+ FROM sqlite_master
1744
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1745
+ 
1746
+ SQL (2.0ms) DROP TABLE "pages"
1747
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1748
+ SQL (0.2ms)  SELECT name
1749
+ FROM sqlite_master
1750
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1751
+ 
1752
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1753
+ Page Load (0.2ms) SELECT * FROM "pages" 
1754
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1755
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1756
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1757
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1758
+ SQL (0.2ms) select sqlite_version(*)
1759
+ SQL (0.4ms)  SELECT name
1760
+ FROM sqlite_master
1761
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1762
+ 
1763
+ SQL (2.6ms) DROP TABLE "pages"
1764
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1765
+ SQL (0.2ms)  SELECT name
1766
+ FROM sqlite_master
1767
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1768
+ 
1769
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1770
+ Page Load (0.2ms) SELECT * FROM "pages" 
1771
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1772
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1773
+ Page Load (0.1ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1774
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1775
+ Page Load (0.1ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1776
+ SQL (0.2ms) select sqlite_version(*)
1777
+ SQL (0.4ms)  SELECT name
1778
+ FROM sqlite_master
1779
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1780
+ 
1781
+ SQL (1.5ms) DROP TABLE "pages"
1782
+ SQL (1.4ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1783
+ SQL (0.3ms)  SELECT name
1784
+ FROM sqlite_master
1785
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1786
+ 
1787
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1788
+ Page Load (10.2ms) SELECT * FROM "pages" 
1789
+ Page Load (0.2ms) SELECT * FROM "pages" 
1790
+ Page Create (0.7ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2010-01-01 21:46:18', 'Harry and the Hendersons', '2010-01-01 21:46:18', '', 'f', '', 'f', '', 'f', NULL, NULL)
1791
+ Page Load (0.4ms) SELECT * FROM "pages" 
1792
+ Page Create (0.5ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-01 21:46:18', 'Harry and the Hendersons', '2010-01-01 21:46:18', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1793
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1794
+ Page Load (0.3ms) SELECT * FROM "pages" 
1795
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1796
+ Page Load (0.5ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1797
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-01-01 21:46:19', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "url" = '', "canonical" = '', "noindex" = 'f', "description" = '', "enable_canonical" = 'f' WHERE "id" = 1
1798
+ Page Load (0.4ms) SELECT * FROM "pages" 
1799
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-01 21:46:19', 'The Departed', '2010-01-01 21:46:19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1800
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1801
+ Page Load (0.3ms) SELECT * FROM "pages" 
1802
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1803
+ Page Destroy (0.1ms) DELETE FROM "pages" WHERE "id" = 1
1804
+ Page Load (0.2ms) SELECT * FROM "pages" 
1805
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-01 21:46:19', 'Mr. MacAllister''s Christmas', '2010-01-01 21:46:19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1806
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1807
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1808
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-01-01 21:46:19', "content" = 'I was Home Alone' WHERE "id" = 1
1809
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1810
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1811
+ SQL (0.2ms) select sqlite_version(*)
1812
+ SQL (0.5ms)  SELECT name
1813
+ FROM sqlite_master
1814
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1815
+ 
1816
+ SQL (1.5ms) DROP TABLE "pages"
1817
+ SQL (1.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1818
+ SQL (0.3ms)  SELECT name
1819
+ FROM sqlite_master
1820
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1821
+ 
1822
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1823
+ Page Load (0.2ms) SELECT * FROM "pages" 
1824
+ Page Load (0.2ms) SELECT * FROM "pages" 
1825
+ Page Create (10.5ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('', '2010-01-03 18:54:07', 'Harry and the Hendersons', '2010-01-03 18:54:07', '', 'f', '', 'f', '', 'f', NULL, NULL)
1826
+ Page Load (0.4ms) SELECT * FROM "pages" 
1827
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-03 18:54:07', 'Harry and the Hendersons', '2010-01-03 18:54:07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1828
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1829
+ Page Load (0.4ms) SELECT * FROM "pages" 
1830
+ Page Load (1.7ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1831
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1832
+ Page Update (0.2ms) UPDATE "pages" SET "updated_at" = '2010-01-03 18:54:07', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "url" = '', "canonical" = '', "noindex" = 'f', "description" = '', "enable_canonical" = 'f' WHERE "id" = 1
1833
+ Page Load (0.4ms) SELECT * FROM "pages" 
1834
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-03 18:54:07', 'The Departed', '2010-01-03 18:54:07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1835
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1836
+ Page Load (0.4ms) SELECT * FROM "pages" 
1837
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1838
+ Page Destroy (0.1ms) DELETE FROM "pages" WHERE "id" = 1
1839
+ Page Load (0.2ms) SELECT * FROM "pages" 
1840
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-03 18:54:07', 'Mr. MacAllister''s Christmas', '2010-01-03 18:54:07', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1841
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1842
+ Page Load (0.8ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1843
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-01-03 18:54:07', "content" = 'I was Home Alone' WHERE "id" = 1
1844
+ Page Load (2.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1845
+ Page Load (0.4ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1846
+ SQL (0.2ms) select sqlite_version(*)
1847
+ SQL (0.4ms)  SELECT name
1848
+ FROM sqlite_master
1849
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1850
+ 
1851
+ SQL (1.5ms) DROP TABLE "pages"
1852
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1853
+ SQL (0.2ms)  SELECT name
1854
+ FROM sqlite_master
1855
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1856
+ 
1857
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1858
+ Page Load (0.2ms) SELECT * FROM "pages" 
1859
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1860
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1861
+ Page Load (0.2ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1862
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1863
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."url" = '/') LIMIT 1
1864
+ SQL (0.2ms) select sqlite_version(*)
1865
+ SQL (0.5ms)  SELECT name
1866
+ FROM sqlite_master
1867
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1868
+ 
1869
+ SQL (22.7ms) DROP TABLE "pages"
1870
+ SQL (1.3ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1871
+ SQL (0.3ms)  SELECT name
1872
+ FROM sqlite_master
1873
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1874
+ 
1875
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
1876
+ Page Load (0.2ms) SELECT * FROM "pages" 
1877
+ Page Load (0.2ms) SELECT * FROM "pages" 
1878
+ Page Create (0.4ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-04 13:33:06', 'Harry and the Hendersons', '2010-01-04 13:33:06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1879
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1880
+ Page Load (0.5ms) SELECT * FROM "pages" 
1881
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1882
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1883
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-01-04 13:33:06', "title" = 'Three Men and a Baby', "content" = '', "nofollow" = 'f', "url" = '', "canonical" = '', "noindex" = 'f', "description" = '', "enable_canonical" = 'f' WHERE "id" = 1
1884
+ Page Load (0.3ms) SELECT * FROM "pages" 
1885
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-04 13:33:06', 'The Departed', '2010-01-04 13:33:06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1886
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1887
+ Page Load (0.4ms) SELECT * FROM "pages" 
1888
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1889
+ Page Destroy (0.1ms) DELETE FROM "pages" WHERE "id" = 1
1890
+ Page Load (0.1ms) SELECT * FROM "pages" 
1891
+ Page Create (0.3ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES(NULL, '2010-01-04 13:33:06', 'Mr. MacAllister''s Christmas', '2010-01-04 13:33:06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL)
1892
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1893
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1894
+ Page Update (0.1ms) UPDATE "pages" SET "updated_at" = '2010-01-04 13:33:06', "content" = 'I was Home Alone' WHERE "id" = 1
1895
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."title" = 'Mr. MacAllister''s Christmas') LIMIT 1
1896
+ Page Load (0.3ms) SELECT * FROM "pages" WHERE ("pages"."id" = 1) 
1897
+ SQL (0.2ms) select sqlite_version(*)
1898
+ SQL (0.4ms)  SELECT name
1899
+ FROM sqlite_master
1900
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1901
+ 
1902
+ SQL (79.0ms) DROP TABLE "pages"
1903
+ SQL (1.5ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1904
+ SQL (0.3ms)  SELECT name
1905
+ FROM sqlite_master
1906
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1907
+ 
1908
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1909
+ Page Load (0.2ms) SELECT * FROM "pages" 
1910
+ SQL (0.2ms) select sqlite_version(*)
1911
+ SQL (0.4ms)  SELECT name
1912
+ FROM sqlite_master
1913
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1914
+ 
1915
+ SQL (3.2ms) DROP TABLE "pages"
1916
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1917
+ SQL (0.3ms)  SELECT name
1918
+ FROM sqlite_master
1919
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1920
+ 
1921
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1922
+ Page Load (0.3ms) SELECT * FROM "pages" 
1923
+ SQL (0.3ms) select sqlite_version(*)
1924
+ SQL (0.6ms)  SELECT name
1925
+ FROM sqlite_master
1926
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1927
+ 
1928
+ SQL (1.9ms) DROP TABLE "pages"
1929
+ SQL (1.6ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "keywords" text, "description" text, "content" text, "created_at" datetime, "updated_at" datetime, "noindex" boolean, "nofollow" boolean, "canonical" varchar(255), "enable_canonical" boolean, "enable_keywords" boolean) 
1930
+ SQL (0.4ms)  SELECT name
1931
+ FROM sqlite_master
1932
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1933
+ 
1934
+ SQL (0.3ms) SELECT version FROM "schema_migrations"
1935
+ Page Load (0.2ms) SELECT * FROM "pages" 
1936
+ Page Create (0.5ms) INSERT INTO "pages" ("canonical", "created_at", "title", "updated_at", "url", "enable_canonical", "content", "nofollow", "description", "noindex", "enable_keywords", "keywords") VALUES('http://hendersons.com', '2010-01-04 13:35:08', 'Harry and the Hendersons', '2010-01-04 13:35:08', '', 't', '', 't', '', 't', NULL, '80s, movie')
1937
+ Page Load (0.4ms) SELECT * FROM "pages"