cleanerupper 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/README ADDED
@@ -0,0 +1,40 @@
1
+ Cleanerupper
2
+ ============
3
+
4
+ Cleanerupper can be used in any ActiveRecord based model to seamless clean, sanitize, and
5
+ remove inappropriate or sensitive data.
6
+
7
+
8
+ Examples
9
+ =======
10
+
11
+ class Widget < ActiveRecord::Base
12
+ #The primary use of CleanerUpper is to be used as
13
+ #before_save filters.
14
+
15
+ #This will scramble the data before it is saved:
16
+ scramble :body, :title
17
+
18
+ #This will remove the data before it is saved:
19
+ remove :body, :title
20
+
21
+ #This will replace the data before it is saved:
22
+ replace :body, :title
23
+
24
+ #You can also define a block if you are using multiple
25
+ #different cleaning methods:
26
+ cleaner do |c|
27
+ c.scramble :body
28
+ c.remove :title
29
+ c.replace :author_name
30
+ end
31
+ end
32
+
33
+ #You can also manually invoke the cleaning methods on an
34
+ #instance of any ActiveRecord object like so:
35
+ w = Widget.last
36
+ w.clean(:body)
37
+ w.scramble(:title)
38
+ w.remove(:author_name)
39
+
40
+ Copyright (c) 2010 Mike Trpcic (Fluid Media Inc.), released under the MIT license
File without changes
@@ -0,0 +1,50 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{cleanerupper}
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Mike Trpcic"]
12
+ s.date = %q{2010-04-09}
13
+ s.email = %q{mike@fluidmedia.com}
14
+ s.extra_rdoc_files = [
15
+ "README"
16
+ ]
17
+ s.files = [
18
+ "./cleanerupper-0.1.0.gem",
19
+ "./cleanerupper.gemspec",
20
+ "./dictionary.yml",
21
+ "./init.rb",
22
+ "./install.rb",
23
+ "./lib/cleanerupper.rb",
24
+ "./pkg/cleanerupper-0.0.0.gem",
25
+ "./rails/init.rb",
26
+ "./tasks/cleanerupper_tasks.rake",
27
+ "./test/cleanerupper_test.rb",
28
+ "./test/database.yml",
29
+ "./test/debug.log",
30
+ "./test/schema.rb",
31
+ "./test/test_helper.rb",
32
+ "./uninstall.rb"
33
+ ]
34
+ s.homepage = %q{http://github.com/fmiopensource/cleanerupper}
35
+ s.rdoc_options = ["--charset=UTF-8"]
36
+ s.require_paths = ["lib"]
37
+ s.rubygems_version = %q{1.3.5}
38
+ s.summary = %q{Simple database sanitation}
39
+
40
+ if s.respond_to? :specification_version then
41
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
42
+ s.specification_version = 3
43
+
44
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
45
+ else
46
+ end
47
+ else
48
+ end
49
+ end
50
+
data/dictionary.yml ADDED
@@ -0,0 +1,3 @@
1
+ words:
2
+ default
3
+ dictionary
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ require File.dirname(__FILE__) + "/rails/init.rb"
data/install.rb ADDED
@@ -0,0 +1 @@
1
+ # Install hook code here
@@ -0,0 +1,107 @@
1
+ =begin
2
+ Author........: Mike Trpcic
3
+ Last Updated..: March 28, 2010
4
+
5
+ Description: Cleans all inappropriate data from the database
6
+
7
+ (c) Fluid Media Inc.
8
+ =end
9
+
10
+ module Cleaner
11
+ extend self
12
+
13
+ #The Dictionary class contains all words that are used by the Cleaner. It also contains other
14
+ #integral components, such as the replacement characters for the `replace` method.
15
+ class Dictionary
16
+ cattr_accessor :file, :words, :replacement_chars, :cleaner_methods
17
+
18
+ #Use the default dictionary if one wasn't defined by the user
19
+ if File.exists?(File.join(RAILS_ROOT, '/config/dictionary.yml'))
20
+ @@file = File.join(RAILS_ROOT, '/config/dictionary.yml')
21
+ elsif File.exists?(File.join(File.dirname(__FILE__), '../dictionary.yml'))
22
+ @@file = File.join(File.dirname(__FILE__), '../dictionary.yml')
23
+ else
24
+ @@file = nil
25
+ end
26
+
27
+ @@cleaner_methods = [:scramble, :replace, :remove]
28
+ @@replacement_chars = ['*', '@', '!', '$', '%', '&']
29
+ unless(@@file.nil?)
30
+ @@words = YAML.load_file(@@file)
31
+ else
32
+ @@words = {}
33
+
34
+ end
35
+ @@words = @@words["words"].blank? ? [] : @@words["words"].split(" ")
36
+ end
37
+
38
+ module ActiveRecord
39
+ def self.included(base)
40
+ base.extend Extension
41
+ end
42
+
43
+ #Append the following methods to the ActiveRecord::Base class
44
+ def bind(method, column, callback = nil)
45
+ #debugger
46
+ old_value = read_attribute(column)
47
+ to_save = true
48
+
49
+ unless old_value.nil?
50
+ if Cleaner::Dictionary.cleaner_methods.include?(method.to_sym)
51
+ new_value = Cleaner.send(method.to_sym, old_value.dup)
52
+ else
53
+ new_value = self.send(method, old_value.dup)
54
+ end
55
+ unless new_value == old_value
56
+ #debugger
57
+ to_save = callback.nil? ? true : self.send(callback)
58
+ write_attribute(column, new_value) if to_save
59
+ end
60
+ end
61
+ return to_save
62
+ end
63
+ end
64
+
65
+ module Extension
66
+
67
+ #These are methods that can be called in the same manner that
68
+ #before_save filters are called
69
+ def clean(*args)
70
+ methods = args[-1].is_a?(Hash) ? args[-1] : {}
71
+ args = args[0..-1] if methods
72
+ with = methods.has_key?(:with) ? methods[:with] : :scramble
73
+ callback = methods.has_key?(:callback) ? methods[:callback] : nil
74
+ args.each do |attribute|
75
+ before_save {|m| m.bind(with, attribute, callback)}
76
+ end
77
+ end
78
+ end
79
+
80
+ #Define all your actual manipulation methods here:
81
+
82
+ #This method scrambles data by rearranging the letters.
83
+ def scramble(value)
84
+ Cleaner::Dictionary.words.each do |word|
85
+ value.to_s.gsub!(/#{word}/, word.split(//).shuffle.join(''))
86
+ end
87
+ value
88
+ end
89
+
90
+ #This method removes selected words from the string and replaces them
91
+ #with nothing
92
+ def remove(value)
93
+ Cleaner::Dictionary.words.each do |word|
94
+ value.to_s.gsub!(/#{word}/, "")
95
+ end
96
+ value
97
+ end
98
+
99
+ #This method removes selected words from the string and replaces them
100
+ #with 'swear' characters,such as '#$@!%&'
101
+ def replace(value)
102
+ Cleaner::Dictionary.words.each do |word|
103
+ value.to_s.gsub!(/#{word}/, word.split(//).map{|c| c = Cleaner::Dictionary.replacement_chars.shuffle[0]}.join(''))
104
+ end
105
+ value
106
+ end
107
+ end
Binary file
data/rails/init.rb ADDED
@@ -0,0 +1,3 @@
1
+ require 'activerecord'
2
+ require 'cleanerupper'
3
+ ActiveRecord::Base.send(:include, Cleaner::ActiveRecord)
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :cleanerupper do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,117 @@
1
+ require File.join(File.dirname(__FILE__), 'test_helper')
2
+
3
+ Cleaner::Dictionary.words = ["scramble_test", "remove_test", "replace_test", "custom_test", "default_test"]
4
+ class Widget < ActiveRecord::Base
5
+ clean :body
6
+ end
7
+
8
+ class ReplaceWidget < ActiveRecord::Base
9
+ clean :body, :with => :replace
10
+ end
11
+
12
+ class RemoveWidget < ActiveRecord::Base
13
+ clean :body, :title, :with => :remove
14
+ end
15
+
16
+ class ScrambleWidget < ActiveRecord::Base
17
+ clean :title, :with => :scramble
18
+ end
19
+
20
+ class CustomWidget < ActiveRecord::Base
21
+ clean :body, :title, :with => :custom_function
22
+
23
+ def custom_function(value)
24
+ return "Custom Value: #{value}"
25
+ end
26
+ end
27
+
28
+ class CallbackWidget < ActiveRecord::Base
29
+ clean :body, :with => :scramble, :callback => :callback_method
30
+
31
+ def callback_method
32
+ self.title = "CALLBACK"
33
+ true
34
+ end
35
+ end
36
+
37
+ class FalseCallbackWidget < ActiveRecord::Base
38
+ clean :body, :with => :scramble, :callback => :callback_method
39
+
40
+ def callback_method
41
+ self.title = "CALLBACK"
42
+ false
43
+ end
44
+ end
45
+
46
+ class CleanerupperTest < Test::Unit::TestCase
47
+
48
+ def test_automatically_replace
49
+ str = "cleanerupper replace_test test"
50
+ w = ReplaceWidget.new(:body => str.dup)
51
+ w.save
52
+ w = ReplaceWidget.find(w.id)
53
+ assert w.body != str
54
+ assert w.body.length == str.length
55
+ end
56
+
57
+ def test_automatically_remove
58
+ str = "cleanerupper remove_test test"
59
+ w = RemoveWidget.new(:body => str.dup, :title => str.dup)
60
+ w.save
61
+ w = RemoveWidget.find(w.id)
62
+ assert w.body != str
63
+ assert w.body == "cleanerupper test"
64
+ assert w.title != str
65
+ assert w.body == "cleanerupper test"
66
+ end
67
+
68
+ def test_automatically_scramble
69
+ str = "cleanerupper scramble_test test"
70
+ w = ScrambleWidget.new(:title => str.dup)
71
+ w.save
72
+ w = ScrambleWidget.find(w.id)
73
+ assert w.title != str
74
+ assert w.title.split(//).sort == str.split(//).sort
75
+ end
76
+
77
+ def test_cleanerupper_custom_method
78
+ title = "cleanerupper remove_test title"
79
+ body = "cleanerupper scramble_test body"
80
+
81
+ w = CustomWidget.new({:body => body.dup, :title => title.dup})
82
+ w.save
83
+ w = CustomWidget.find(w.id)
84
+
85
+ assert w.title != title
86
+ assert w.title == "Custom Value: cleanerupper remove_test title"
87
+
88
+ assert w.body != body
89
+ assert w.body == "Custom Value: cleanerupper scramble_test body"
90
+ end
91
+
92
+ def test_cleanerupper_custom_callback
93
+ body = "cleanerupper custom_test body"
94
+ w = CallbackWidget.new(:body => body.dup)
95
+ w.save
96
+ w = CallbackWidget.find(w.id)
97
+ assert w.title == "CALLBACK"
98
+ end
99
+
100
+ def test_cleanerupper_custom_callback_returns_false
101
+ body = "cleanerupper custom_test body"
102
+ w = FalseCallbackWidget.new(:body => body.dup)
103
+ w.save
104
+ assert w.body == body
105
+ assert w.id == nil
106
+ end
107
+
108
+ def test_cleanerupper_default_method
109
+ title = "cleanerupper default_test body"
110
+ w = ScrambleWidget.new(:title => title.dup)
111
+ w.save
112
+ w = ScrambleWidget.find(w.id)
113
+ assert w.title != title
114
+ assert w.title.split(//).sort == title.split(//).sort
115
+ end
116
+
117
+ end
data/test/database.yml ADDED
@@ -0,0 +1,18 @@
1
+ sqlite:
2
+ :adapter: sqlite
3
+ :database: cleanerupper.sqlite.db
4
+ sqlite3:
5
+ :adapter: sqlite3
6
+ :database: cleanerupper.sqlite3.db
7
+ postgresql:
8
+ :adapter: postgresql
9
+ :username: postgres
10
+ :password: postgres
11
+ :database: cleanerupper_test
12
+ :min_messages: ERROR
13
+ mysql:
14
+ :adapter: mysql
15
+ :host: localhost
16
+ :username: rails
17
+ :password:
18
+ :database: cleanerupper_test
data/test/debug.log ADDED
@@ -0,0 +1,2341 @@
1
+ # Logfile created on 2010-03-28 13:19:41 -0400 by logger.rb/20321
2
+ SQL (0.4ms) select sqlite_version(*)
3
+ SQL (0.2ms)  SELECT name
4
+ FROM sqlite_master
5
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
6
+ 
7
+ SQL (28.9ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
8
+ SQL (0.2ms)  SELECT name
9
+ FROM sqlite_master
10
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
11
+ 
12
+ SQL (3.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
13
+ SQL (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
14
+ SQL (0.1ms)  SELECT name
15
+ FROM sqlite_master
16
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
17
+ 
18
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
19
+ SQL (2.3ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
20
+ SQL (0.4ms) select sqlite_version(*)
21
+ SQL (0.4ms)  SELECT name
22
+ FROM sqlite_master
23
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
24
+ 
25
+ SQL (8.5ms) DROP TABLE "widgets"
26
+ SQL (21.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
27
+ SQL (0.2ms)  SELECT name
28
+ FROM sqlite_master
29
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
30
+ 
31
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
32
+ SQL (0.4ms) select sqlite_version(*)
33
+ SQL (0.4ms)  SELECT name
34
+ FROM sqlite_master
35
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
36
+ 
37
+ SQL (22.7ms) DROP TABLE "widgets"
38
+ SQL (2.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
39
+ SQL (0.1ms)  SELECT name
40
+ FROM sqlite_master
41
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
42
+ 
43
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
44
+ SQL (0.6ms) select sqlite_version(*)
45
+ SQL (0.4ms)  SELECT name
46
+ FROM sqlite_master
47
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
48
+ 
49
+ SQL (5.4ms) DROP TABLE "widgets"
50
+ SQL (2.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
51
+ SQL (0.1ms)  SELECT name
52
+ FROM sqlite_master
53
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
54
+ 
55
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
56
+ SQL (0.4ms) select sqlite_version(*)
57
+ SQL (0.4ms)  SELECT name
58
+ FROM sqlite_master
59
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
60
+ 
61
+ SQL (3.2ms) DROP TABLE "widgets"
62
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
63
+ SQL (0.2ms)  SELECT name
64
+ FROM sqlite_master
65
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
66
+ 
67
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
68
+ SQL (0.4ms) select sqlite_version(*)
69
+ SQL (0.4ms)  SELECT name
70
+ FROM sqlite_master
71
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
72
+ 
73
+ SQL (294.6ms) DROP TABLE "widgets"
74
+ SQL (43.6ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
75
+ SQL (0.3ms)  SELECT name
76
+ FROM sqlite_master
77
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
78
+ 
79
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
80
+ SQL (0.4ms) select sqlite_version(*)
81
+ SQL (0.4ms)  SELECT name
82
+ FROM sqlite_master
83
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
84
+ 
85
+ SQL (11.3ms) DROP TABLE "widgets"
86
+ SQL (17.1ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
87
+ SQL (0.2ms)  SELECT name
88
+ FROM sqlite_master
89
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
90
+ 
91
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
92
+ SQL (0.4ms) select sqlite_version(*)
93
+ SQL (0.4ms)  SELECT name
94
+ FROM sqlite_master
95
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
96
+ 
97
+ SQL (6.7ms) DROP TABLE "widgets"
98
+ SQL (1.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
99
+ SQL (0.2ms)  SELECT name
100
+ FROM sqlite_master
101
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
102
+ 
103
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
104
+ SQL (0.4ms) select sqlite_version(*)
105
+ SQL (0.5ms)  SELECT name
106
+ FROM sqlite_master
107
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
108
+ 
109
+ SQL (4.0ms) DROP TABLE "widgets"
110
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
111
+ SQL (0.1ms)  SELECT name
112
+ FROM sqlite_master
113
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
114
+ 
115
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
116
+ SQL (0.4ms) select sqlite_version(*)
117
+ SQL (0.6ms)  SELECT name
118
+ FROM sqlite_master
119
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
120
+ 
121
+ SQL (22.7ms) DROP TABLE "widgets"
122
+ SQL (1.9ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
123
+ SQL (0.2ms)  SELECT name
124
+ FROM sqlite_master
125
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
126
+ 
127
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
128
+ SQL (0.4ms) select sqlite_version(*)
129
+ SQL (0.4ms)  SELECT name
130
+ FROM sqlite_master
131
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
132
+ 
133
+ SQL (5.3ms) DROP TABLE "widgets"
134
+ SQL (1.8ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
135
+ SQL (0.2ms)  SELECT name
136
+ FROM sqlite_master
137
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
138
+ 
139
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
140
+ SQL (0.4ms) select sqlite_version(*)
141
+ SQL (0.4ms)  SELECT name
142
+ FROM sqlite_master
143
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
144
+ 
145
+ SQL (21.9ms) DROP TABLE "widgets"
146
+ SQL (2.2ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
147
+ SQL (0.1ms)  SELECT name
148
+ FROM sqlite_master
149
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
150
+ 
151
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
152
+ SQL (0.4ms) select sqlite_version(*)
153
+ SQL (0.5ms)  SELECT name
154
+ FROM sqlite_master
155
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
156
+ 
157
+ SQL (23.3ms) DROP TABLE "widgets"
158
+ SQL (2.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
159
+ SQL (0.1ms)  SELECT name
160
+ FROM sqlite_master
161
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
162
+ 
163
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
164
+ SQL (0.4ms) select sqlite_version(*)
165
+ SQL (0.4ms)  SELECT name
166
+ FROM sqlite_master
167
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
168
+ 
169
+ SQL (6.0ms) DROP TABLE "widgets"
170
+ SQL (1.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
171
+ SQL (0.1ms)  SELECT name
172
+ FROM sqlite_master
173
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
174
+ 
175
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
176
+ SQL (0.4ms) select sqlite_version(*)
177
+ SQL (0.4ms)  SELECT name
178
+ FROM sqlite_master
179
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
180
+ 
181
+ SQL (4.0ms) DROP TABLE "widgets"
182
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
183
+ SQL (0.1ms)  SELECT name
184
+ FROM sqlite_master
185
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
186
+ 
187
+ SQL (1.7ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
188
+ SQL (0.3ms)  SELECT name
189
+ FROM sqlite_master
190
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
191
+ 
192
+ SQL (2.2ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
193
+ SQL (0.2ms)  SELECT name
194
+ FROM sqlite_master
195
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
196
+ 
197
+ SQL (24.1ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
198
+ SQL (0.3ms)  SELECT name
199
+ FROM sqlite_master
200
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
201
+ 
202
+ SQL (2.0ms) CREATE TABLE "block_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
203
+ SQL (0.2ms)  SELECT name
204
+ FROM sqlite_master
205
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
206
+ 
207
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
208
+ ReplaceWidget Create (0.5ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper &*$@@@$**$&@ test', NULL)
209
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
210
+ SQL (0.4ms) select sqlite_version(*)
211
+ SQL (1.0ms)  SELECT name
212
+ FROM sqlite_master
213
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
214
+ 
215
+ SQL (4.1ms) DROP TABLE "widgets"
216
+ SQL (1.7ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
217
+ SQL (0.2ms)  SELECT name
218
+ FROM sqlite_master
219
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
220
+ 
221
+ SQL (1.6ms) DROP TABLE "replace_widgets"
222
+ SQL (1.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
223
+ SQL (0.2ms)  SELECT name
224
+ FROM sqlite_master
225
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
226
+ 
227
+ SQL (15.7ms) DROP TABLE "remove_widgets"
228
+ SQL (1.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
229
+ SQL (0.4ms)  SELECT name
230
+ FROM sqlite_master
231
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
232
+ 
233
+ SQL (9.1ms) DROP TABLE "scramble_widgets"
234
+ SQL (2.8ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
235
+ SQL (0.4ms)  SELECT name
236
+ FROM sqlite_master
237
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
238
+ 
239
+ SQL (1.6ms) DROP TABLE "block_widgets"
240
+ SQL (1.6ms) CREATE TABLE "block_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
241
+ SQL (0.2ms)  SELECT name
242
+ FROM sqlite_master
243
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
244
+ 
245
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
246
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
247
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
248
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper &@*%%%&%&!%% test', NULL)
249
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
250
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper trstblm_seaec test', NULL, NULL)
251
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
252
+ SQL (0.4ms) select sqlite_version(*)
253
+ SQL (0.6ms)  SELECT name
254
+ FROM sqlite_master
255
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
256
+ 
257
+ SQL (5.9ms) DROP TABLE "widgets"
258
+ SQL (2.0ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
259
+ SQL (0.2ms)  SELECT name
260
+ FROM sqlite_master
261
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
262
+ 
263
+ SQL (17.0ms) DROP TABLE "replace_widgets"
264
+ SQL (1.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
265
+ SQL (0.2ms)  SELECT name
266
+ FROM sqlite_master
267
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
268
+ 
269
+ SQL (2.3ms) DROP TABLE "remove_widgets"
270
+ SQL (9.1ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
271
+ SQL (0.4ms)  SELECT name
272
+ FROM sqlite_master
273
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
274
+ 
275
+ SQL (2.0ms) DROP TABLE "scramble_widgets"
276
+ SQL (1.6ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
277
+ SQL (0.2ms)  SELECT name
278
+ FROM sqlite_master
279
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
280
+ 
281
+ SQL (2.1ms) DROP TABLE "block_widgets"
282
+ SQL (23.4ms) CREATE TABLE "block_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
283
+ SQL (0.4ms)  SELECT name
284
+ FROM sqlite_master
285
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
286
+ 
287
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
288
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
289
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
290
+ ReplaceWidget Create (0.3ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper &!%@$$!*$%$& test', NULL)
291
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
292
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper stcsle_earbtm test', NULL, NULL)
293
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
294
+ BlockWidget Create (0.2ms) INSERT INTO "block_widgets" ("title", "body", "author_name") VALUES('cleanerupper title', 'clanerupper e_tsalbsmcert body', NULL)
295
+ BlockWidget Load (0.3ms) SELECT * FROM "block_widgets" WHERE ("block_widgets"."id" = 1) 
296
+ SQL (2.8ms) select sqlite_version(*)
297
+ SQL (0.6ms)  SELECT name
298
+ FROM sqlite_master
299
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
300
+ 
301
+ SQL (2.7ms) DROP TABLE "widgets"
302
+ SQL (1.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
303
+ SQL (0.2ms)  SELECT name
304
+ FROM sqlite_master
305
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
306
+ 
307
+ SQL (19.9ms) DROP TABLE "replace_widgets"
308
+ SQL (1.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
309
+ SQL (0.2ms)  SELECT name
310
+ FROM sqlite_master
311
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
312
+ 
313
+ SQL (9.8ms) DROP TABLE "remove_widgets"
314
+ SQL (2.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
315
+ SQL (0.2ms)  SELECT name
316
+ FROM sqlite_master
317
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
318
+ 
319
+ SQL (1.7ms) DROP TABLE "scramble_widgets"
320
+ SQL (1.6ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
321
+ SQL (0.2ms)  SELECT name
322
+ FROM sqlite_master
323
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
324
+ 
325
+ SQL (1.7ms) DROP TABLE "block_widgets"
326
+ SQL (1.6ms) CREATE TABLE "block_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
327
+ SQL (0.2ms)  SELECT name
328
+ FROM sqlite_master
329
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
330
+ 
331
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
332
+ RemoveWidget Create (0.5ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
333
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
334
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper *@*%$&*@@$&! test', NULL)
335
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
336
+ ScrambleWidget Create (0.3ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper _temlcsrtebsa test', NULL, NULL)
337
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
338
+ BlockWidget Create (0.2ms) INSERT INTO "block_widgets" ("title", "body", "author_name") VALUES('cleanerupper title', 'clanerupper bc_smaetlestr body', NULL)
339
+ BlockWidget Load (0.3ms) SELECT * FROM "block_widgets" WHERE ("block_widgets"."id" = 1) 
340
+ SQL (2.7ms) select sqlite_version(*)
341
+ SQL (0.2ms)  SELECT name
342
+ FROM sqlite_master
343
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
344
+ 
345
+ SQL (46.6ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
346
+ SQL (0.3ms)  SELECT name
347
+ FROM sqlite_master
348
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
349
+ 
350
+ SQL (4.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
351
+ SQL (0.1ms)  SELECT name
352
+ FROM sqlite_master
353
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
354
+ 
355
+ SQL (7.3ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
356
+ SQL (0.2ms)  SELECT name
357
+ FROM sqlite_master
358
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
359
+ 
360
+ SQL (3.6ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
361
+ SQL (0.2ms)  SELECT name
362
+ FROM sqlite_master
363
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
364
+ 
365
+ SQL (4.3ms) CREATE TABLE "block_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
366
+ SQL (0.2ms)  SELECT name
367
+ FROM sqlite_master
368
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
369
+ 
370
+ SQL (20.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
371
+ SQL (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
372
+ SQL (0.3ms)  SELECT name
373
+ FROM sqlite_master
374
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
375
+ 
376
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
377
+ SQL (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
378
+ SQL (0.4ms)  SELECT name
379
+ FROM sqlite_master
380
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
381
+ 
382
+ SQL (0.4ms) select sqlite_version(*)
383
+ SQL (0.6ms)  SELECT name
384
+ FROM sqlite_master
385
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
386
+ 
387
+ SQL (9.2ms) DROP TABLE "widgets"
388
+ SQL (3.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
389
+ SQL (0.2ms)  SELECT name
390
+ FROM sqlite_master
391
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
392
+ 
393
+ SQL (14.4ms) DROP TABLE "replace_widgets"
394
+ SQL (2.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
395
+ SQL (0.2ms)  SELECT name
396
+ FROM sqlite_master
397
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
398
+ 
399
+ SQL (24.0ms) DROP TABLE "remove_widgets"
400
+ SQL (3.2ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
401
+ SQL (0.3ms)  SELECT name
402
+ FROM sqlite_master
403
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
404
+ 
405
+ SQL (2.8ms) DROP TABLE "scramble_widgets"
406
+ SQL (2.5ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
407
+ SQL (0.2ms)  SELECT name
408
+ FROM sqlite_master
409
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
410
+ 
411
+ SQL (3.3ms) DROP TABLE "block_widgets"
412
+ SQL (2.6ms) CREATE TABLE "block_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
413
+ SQL (0.3ms)  SELECT name
414
+ FROM sqlite_master
415
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
416
+ 
417
+ SQL (0.3ms) SELECT version FROM "schema_migrations"
418
+ SQL (0.4ms) select sqlite_version(*)
419
+ SQL (0.6ms)  SELECT name
420
+ FROM sqlite_master
421
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
422
+ 
423
+ SQL (18.7ms) DROP TABLE "widgets"
424
+ SQL (3.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
425
+ SQL (0.2ms)  SELECT name
426
+ FROM sqlite_master
427
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
428
+ 
429
+ SQL (2.8ms) DROP TABLE "replace_widgets"
430
+ SQL (2.7ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
431
+ SQL (0.2ms)  SELECT name
432
+ FROM sqlite_master
433
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
434
+ 
435
+ SQL (11.5ms) DROP TABLE "remove_widgets"
436
+ SQL (2.6ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
437
+ SQL (0.2ms)  SELECT name
438
+ FROM sqlite_master
439
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
440
+ 
441
+ SQL (18.0ms) DROP TABLE "scramble_widgets"
442
+ SQL (4.2ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
443
+ SQL (0.3ms)  SELECT name
444
+ FROM sqlite_master
445
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
446
+ 
447
+ SQL (3.8ms) DROP TABLE "block_widgets"
448
+ SQL (3.3ms) CREATE TABLE "block_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
449
+ SQL (0.2ms)  SELECT name
450
+ FROM sqlite_master
451
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
452
+ 
453
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
454
+ SQL (0.4ms) select sqlite_version(*)
455
+ SQL (0.5ms)  SELECT name
456
+ FROM sqlite_master
457
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
458
+ 
459
+ SQL (25.3ms) DROP TABLE "widgets"
460
+ SQL (19.8ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
461
+ SQL (0.3ms)  SELECT name
462
+ FROM sqlite_master
463
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
464
+ 
465
+ SQL (15.5ms) DROP TABLE "replace_widgets"
466
+ SQL (2.9ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
467
+ SQL (0.2ms)  SELECT name
468
+ FROM sqlite_master
469
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
470
+ 
471
+ SQL (2.7ms) DROP TABLE "remove_widgets"
472
+ SQL (17.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
473
+ SQL (0.3ms)  SELECT name
474
+ FROM sqlite_master
475
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
476
+ 
477
+ SQL (2.0ms) DROP TABLE "scramble_widgets"
478
+ SQL (2.0ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
479
+ SQL (0.2ms)  SELECT name
480
+ FROM sqlite_master
481
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
482
+ 
483
+ SQL (1.6ms) DROP TABLE "block_widgets"
484
+ SQL (1.3ms) CREATE TABLE "block_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
485
+ SQL (0.2ms)  SELECT name
486
+ FROM sqlite_master
487
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
488
+ 
489
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
490
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
491
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
492
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper &&*$$%%!%!!% test', NULL)
493
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
494
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper s_mslratbetec test', NULL, NULL)
495
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
496
+ SQL (0.5ms) select sqlite_version(*)
497
+ SQL (0.5ms)  SELECT name
498
+ FROM sqlite_master
499
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
500
+ 
501
+ SQL (20.7ms) DROP TABLE "widgets"
502
+ SQL (3.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
503
+ SQL (0.2ms)  SELECT name
504
+ FROM sqlite_master
505
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
506
+ 
507
+ SQL (3.1ms) DROP TABLE "replace_widgets"
508
+ SQL (2.6ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
509
+ SQL (0.3ms)  SELECT name
510
+ FROM sqlite_master
511
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
512
+ 
513
+ SQL (6.0ms) DROP TABLE "remove_widgets"
514
+ SQL (2.9ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
515
+ SQL (0.2ms)  SELECT name
516
+ FROM sqlite_master
517
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
518
+ 
519
+ SQL (1.7ms) DROP TABLE "scramble_widgets"
520
+ SQL (1.4ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
521
+ SQL (0.2ms)  SELECT name
522
+ FROM sqlite_master
523
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
524
+ 
525
+ SQL (22.6ms) DROP TABLE "block_widgets"
526
+ SQL (1.8ms) CREATE TABLE "block_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
527
+ SQL (0.2ms)  SELECT name
528
+ FROM sqlite_master
529
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
530
+ 
531
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
532
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
533
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
534
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper %!&&*&%&&*$% test', NULL)
535
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
536
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper eacsrmbetls_t test', NULL, NULL)
537
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
538
+ SQL (0.4ms) select sqlite_version(*)
539
+ SQL (0.6ms)  SELECT name
540
+ FROM sqlite_master
541
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
542
+ 
543
+ SQL (8.5ms) DROP TABLE "widgets"
544
+ SQL (2.9ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
545
+ SQL (0.2ms)  SELECT name
546
+ FROM sqlite_master
547
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
548
+ 
549
+ SQL (39.6ms) DROP TABLE "replace_widgets"
550
+ SQL (3.0ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
551
+ SQL (0.4ms)  SELECT name
552
+ FROM sqlite_master
553
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
554
+ 
555
+ SQL (3.1ms) DROP TABLE "remove_widgets"
556
+ SQL (2.8ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
557
+ SQL (0.2ms)  SELECT name
558
+ FROM sqlite_master
559
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
560
+ 
561
+ SQL (24.8ms) DROP TABLE "scramble_widgets"
562
+ SQL (2.8ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
563
+ SQL (0.2ms)  SELECT name
564
+ FROM sqlite_master
565
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
566
+ 
567
+ SQL (4.2ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
568
+ SQL (0.3ms)  SELECT name
569
+ FROM sqlite_master
570
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
571
+ 
572
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
573
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
574
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
575
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper !**%*$@@@&%% test', NULL)
576
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
577
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper _lsatretesbcm test', NULL, NULL)
578
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
579
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: clanerupper scramble_test body', NULL)
580
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
581
+ SQL (0.4ms) select sqlite_version(*)
582
+ SQL (0.6ms)  SELECT name
583
+ FROM sqlite_master
584
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
585
+ 
586
+ SQL (5.3ms) DROP TABLE "widgets"
587
+ SQL (2.6ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
588
+ SQL (0.2ms)  SELECT name
589
+ FROM sqlite_master
590
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
591
+ 
592
+ SQL (3.0ms) DROP TABLE "replace_widgets"
593
+ SQL (2.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
594
+ SQL (0.2ms)  SELECT name
595
+ FROM sqlite_master
596
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
597
+ 
598
+ SQL (5.9ms) DROP TABLE "remove_widgets"
599
+ SQL (2.7ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
600
+ SQL (0.2ms)  SELECT name
601
+ FROM sqlite_master
602
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
603
+ 
604
+ SQL (2.6ms) DROP TABLE "scramble_widgets"
605
+ SQL (3.2ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
606
+ SQL (0.3ms)  SELECT name
607
+ FROM sqlite_master
608
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
609
+ 
610
+ SQL (18.1ms) DROP TABLE "custom_widgets"
611
+ SQL (2.9ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
612
+ SQL (0.2ms)  SELECT name
613
+ FROM sqlite_master
614
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
615
+ 
616
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
617
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
618
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
619
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper !&*&&!&*$&!* test', NULL)
620
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
621
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper rtblt_essacem test', NULL, NULL)
622
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
623
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: clanerupper scramble_test body', NULL)
624
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
625
+ SQL (0.4ms) select sqlite_version(*)
626
+ SQL (0.6ms)  SELECT name
627
+ FROM sqlite_master
628
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
629
+ 
630
+ SQL (30.9ms) DROP TABLE "widgets"
631
+ SQL (19.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
632
+ SQL (0.3ms)  SELECT name
633
+ FROM sqlite_master
634
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
635
+ 
636
+ SQL (2.7ms) DROP TABLE "replace_widgets"
637
+ SQL (2.7ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
638
+ SQL (0.2ms)  SELECT name
639
+ FROM sqlite_master
640
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
641
+ 
642
+ SQL (6.3ms) DROP TABLE "remove_widgets"
643
+ SQL (2.9ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
644
+ SQL (0.2ms)  SELECT name
645
+ FROM sqlite_master
646
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
647
+ 
648
+ SQL (2.8ms) DROP TABLE "scramble_widgets"
649
+ SQL (3.4ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
650
+ SQL (0.3ms)  SELECT name
651
+ FROM sqlite_master
652
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
653
+ 
654
+ SQL (3.1ms) DROP TABLE "custom_widgets"
655
+ SQL (2.8ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
656
+ SQL (0.2ms)  SELECT name
657
+ FROM sqlite_master
658
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
659
+ 
660
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
661
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
662
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
663
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper &@!*$&@!@@@& test', NULL)
664
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
665
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper mrstlesat_bec test', NULL, NULL)
666
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
667
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: clanerupper scramble_test body', NULL)
668
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
669
+ SQL (0.4ms) select sqlite_version(*)
670
+ SQL (0.6ms)  SELECT name
671
+ FROM sqlite_master
672
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
673
+ 
674
+ SQL (13.9ms) DROP TABLE "widgets"
675
+ SQL (10.7ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
676
+ SQL (0.3ms)  SELECT name
677
+ FROM sqlite_master
678
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
679
+ 
680
+ SQL (3.3ms) DROP TABLE "replace_widgets"
681
+ SQL (2.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
682
+ SQL (0.2ms)  SELECT name
683
+ FROM sqlite_master
684
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
685
+ 
686
+ SQL (5.7ms) DROP TABLE "remove_widgets"
687
+ SQL (2.7ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
688
+ SQL (0.2ms)  SELECT name
689
+ FROM sqlite_master
690
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
691
+ 
692
+ SQL (2.7ms) DROP TABLE "scramble_widgets"
693
+ SQL (18.9ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
694
+ SQL (0.3ms)  SELECT name
695
+ FROM sqlite_master
696
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
697
+ 
698
+ SQL (3.1ms) DROP TABLE "custom_widgets"
699
+ SQL (3.5ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
700
+ SQL (0.3ms)  SELECT name
701
+ FROM sqlite_master
702
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
703
+ 
704
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
705
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
706
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
707
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper @!&%&&*!*$&$ test', NULL)
708
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
709
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper tbeam_rsslcte test', NULL, NULL)
710
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
711
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
712
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
713
+ SQL (0.4ms) select sqlite_version(*)
714
+ SQL (0.6ms)  SELECT name
715
+ FROM sqlite_master
716
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
717
+ 
718
+ SQL (6.9ms) DROP TABLE "widgets"
719
+ SQL (2.7ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
720
+ SQL (0.2ms)  SELECT name
721
+ FROM sqlite_master
722
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
723
+ 
724
+ SQL (19.9ms) DROP TABLE "replace_widgets"
725
+ SQL (16.0ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
726
+ SQL (0.3ms)  SELECT name
727
+ FROM sqlite_master
728
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
729
+ 
730
+ SQL (3.2ms) DROP TABLE "remove_widgets"
731
+ SQL (4.0ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
732
+ SQL (0.3ms)  SELECT name
733
+ FROM sqlite_master
734
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
735
+ 
736
+ SQL (2.9ms) DROP TABLE "scramble_widgets"
737
+ SQL (2.8ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
738
+ SQL (0.2ms)  SELECT name
739
+ FROM sqlite_master
740
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
741
+ 
742
+ SQL (23.7ms) DROP TABLE "custom_widgets"
743
+ SQL (2.8ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
744
+ SQL (0.3ms)  SELECT name
745
+ FROM sqlite_master
746
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
747
+ 
748
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
749
+ SQL (0.4ms)  SELECT name
750
+ FROM sqlite_master
751
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
752
+ 
753
+ SQL (0.4ms) select sqlite_version(*)
754
+ SQL (0.6ms)  SELECT name
755
+ FROM sqlite_master
756
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
757
+ 
758
+ SQL (19.7ms) DROP TABLE "widgets"
759
+ SQL (4.9ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
760
+ SQL (0.3ms)  SELECT name
761
+ FROM sqlite_master
762
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
763
+ 
764
+ SQL (2.8ms) DROP TABLE "replace_widgets"
765
+ SQL (2.8ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
766
+ SQL (0.2ms)  SELECT name
767
+ FROM sqlite_master
768
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
769
+ 
770
+ SQL (5.8ms) DROP TABLE "remove_widgets"
771
+ SQL (2.8ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
772
+ SQL (0.2ms)  SELECT name
773
+ FROM sqlite_master
774
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
775
+ 
776
+ SQL (2.5ms) DROP TABLE "scramble_widgets"
777
+ SQL (22.9ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
778
+ SQL (0.3ms)  SELECT name
779
+ FROM sqlite_master
780
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
781
+ 
782
+ SQL (2.6ms) DROP TABLE "custom_widgets"
783
+ SQL (2.7ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
784
+ SQL (0.3ms)  SELECT name
785
+ FROM sqlite_master
786
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
787
+ 
788
+ SQL (4.8ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
789
+ SQL (0.3ms)  SELECT name
790
+ FROM sqlite_master
791
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
792
+ 
793
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
794
+ SQL (0.4ms)  SELECT name
795
+ FROM sqlite_master
796
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
797
+ 
798
+ SQL (0.4ms) select sqlite_version(*)
799
+ SQL (0.6ms)  SELECT name
800
+ FROM sqlite_master
801
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
802
+ 
803
+ SQL (6.5ms) DROP TABLE "widgets"
804
+ SQL (12.9ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
805
+ SQL (0.3ms)  SELECT name
806
+ FROM sqlite_master
807
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
808
+ 
809
+ SQL (2.8ms) DROP TABLE "replace_widgets"
810
+ SQL (38.6ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
811
+ SQL (0.4ms)  SELECT name
812
+ FROM sqlite_master
813
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
814
+ 
815
+ SQL (3.1ms) DROP TABLE "remove_widgets"
816
+ SQL (2.7ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
817
+ SQL (0.3ms)  SELECT name
818
+ FROM sqlite_master
819
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
820
+ 
821
+ SQL (26.7ms) DROP TABLE "scramble_widgets"
822
+ SQL (13.6ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
823
+ SQL (0.3ms)  SELECT name
824
+ FROM sqlite_master
825
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
826
+ 
827
+ SQL (3.0ms) DROP TABLE "custom_widgets"
828
+ SQL (2.7ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
829
+ SQL (0.5ms)  SELECT name
830
+ FROM sqlite_master
831
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
832
+ 
833
+ SQL (7.6ms) DROP TABLE "callback_widgets"
834
+ SQL (1.7ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
835
+ SQL (0.3ms)  SELECT name
836
+ FROM sqlite_master
837
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
838
+ 
839
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
840
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
841
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
842
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper $$&%$$*@!$%* test', NULL)
843
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
844
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper blesa_stmetcr test', NULL, NULL)
845
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
846
+ SQL (0.4ms) select sqlite_version(*)
847
+ SQL (0.6ms)  SELECT name
848
+ FROM sqlite_master
849
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
850
+ 
851
+ SQL (2.2ms) DROP TABLE "widgets"
852
+ SQL (1.7ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
853
+ SQL (0.2ms)  SELECT name
854
+ FROM sqlite_master
855
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
856
+ 
857
+ SQL (1.6ms) DROP TABLE "replace_widgets"
858
+ SQL (17.6ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
859
+ SQL (0.3ms)  SELECT name
860
+ FROM sqlite_master
861
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
862
+ 
863
+ SQL (1.6ms) DROP TABLE "remove_widgets"
864
+ SQL (1.3ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
865
+ SQL (0.4ms)  SELECT name
866
+ FROM sqlite_master
867
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
868
+ 
869
+ SQL (35.7ms) DROP TABLE "scramble_widgets"
870
+ SQL (1.9ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
871
+ SQL (0.3ms)  SELECT name
872
+ FROM sqlite_master
873
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
874
+ 
875
+ SQL (1.5ms) DROP TABLE "custom_widgets"
876
+ SQL (1.5ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
877
+ SQL (0.2ms)  SELECT name
878
+ FROM sqlite_master
879
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
880
+ 
881
+ SQL (2.1ms) DROP TABLE "callback_widgets"
882
+ SQL (1.4ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
883
+ SQL (0.2ms)  SELECT name
884
+ FROM sqlite_master
885
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
886
+ 
887
+ SQL (0.3ms) SELECT version FROM "schema_migrations"
888
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
889
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
890
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper $%*$!!*!&*@@ test', NULL)
891
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
892
+ ScrambleWidget Create (0.3ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper recaltemsbs_t test', NULL, NULL)
893
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
894
+ SQL (0.4ms) select sqlite_version(*)
895
+ SQL (0.7ms)  SELECT name
896
+ FROM sqlite_master
897
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
898
+ 
899
+ SQL (10.3ms) DROP TABLE "widgets"
900
+ SQL (2.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
901
+ SQL (0.3ms)  SELECT name
902
+ FROM sqlite_master
903
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
904
+ 
905
+ SQL (2.2ms) DROP TABLE "replace_widgets"
906
+ SQL (2.0ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
907
+ SQL (0.2ms)  SELECT name
908
+ FROM sqlite_master
909
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
910
+ 
911
+ SQL (1.5ms) DROP TABLE "remove_widgets"
912
+ SQL (1.3ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
913
+ SQL (0.3ms)  SELECT name
914
+ FROM sqlite_master
915
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
916
+ 
917
+ SQL (1.8ms) DROP TABLE "scramble_widgets"
918
+ SQL (2.2ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
919
+ SQL (0.2ms)  SELECT name
920
+ FROM sqlite_master
921
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
922
+ 
923
+ SQL (1.8ms) DROP TABLE "custom_widgets"
924
+ SQL (1.4ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
925
+ SQL (0.2ms)  SELECT name
926
+ FROM sqlite_master
927
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
928
+ 
929
+ SQL (19.6ms) DROP TABLE "callback_widgets"
930
+ SQL (1.8ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
931
+ SQL (0.3ms)  SELECT name
932
+ FROM sqlite_master
933
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
934
+ 
935
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
936
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
937
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
938
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper !%$$$%$*&%!$ test', NULL)
939
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
940
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper a_bttcleessrm test', NULL, NULL)
941
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
942
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
943
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
944
+ SQL (0.4ms) select sqlite_version(*)
945
+ SQL (0.7ms)  SELECT name
946
+ FROM sqlite_master
947
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
948
+ 
949
+ SQL (5.5ms) DROP TABLE "widgets"
950
+ SQL (1.7ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
951
+ SQL (0.3ms)  SELECT name
952
+ FROM sqlite_master
953
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
954
+ 
955
+ SQL (1.6ms) DROP TABLE "replace_widgets"
956
+ SQL (12.2ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
957
+ SQL (0.5ms)  SELECT name
958
+ FROM sqlite_master
959
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
960
+ 
961
+ SQL (1.5ms) DROP TABLE "remove_widgets"
962
+ SQL (1.3ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
963
+ SQL (0.2ms)  SELECT name
964
+ FROM sqlite_master
965
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
966
+ 
967
+ SQL (1.4ms) DROP TABLE "scramble_widgets"
968
+ SQL (1.4ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
969
+ SQL (0.3ms)  SELECT name
970
+ FROM sqlite_master
971
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
972
+ 
973
+ SQL (20.1ms) DROP TABLE "custom_widgets"
974
+ SQL (2.5ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
975
+ SQL (0.3ms)  SELECT name
976
+ FROM sqlite_master
977
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
978
+ 
979
+ SQL (1.6ms) DROP TABLE "callback_widgets"
980
+ SQL (1.7ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
981
+ SQL (0.2ms)  SELECT name
982
+ FROM sqlite_master
983
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
984
+ 
985
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
986
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
987
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
988
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper !%%%@*&%!@$& test', NULL)
989
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
990
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper tslrateecmbs_ test', NULL, NULL)
991
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
992
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
993
+ CustomWidget Load (0.2ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
994
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper aetulest_dtf body', NULL, NULL)
995
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
996
+ SQL (0.4ms) select sqlite_version(*)
997
+ SQL (0.7ms)  SELECT name
998
+ FROM sqlite_master
999
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1000
+ 
1001
+ SQL (4.7ms) DROP TABLE "widgets"
1002
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1003
+ SQL (0.3ms)  SELECT name
1004
+ FROM sqlite_master
1005
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1006
+ 
1007
+ SQL (1.5ms) DROP TABLE "replace_widgets"
1008
+ SQL (1.4ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1009
+ SQL (0.3ms)  SELECT name
1010
+ FROM sqlite_master
1011
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1012
+ 
1013
+ SQL (1.4ms) DROP TABLE "remove_widgets"
1014
+ SQL (1.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1015
+ SQL (0.2ms)  SELECT name
1016
+ FROM sqlite_master
1017
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1018
+ 
1019
+ SQL (5.4ms) DROP TABLE "scramble_widgets"
1020
+ SQL (2.0ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1021
+ SQL (0.3ms)  SELECT name
1022
+ FROM sqlite_master
1023
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1024
+ 
1025
+ SQL (1.6ms) DROP TABLE "custom_widgets"
1026
+ SQL (1.5ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1027
+ SQL (0.2ms)  SELECT name
1028
+ FROM sqlite_master
1029
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1030
+ 
1031
+ SQL (1.6ms) DROP TABLE "callback_widgets"
1032
+ SQL (19.5ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1033
+ SQL (0.3ms)  SELECT name
1034
+ FROM sqlite_master
1035
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1036
+ 
1037
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1038
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1039
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1040
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper $@$@%$%@!$&% test', NULL)
1041
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1042
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper mabl_etercsst test', NULL, NULL)
1043
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1044
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1045
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1046
+ ScrambleWidget Create (0.3ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper telsa_fetudt body', NULL, NULL)
1047
+ ScrambleWidget Load (0.6ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1048
+ SQL (0.4ms) select sqlite_version(*)
1049
+ SQL (0.6ms)  SELECT name
1050
+ FROM sqlite_master
1051
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1052
+ 
1053
+ SQL (3.2ms) DROP TABLE "widgets"
1054
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1055
+ SQL (0.3ms)  SELECT name
1056
+ FROM sqlite_master
1057
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1058
+ 
1059
+ SQL (1.4ms) DROP TABLE "replace_widgets"
1060
+ SQL (1.4ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1061
+ SQL (0.2ms)  SELECT name
1062
+ FROM sqlite_master
1063
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1064
+ 
1065
+ SQL (1.5ms) DROP TABLE "remove_widgets"
1066
+ SQL (1.4ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1067
+ SQL (0.2ms)  SELECT name
1068
+ FROM sqlite_master
1069
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1070
+ 
1071
+ SQL (1.4ms) DROP TABLE "scramble_widgets"
1072
+ SQL (4.6ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1073
+ SQL (0.3ms)  SELECT name
1074
+ FROM sqlite_master
1075
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1076
+ 
1077
+ SQL (1.6ms) DROP TABLE "custom_widgets"
1078
+ SQL (1.7ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1079
+ SQL (0.2ms)  SELECT name
1080
+ FROM sqlite_master
1081
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1082
+ 
1083
+ SQL (1.5ms) DROP TABLE "callback_widgets"
1084
+ SQL (1.4ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1085
+ SQL (0.2ms)  SELECT name
1086
+ FROM sqlite_master
1087
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1088
+ 
1089
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1090
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1091
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1092
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper !%$$*@&!!&$* test', NULL)
1093
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1094
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper sltestemrac_b test', NULL, NULL)
1095
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1096
+ Widget Create (0.2ms) INSERT INTO "widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper ssomuecttt_ body', NULL)
1097
+ Widget Load (0.2ms) SELECT * FROM "widgets" WHERE ("widgets"."id" = 1) 
1098
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1099
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1100
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper dsletu_tfeta body', NULL, NULL)
1101
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1102
+ SQL (0.4ms) select sqlite_version(*)
1103
+ SQL (0.6ms)  SELECT name
1104
+ FROM sqlite_master
1105
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1106
+ 
1107
+ SQL (3.4ms) DROP TABLE "widgets"
1108
+ SQL (1.8ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1109
+ SQL (0.3ms)  SELECT name
1110
+ FROM sqlite_master
1111
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1112
+ 
1113
+ SQL (1.4ms) DROP TABLE "replace_widgets"
1114
+ SQL (1.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1115
+ SQL (0.2ms)  SELECT name
1116
+ FROM sqlite_master
1117
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1118
+ 
1119
+ SQL (1.2ms) DROP TABLE "remove_widgets"
1120
+ SQL (1.3ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1121
+ SQL (0.2ms)  SELECT name
1122
+ FROM sqlite_master
1123
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1124
+ 
1125
+ SQL (1.4ms) DROP TABLE "scramble_widgets"
1126
+ SQL (4.8ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1127
+ SQL (0.3ms)  SELECT name
1128
+ FROM sqlite_master
1129
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1130
+ 
1131
+ SQL (1.5ms) DROP TABLE "custom_widgets"
1132
+ SQL (1.4ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1133
+ SQL (0.2ms)  SELECT name
1134
+ FROM sqlite_master
1135
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1136
+ 
1137
+ SQL (1.9ms) DROP TABLE "callback_widgets"
1138
+ SQL (1.5ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1139
+ SQL (0.2ms)  SELECT name
1140
+ FROM sqlite_master
1141
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1142
+ 
1143
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1144
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1145
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1146
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper @**!%!!!&&*& test', NULL)
1147
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1148
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper tlst_rebacems test', NULL, NULL)
1149
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1150
+ CallbackWidget Create (0.2ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper mcsto_etuts body', NULL)
1151
+ CallbackWidget Load (0.2ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
1152
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1153
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1154
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper _tettlfsaedu body', NULL, NULL)
1155
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1156
+ SQL (0.4ms) select sqlite_version(*)
1157
+ SQL (0.6ms)  SELECT name
1158
+ FROM sqlite_master
1159
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1160
+ 
1161
+ SQL (6.3ms) DROP TABLE "widgets"
1162
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1163
+ SQL (0.3ms)  SELECT name
1164
+ FROM sqlite_master
1165
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1166
+ 
1167
+ SQL (1.5ms) DROP TABLE "replace_widgets"
1168
+ SQL (1.4ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1169
+ SQL (0.2ms)  SELECT name
1170
+ FROM sqlite_master
1171
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1172
+ 
1173
+ SQL (1.5ms) DROP TABLE "remove_widgets"
1174
+ SQL (1.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1175
+ SQL (0.3ms)  SELECT name
1176
+ FROM sqlite_master
1177
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1178
+ 
1179
+ SQL (4.6ms) DROP TABLE "scramble_widgets"
1180
+ SQL (2.0ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1181
+ SQL (0.3ms)  SELECT name
1182
+ FROM sqlite_master
1183
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1184
+ 
1185
+ SQL (1.7ms) DROP TABLE "custom_widgets"
1186
+ SQL (1.7ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1187
+ SQL (0.2ms)  SELECT name
1188
+ FROM sqlite_master
1189
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1190
+ 
1191
+ SQL (1.8ms) DROP TABLE "callback_widgets"
1192
+ SQL (1.5ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1193
+ SQL (0.2ms)  SELECT name
1194
+ FROM sqlite_master
1195
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1196
+ 
1197
+ SQL (0.3ms) SELECT version FROM "schema_migrations"
1198
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1199
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1200
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper @%%!$%%$*!%% test', NULL)
1201
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1202
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper tlbacmes_tres test', NULL, NULL)
1203
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1204
+ CallbackWidget Create (0.2ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper tcutt_ssome body', NULL)
1205
+ CallbackWidget Load (0.3ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
1206
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1207
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1208
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper flu_etdsteat body', NULL, NULL)
1209
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1210
+ SQL (0.4ms) select sqlite_version(*)
1211
+ SQL (0.6ms)  SELECT name
1212
+ FROM sqlite_master
1213
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1214
+ 
1215
+ SQL (6.3ms) DROP TABLE "widgets"
1216
+ SQL (1.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1217
+ SQL (0.3ms)  SELECT name
1218
+ FROM sqlite_master
1219
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1220
+ 
1221
+ SQL (1.6ms) DROP TABLE "replace_widgets"
1222
+ SQL (1.6ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1223
+ SQL (0.2ms)  SELECT name
1224
+ FROM sqlite_master
1225
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1226
+ 
1227
+ SQL (1.5ms) DROP TABLE "remove_widgets"
1228
+ SQL (1.4ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1229
+ SQL (0.3ms)  SELECT name
1230
+ FROM sqlite_master
1231
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1232
+ 
1233
+ SQL (4.6ms) DROP TABLE "scramble_widgets"
1234
+ SQL (1.4ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1235
+ SQL (0.3ms)  SELECT name
1236
+ FROM sqlite_master
1237
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1238
+ 
1239
+ SQL (1.4ms) DROP TABLE "custom_widgets"
1240
+ SQL (1.4ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1241
+ SQL (0.2ms)  SELECT name
1242
+ FROM sqlite_master
1243
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1244
+ 
1245
+ SQL (1.7ms) DROP TABLE "callback_widgets"
1246
+ SQL (1.6ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1247
+ SQL (0.2ms)  SELECT name
1248
+ FROM sqlite_master
1249
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1250
+ 
1251
+ SQL (0.3ms) SELECT version FROM "schema_migrations"
1252
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1253
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1254
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper !&$$!@$&%*@* test', NULL)
1255
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1256
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper rlea_bmtscest test', NULL, NULL)
1257
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1258
+ CallbackWidget Create (0.3ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper mces_otutst body', NULL)
1259
+ CallbackWidget Load (0.2ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
1260
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1261
+ CustomWidget Load (0.4ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1262
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper ueaedl_ttfst body', NULL, NULL)
1263
+ ScrambleWidget Load (0.4ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1264
+ SQL (0.4ms) select sqlite_version(*)
1265
+ SQL (0.6ms)  SELECT name
1266
+ FROM sqlite_master
1267
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1268
+ 
1269
+ SQL (5.6ms) DROP TABLE "widgets"
1270
+ SQL (1.7ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1271
+ SQL (0.3ms)  SELECT name
1272
+ FROM sqlite_master
1273
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1274
+ 
1275
+ SQL (1.7ms) DROP TABLE "replace_widgets"
1276
+ SQL (2.1ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1277
+ SQL (0.3ms)  SELECT name
1278
+ FROM sqlite_master
1279
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1280
+ 
1281
+ SQL (1.3ms) DROP TABLE "remove_widgets"
1282
+ SQL (1.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1283
+ SQL (0.2ms)  SELECT name
1284
+ FROM sqlite_master
1285
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1286
+ 
1287
+ SQL (4.4ms) DROP TABLE "scramble_widgets"
1288
+ SQL (1.7ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1289
+ SQL (0.2ms)  SELECT name
1290
+ FROM sqlite_master
1291
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1292
+ 
1293
+ SQL (1.5ms) DROP TABLE "custom_widgets"
1294
+ SQL (1.6ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1295
+ SQL (0.2ms)  SELECT name
1296
+ FROM sqlite_master
1297
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1298
+ 
1299
+ SQL (1.5ms) DROP TABLE "callback_widgets"
1300
+ SQL (2.2ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1301
+ SQL (0.4ms)  SELECT name
1302
+ FROM sqlite_master
1303
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1304
+ 
1305
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1306
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1307
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1308
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper *@&%*%!&!@!% test', NULL)
1309
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1310
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper srctelabetsm_ test', NULL, NULL)
1311
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1312
+ CallbackWidget Create (0.2ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper tsts_cmeout body', NULL)
1313
+ CallbackWidget Load (0.3ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
1314
+ CustomWidget Create (0.3ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1315
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1316
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper setu_tflaedt body', NULL, NULL)
1317
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1318
+ SQL (0.4ms) select sqlite_version(*)
1319
+ SQL (0.6ms)  SELECT name
1320
+ FROM sqlite_master
1321
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1322
+ 
1323
+ SQL (3.2ms) DROP TABLE "widgets"
1324
+ SQL (1.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1325
+ SQL (0.2ms)  SELECT name
1326
+ FROM sqlite_master
1327
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1328
+ 
1329
+ SQL (1.5ms) DROP TABLE "replace_widgets"
1330
+ SQL (1.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1331
+ SQL (0.2ms)  SELECT name
1332
+ FROM sqlite_master
1333
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1334
+ 
1335
+ SQL (1.6ms) DROP TABLE "remove_widgets"
1336
+ SQL (1.4ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1337
+ SQL (0.2ms)  SELECT name
1338
+ FROM sqlite_master
1339
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1340
+ 
1341
+ SQL (4.7ms) DROP TABLE "scramble_widgets"
1342
+ SQL (1.7ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1343
+ SQL (0.3ms)  SELECT name
1344
+ FROM sqlite_master
1345
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1346
+ 
1347
+ SQL (4.5ms) DROP TABLE "custom_widgets"
1348
+ SQL (2.7ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1349
+ SQL (0.5ms)  SELECT name
1350
+ FROM sqlite_master
1351
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1352
+ 
1353
+ SQL (17.2ms) DROP TABLE "callback_widgets"
1354
+ SQL (1.6ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1355
+ SQL (0.3ms)  SELECT name
1356
+ FROM sqlite_master
1357
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1358
+ 
1359
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1360
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1361
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1362
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper ***@!@@&&%&% test', NULL)
1363
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1364
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper sresc_albttme test', NULL, NULL)
1365
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1366
+ CallbackWidget Create (0.2ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper tstcteumso_ body', NULL)
1367
+ CallbackWidget Load (0.3ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
1368
+ CustomWidget Create (0.6ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1369
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1370
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper ttetueda_sfl body', NULL, NULL)
1371
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1372
+ SQL (0.4ms) select sqlite_version(*)
1373
+ SQL (0.6ms)  SELECT name
1374
+ FROM sqlite_master
1375
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1376
+ 
1377
+ SQL (2.2ms) DROP TABLE "widgets"
1378
+ SQL (1.6ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1379
+ SQL (0.3ms)  SELECT name
1380
+ FROM sqlite_master
1381
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1382
+ 
1383
+ SQL (2.1ms) DROP TABLE "replace_widgets"
1384
+ SQL (1.6ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1385
+ SQL (0.2ms)  SELECT name
1386
+ FROM sqlite_master
1387
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1388
+ 
1389
+ SQL (1.4ms) DROP TABLE "remove_widgets"
1390
+ SQL (1.4ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1391
+ SQL (0.2ms)  SELECT name
1392
+ FROM sqlite_master
1393
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1394
+ 
1395
+ SQL (5.6ms) DROP TABLE "scramble_widgets"
1396
+ SQL (1.7ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1397
+ SQL (0.2ms)  SELECT name
1398
+ FROM sqlite_master
1399
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1400
+ 
1401
+ SQL (1.4ms) DROP TABLE "custom_widgets"
1402
+ SQL (1.9ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1403
+ SQL (0.3ms)  SELECT name
1404
+ FROM sqlite_master
1405
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1406
+ 
1407
+ SQL (1.6ms) DROP TABLE "callback_widgets"
1408
+ SQL (16.4ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1409
+ SQL (0.3ms)  SELECT name
1410
+ FROM sqlite_master
1411
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1412
+ 
1413
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1414
+ SQL (0.4ms) select sqlite_version(*)
1415
+ SQL (0.6ms)  SELECT name
1416
+ FROM sqlite_master
1417
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1418
+ 
1419
+ SQL (2.3ms) DROP TABLE "widgets"
1420
+ SQL (1.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1421
+ SQL (0.2ms)  SELECT name
1422
+ FROM sqlite_master
1423
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1424
+ 
1425
+ SQL (2.0ms) DROP TABLE "replace_widgets"
1426
+ SQL (1.4ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1427
+ SQL (0.2ms)  SELECT name
1428
+ FROM sqlite_master
1429
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1430
+ 
1431
+ SQL (1.3ms) DROP TABLE "remove_widgets"
1432
+ SQL (1.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1433
+ SQL (0.2ms)  SELECT name
1434
+ FROM sqlite_master
1435
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1436
+ 
1437
+ SQL (4.4ms) DROP TABLE "scramble_widgets"
1438
+ SQL (1.4ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1439
+ SQL (0.2ms)  SELECT name
1440
+ FROM sqlite_master
1441
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1442
+ 
1443
+ SQL (1.4ms) DROP TABLE "custom_widgets"
1444
+ SQL (1.5ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1445
+ SQL (0.2ms)  SELECT name
1446
+ FROM sqlite_master
1447
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1448
+ 
1449
+ SQL (1.4ms) DROP TABLE "callback_widgets"
1450
+ SQL (2.8ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1451
+ SQL (0.4ms)  SELECT name
1452
+ FROM sqlite_master
1453
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1454
+ 
1455
+ SQL (1.9ms) SELECT version FROM "schema_migrations"
1456
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1457
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1458
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper *%%*@%$%$@&@ test', NULL)
1459
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1460
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper r_bceslttemsa test', NULL, NULL)
1461
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1462
+ CallbackWidget Create (0.2ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES('CALLBACK', 'cleanerupper _utsoesmttc body', NULL)
1463
+ CallbackWidget Load (0.3ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
1464
+ CustomWidget Create (0.5ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1465
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1466
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper eeuttas_tldf body', NULL, NULL)
1467
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1468
+ SQL (0.4ms) select sqlite_version(*)
1469
+ SQL (0.6ms)  SELECT name
1470
+ FROM sqlite_master
1471
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1472
+ 
1473
+ SQL (2.7ms) DROP TABLE "widgets"
1474
+ SQL (1.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1475
+ SQL (0.3ms)  SELECT name
1476
+ FROM sqlite_master
1477
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1478
+ 
1479
+ SQL (1.5ms) DROP TABLE "replace_widgets"
1480
+ SQL (1.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1481
+ SQL (0.3ms)  SELECT name
1482
+ FROM sqlite_master
1483
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1484
+ 
1485
+ SQL (1.4ms) DROP TABLE "remove_widgets"
1486
+ SQL (1.3ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1487
+ SQL (0.2ms)  SELECT name
1488
+ FROM sqlite_master
1489
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1490
+ 
1491
+ SQL (4.8ms) DROP TABLE "scramble_widgets"
1492
+ SQL (1.5ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1493
+ SQL (0.2ms)  SELECT name
1494
+ FROM sqlite_master
1495
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1496
+ 
1497
+ SQL (1.7ms) DROP TABLE "custom_widgets"
1498
+ SQL (1.6ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1499
+ SQL (0.2ms)  SELECT name
1500
+ FROM sqlite_master
1501
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1502
+ 
1503
+ SQL (1.6ms) DROP TABLE "callback_widgets"
1504
+ SQL (1.4ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1505
+ SQL (0.2ms)  SELECT name
1506
+ FROM sqlite_master
1507
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1508
+ 
1509
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1510
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1511
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1512
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper @@$$@&$*%*!& test', NULL)
1513
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1514
+ ScrambleWidget Create (0.4ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper lemtbtsea_rsc test', NULL, NULL)
1515
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1516
+ CallbackWidget Create (0.3ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES('CALLBACK', 'cleanerupper tcttum_eoss body', NULL)
1517
+ CallbackWidget Load (0.3ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
1518
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1519
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1520
+ ScrambleWidget Create (0.3ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper etfte_sdtalu body', NULL, NULL)
1521
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1522
+ SQL (0.4ms) select sqlite_version(*)
1523
+ SQL (0.7ms)  SELECT name
1524
+ FROM sqlite_master
1525
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1526
+ 
1527
+ SQL (5.0ms) DROP TABLE "widgets"
1528
+ SQL (1.6ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1529
+ SQL (0.3ms)  SELECT name
1530
+ FROM sqlite_master
1531
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1532
+ 
1533
+ SQL (1.4ms) DROP TABLE "replace_widgets"
1534
+ SQL (1.4ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1535
+ SQL (0.2ms)  SELECT name
1536
+ FROM sqlite_master
1537
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1538
+ 
1539
+ SQL (1.6ms) DROP TABLE "remove_widgets"
1540
+ SQL (1.9ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1541
+ SQL (0.2ms)  SELECT name
1542
+ FROM sqlite_master
1543
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1544
+ 
1545
+ SQL (4.7ms) DROP TABLE "scramble_widgets"
1546
+ SQL (1.5ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1547
+ SQL (0.2ms)  SELECT name
1548
+ FROM sqlite_master
1549
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1550
+ 
1551
+ SQL (1.6ms) DROP TABLE "custom_widgets"
1552
+ SQL (1.5ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1553
+ SQL (0.2ms)  SELECT name
1554
+ FROM sqlite_master
1555
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1556
+ 
1557
+ SQL (1.6ms) DROP TABLE "callback_widgets"
1558
+ SQL (1.5ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1559
+ SQL (0.2ms)  SELECT name
1560
+ FROM sqlite_master
1561
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1562
+ 
1563
+ SQL (0.3ms) SELECT version FROM "schema_migrations"
1564
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1565
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1566
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper %*@%@&@!&&%! test', NULL)
1567
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1568
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper etbmssale_trc test', NULL, NULL)
1569
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1570
+ CallbackWidget Create (0.2ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES('CALLBACK', 'cleanerupper temtscts_uo body', NULL)
1571
+ CallbackWidget Load (0.3ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
1572
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1573
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1574
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper lateutfds_et body', NULL, NULL)
1575
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1576
+ SQL (0.4ms) select sqlite_version(*)
1577
+ SQL (0.6ms)  SELECT name
1578
+ FROM sqlite_master
1579
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1580
+ 
1581
+ SQL (3.5ms) DROP TABLE "widgets"
1582
+ SQL (2.0ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1583
+ SQL (0.3ms)  SELECT name
1584
+ FROM sqlite_master
1585
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1586
+ 
1587
+ SQL (1.7ms) DROP TABLE "replace_widgets"
1588
+ SQL (1.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1589
+ SQL (0.2ms)  SELECT name
1590
+ FROM sqlite_master
1591
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1592
+ 
1593
+ SQL (1.5ms) DROP TABLE "remove_widgets"
1594
+ SQL (1.4ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1595
+ SQL (0.2ms)  SELECT name
1596
+ FROM sqlite_master
1597
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1598
+ 
1599
+ SQL (4.4ms) DROP TABLE "scramble_widgets"
1600
+ SQL (1.6ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1601
+ SQL (0.2ms)  SELECT name
1602
+ FROM sqlite_master
1603
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1604
+ 
1605
+ SQL (1.4ms) DROP TABLE "custom_widgets"
1606
+ SQL (1.4ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1607
+ SQL (0.3ms)  SELECT name
1608
+ FROM sqlite_master
1609
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1610
+ 
1611
+ SQL (1.7ms) DROP TABLE "callback_widgets"
1612
+ SQL (1.4ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1613
+ SQL (0.2ms)  SELECT name
1614
+ FROM sqlite_master
1615
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1616
+ 
1617
+ SQL (29.0ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1618
+ SQL (0.3ms)  SELECT name
1619
+ FROM sqlite_master
1620
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1621
+ 
1622
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1623
+ CallbackWidget Create (0.3ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper ttu_mcoests body', NULL)
1624
+ CallbackWidget Load (0.3ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
1625
+ FalseCallbackWidget Create (0.2ms) INSERT INTO "false_callback_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper sotsect_mut body', NULL)
1626
+ SQL (0.4ms) select sqlite_version(*)
1627
+ SQL (0.7ms)  SELECT name
1628
+ FROM sqlite_master
1629
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1630
+ 
1631
+ SQL (5.9ms) DROP TABLE "widgets"
1632
+ SQL (1.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1633
+ SQL (0.3ms)  SELECT name
1634
+ FROM sqlite_master
1635
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1636
+ 
1637
+ SQL (1.9ms) DROP TABLE "replace_widgets"
1638
+ SQL (1.4ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1639
+ SQL (0.3ms)  SELECT name
1640
+ FROM sqlite_master
1641
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1642
+ 
1643
+ SQL (1.4ms) DROP TABLE "remove_widgets"
1644
+ SQL (1.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1645
+ SQL (0.3ms)  SELECT name
1646
+ FROM sqlite_master
1647
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1648
+ 
1649
+ SQL (4.6ms) DROP TABLE "scramble_widgets"
1650
+ SQL (1.4ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1651
+ SQL (0.3ms)  SELECT name
1652
+ FROM sqlite_master
1653
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1654
+ 
1655
+ SQL (1.4ms) DROP TABLE "custom_widgets"
1656
+ SQL (1.8ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1657
+ SQL (0.3ms)  SELECT name
1658
+ FROM sqlite_master
1659
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1660
+ 
1661
+ SQL (1.5ms) DROP TABLE "callback_widgets"
1662
+ SQL (21.0ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1663
+ SQL (0.4ms)  SELECT name
1664
+ FROM sqlite_master
1665
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1666
+ 
1667
+ SQL (2.1ms) DROP TABLE "false_callback_widgets"
1668
+ SQL (1.6ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1669
+ SQL (0.3ms)  SELECT name
1670
+ FROM sqlite_master
1671
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1672
+ 
1673
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1674
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1675
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1676
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper &@&*!@@%**@! test', NULL)
1677
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1678
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper mrl_sestactbe test', NULL, NULL)
1679
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1680
+ CustomWidget Create (0.3ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1681
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1682
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper utafls_etted body', NULL, NULL)
1683
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1684
+ SQL (0.4ms) select sqlite_version(*)
1685
+ SQL (0.7ms)  SELECT name
1686
+ FROM sqlite_master
1687
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1688
+ 
1689
+ SQL (6.0ms) DROP TABLE "widgets"
1690
+ SQL (1.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1691
+ SQL (0.3ms)  SELECT name
1692
+ FROM sqlite_master
1693
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1694
+ 
1695
+ SQL (1.5ms) DROP TABLE "replace_widgets"
1696
+ SQL (1.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1697
+ SQL (0.3ms)  SELECT name
1698
+ FROM sqlite_master
1699
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1700
+ 
1701
+ SQL (1.4ms) DROP TABLE "remove_widgets"
1702
+ SQL (1.6ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1703
+ SQL (0.3ms)  SELECT name
1704
+ FROM sqlite_master
1705
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1706
+ 
1707
+ SQL (4.4ms) DROP TABLE "scramble_widgets"
1708
+ SQL (1.6ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1709
+ SQL (0.4ms)  SELECT name
1710
+ FROM sqlite_master
1711
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1712
+ 
1713
+ SQL (1.7ms) DROP TABLE "custom_widgets"
1714
+ SQL (1.6ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1715
+ SQL (0.3ms)  SELECT name
1716
+ FROM sqlite_master
1717
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1718
+ 
1719
+ SQL (1.4ms) DROP TABLE "callback_widgets"
1720
+ SQL (1.4ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1721
+ SQL (0.3ms)  SELECT name
1722
+ FROM sqlite_master
1723
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1724
+ 
1725
+ SQL (19.3ms) DROP TABLE "false_callback_widgets"
1726
+ SQL (2.3ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1727
+ SQL (0.4ms)  SELECT name
1728
+ FROM sqlite_master
1729
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1730
+ 
1731
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1732
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1733
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1734
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper !*@$*!@!$$&$ test', NULL)
1735
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1736
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper tmer_bslcesat test', NULL, NULL)
1737
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1738
+ CustomWidget Create (0.3ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
1739
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
1740
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper ltudtaef_tse body', NULL, NULL)
1741
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1742
+ SQL (0.4ms) select sqlite_version(*)
1743
+ SQL (0.7ms)  SELECT name
1744
+ FROM sqlite_master
1745
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1746
+ 
1747
+ SQL (3.0ms) DROP TABLE "widgets"
1748
+ SQL (1.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1749
+ SQL (0.3ms)  SELECT name
1750
+ FROM sqlite_master
1751
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1752
+ 
1753
+ SQL (1.5ms) DROP TABLE "replace_widgets"
1754
+ SQL (1.4ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1755
+ SQL (0.3ms)  SELECT name
1756
+ FROM sqlite_master
1757
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1758
+ 
1759
+ SQL (1.4ms) DROP TABLE "remove_widgets"
1760
+ SQL (1.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1761
+ SQL (0.3ms)  SELECT name
1762
+ FROM sqlite_master
1763
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1764
+ 
1765
+ SQL (1.5ms) DROP TABLE "scramble_widgets"
1766
+ SQL (4.4ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1767
+ SQL (0.3ms)  SELECT name
1768
+ FROM sqlite_master
1769
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1770
+ 
1771
+ SQL (1.7ms) DROP TABLE "custom_widgets"
1772
+ SQL (1.6ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1773
+ SQL (0.3ms)  SELECT name
1774
+ FROM sqlite_master
1775
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1776
+ 
1777
+ SQL (1.6ms) DROP TABLE "callback_widgets"
1778
+ SQL (1.5ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1779
+ SQL (0.3ms)  SELECT name
1780
+ FROM sqlite_master
1781
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1782
+ 
1783
+ SQL (1.7ms) DROP TABLE "false_callback_widgets"
1784
+ SQL (19.8ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1785
+ SQL (0.3ms)  SELECT name
1786
+ FROM sqlite_master
1787
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1788
+ 
1789
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1790
+ SQL (0.4ms) select sqlite_version(*)
1791
+ SQL (0.7ms)  SELECT name
1792
+ FROM sqlite_master
1793
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1794
+ 
1795
+ SQL (2.9ms) DROP TABLE "widgets"
1796
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1797
+ SQL (0.3ms)  SELECT name
1798
+ FROM sqlite_master
1799
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1800
+ 
1801
+ SQL (1.3ms) DROP TABLE "replace_widgets"
1802
+ SQL (1.4ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1803
+ SQL (0.3ms)  SELECT name
1804
+ FROM sqlite_master
1805
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1806
+ 
1807
+ SQL (1.6ms) DROP TABLE "remove_widgets"
1808
+ SQL (1.8ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1809
+ SQL (0.5ms)  SELECT name
1810
+ FROM sqlite_master
1811
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1812
+ 
1813
+ SQL (4.6ms) DROP TABLE "scramble_widgets"
1814
+ SQL (1.5ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1815
+ SQL (0.3ms)  SELECT name
1816
+ FROM sqlite_master
1817
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1818
+ 
1819
+ SQL (1.9ms) DROP TABLE "custom_widgets"
1820
+ SQL (1.4ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1821
+ SQL (0.3ms)  SELECT name
1822
+ FROM sqlite_master
1823
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1824
+ 
1825
+ SQL (1.6ms) DROP TABLE "callback_widgets"
1826
+ SQL (1.4ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1827
+ SQL (0.4ms)  SELECT name
1828
+ FROM sqlite_master
1829
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1830
+ 
1831
+ SQL (2.0ms) DROP TABLE "false_callback_widgets"
1832
+ SQL (1.6ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1833
+ SQL (0.3ms)  SELECT name
1834
+ FROM sqlite_master
1835
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1836
+ 
1837
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1838
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1839
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1840
+ ReplaceWidget Create (0.4ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper *@*&$&&@*%&$ test', NULL)
1841
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1842
+ ScrambleWidget Create (0.5ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper lsrattbemces_ test', NULL, NULL)
1843
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1844
+ SQL (0.5ms) select sqlite_version(*)
1845
+ SQL (0.7ms)  SELECT name
1846
+ FROM sqlite_master
1847
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1848
+ 
1849
+ SQL (4.8ms) DROP TABLE "widgets"
1850
+ SQL (1.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1851
+ SQL (0.3ms)  SELECT name
1852
+ FROM sqlite_master
1853
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1854
+ 
1855
+ SQL (1.4ms) DROP TABLE "replace_widgets"
1856
+ SQL (1.8ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1857
+ SQL (0.3ms)  SELECT name
1858
+ FROM sqlite_master
1859
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1860
+ 
1861
+ SQL (1.8ms) DROP TABLE "remove_widgets"
1862
+ SQL (1.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1863
+ SQL (0.3ms)  SELECT name
1864
+ FROM sqlite_master
1865
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1866
+ 
1867
+ SQL (1.7ms) DROP TABLE "scramble_widgets"
1868
+ SQL (1.6ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1869
+ SQL (0.3ms)  SELECT name
1870
+ FROM sqlite_master
1871
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1872
+ 
1873
+ SQL (1.9ms) DROP TABLE "custom_widgets"
1874
+ SQL (1.7ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1875
+ SQL (0.3ms)  SELECT name
1876
+ FROM sqlite_master
1877
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1878
+ 
1879
+ SQL (1.8ms) DROP TABLE "callback_widgets"
1880
+ SQL (18.3ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1881
+ SQL (0.6ms)  SELECT name
1882
+ FROM sqlite_master
1883
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1884
+ 
1885
+ SQL (2.3ms) DROP TABLE "false_callback_widgets"
1886
+ SQL (1.8ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1887
+ SQL (0.3ms)  SELECT name
1888
+ FROM sqlite_master
1889
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1890
+ 
1891
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1892
+ SQL (0.4ms) select sqlite_version(*)
1893
+ SQL (0.8ms)  SELECT name
1894
+ FROM sqlite_master
1895
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1896
+ 
1897
+ SQL (3.9ms) DROP TABLE "widgets"
1898
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1899
+ SQL (0.3ms)  SELECT name
1900
+ FROM sqlite_master
1901
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1902
+ 
1903
+ SQL (1.5ms) DROP TABLE "replace_widgets"
1904
+ SQL (1.5ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1905
+ SQL (0.3ms)  SELECT name
1906
+ FROM sqlite_master
1907
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1908
+ 
1909
+ SQL (1.5ms) DROP TABLE "remove_widgets"
1910
+ SQL (1.6ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1911
+ SQL (0.3ms)  SELECT name
1912
+ FROM sqlite_master
1913
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1914
+ 
1915
+ SQL (4.3ms) DROP TABLE "scramble_widgets"
1916
+ SQL (1.7ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1917
+ SQL (0.3ms)  SELECT name
1918
+ FROM sqlite_master
1919
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1920
+ 
1921
+ SQL (1.8ms) DROP TABLE "custom_widgets"
1922
+ SQL (1.5ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1923
+ SQL (0.3ms)  SELECT name
1924
+ FROM sqlite_master
1925
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1926
+ 
1927
+ SQL (1.5ms) DROP TABLE "callback_widgets"
1928
+ SQL (1.5ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1929
+ SQL (0.4ms)  SELECT name
1930
+ FROM sqlite_master
1931
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1932
+ 
1933
+ SQL (2.8ms) DROP TABLE "false_callback_widgets"
1934
+ SQL (2.2ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1935
+ SQL (0.3ms)  SELECT name
1936
+ FROM sqlite_master
1937
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1938
+ 
1939
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1940
+ ScrambleWidget Create (0.3ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper ttfsee_aldtu body', NULL, NULL)
1941
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1942
+ SQL (0.6ms) select sqlite_version(*)
1943
+ SQL (0.7ms)  SELECT name
1944
+ FROM sqlite_master
1945
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1946
+ 
1947
+ SQL (6.5ms) DROP TABLE "widgets"
1948
+ SQL (1.8ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1949
+ SQL (0.4ms)  SELECT name
1950
+ FROM sqlite_master
1951
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1952
+ 
1953
+ SQL (1.4ms) DROP TABLE "replace_widgets"
1954
+ SQL (2.0ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1955
+ SQL (0.3ms)  SELECT name
1956
+ FROM sqlite_master
1957
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1958
+ 
1959
+ SQL (1.3ms) DROP TABLE "remove_widgets"
1960
+ SQL (1.6ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1961
+ SQL (0.3ms)  SELECT name
1962
+ FROM sqlite_master
1963
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1964
+ 
1965
+ SQL (4.8ms) DROP TABLE "scramble_widgets"
1966
+ SQL (1.4ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1967
+ SQL (0.3ms)  SELECT name
1968
+ FROM sqlite_master
1969
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1970
+ 
1971
+ SQL (1.8ms) DROP TABLE "custom_widgets"
1972
+ SQL (1.4ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1973
+ SQL (0.4ms)  SELECT name
1974
+ FROM sqlite_master
1975
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1976
+ 
1977
+ SQL (1.4ms) DROP TABLE "callback_widgets"
1978
+ SQL (1.6ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1979
+ SQL (0.4ms)  SELECT name
1980
+ FROM sqlite_master
1981
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1982
+ 
1983
+ SQL (3.3ms) DROP TABLE "false_callback_widgets"
1984
+ SQL (1.9ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
1985
+ SQL (0.3ms)  SELECT name
1986
+ FROM sqlite_master
1987
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1988
+ 
1989
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
1990
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
1991
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
1992
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper $*!*@$@%!@$$ test', NULL)
1993
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
1994
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper tsecmsrt_ebal test', NULL, NULL)
1995
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
1996
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper tteutleafd_s body', NULL, NULL)
1997
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
1998
+ SQL (0.4ms) select sqlite_version(*)
1999
+ SQL (0.7ms)  SELECT name
2000
+ FROM sqlite_master
2001
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2002
+ 
2003
+ SQL (4.9ms) DROP TABLE "widgets"
2004
+ SQL (1.5ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2005
+ SQL (0.3ms)  SELECT name
2006
+ FROM sqlite_master
2007
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2008
+ 
2009
+ SQL (1.7ms) DROP TABLE "replace_widgets"
2010
+ SQL (1.7ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2011
+ SQL (0.3ms)  SELECT name
2012
+ FROM sqlite_master
2013
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2014
+ 
2015
+ SQL (1.6ms) DROP TABLE "remove_widgets"
2016
+ SQL (1.6ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2017
+ SQL (0.5ms)  SELECT name
2018
+ FROM sqlite_master
2019
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2020
+ 
2021
+ SQL (1.6ms) DROP TABLE "scramble_widgets"
2022
+ SQL (1.5ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2023
+ SQL (0.3ms)  SELECT name
2024
+ FROM sqlite_master
2025
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2026
+ 
2027
+ SQL (1.6ms) DROP TABLE "custom_widgets"
2028
+ SQL (1.4ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2029
+ SQL (0.3ms)  SELECT name
2030
+ FROM sqlite_master
2031
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2032
+ 
2033
+ SQL (1.5ms) DROP TABLE "callback_widgets"
2034
+ SQL (17.0ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2035
+ SQL (0.3ms)  SELECT name
2036
+ FROM sqlite_master
2037
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2038
+ 
2039
+ SQL (1.8ms) DROP TABLE "false_callback_widgets"
2040
+ SQL (2.2ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2041
+ SQL (0.4ms)  SELECT name
2042
+ FROM sqlite_master
2043
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2044
+ 
2045
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2046
+ RemoveWidget Create (0.4ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
2047
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
2048
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper %@%$!%$$$%*$ test', NULL)
2049
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
2050
+ ScrambleWidget Create (0.4ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper _sbeaclrttmse test', NULL, NULL)
2051
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
2052
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper ttfte_eudals body', NULL, NULL)
2053
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
2054
+ SQL (0.4ms) select sqlite_version(*)
2055
+ SQL (0.6ms)  SELECT name
2056
+ FROM sqlite_master
2057
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2058
+ 
2059
+ SQL (6.0ms) DROP TABLE "widgets"
2060
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2061
+ SQL (0.3ms)  SELECT name
2062
+ FROM sqlite_master
2063
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2064
+ 
2065
+ SQL (1.5ms) DROP TABLE "replace_widgets"
2066
+ SQL (1.3ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2067
+ SQL (0.3ms)  SELECT name
2068
+ FROM sqlite_master
2069
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2070
+ 
2071
+ SQL (1.5ms) DROP TABLE "remove_widgets"
2072
+ SQL (1.6ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2073
+ SQL (0.3ms)  SELECT name
2074
+ FROM sqlite_master
2075
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2076
+ 
2077
+ SQL (4.6ms) DROP TABLE "scramble_widgets"
2078
+ SQL (1.4ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2079
+ SQL (0.3ms)  SELECT name
2080
+ FROM sqlite_master
2081
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2082
+ 
2083
+ SQL (1.7ms) DROP TABLE "custom_widgets"
2084
+ SQL (1.6ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2085
+ SQL (0.3ms)  SELECT name
2086
+ FROM sqlite_master
2087
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2088
+ 
2089
+ SQL (2.2ms) DROP TABLE "callback_widgets"
2090
+ SQL (1.6ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2091
+ SQL (0.4ms)  SELECT name
2092
+ FROM sqlite_master
2093
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2094
+ 
2095
+ SQL (2.0ms) DROP TABLE "false_callback_widgets"
2096
+ SQL (1.4ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2097
+ SQL (0.2ms)  SELECT name
2098
+ FROM sqlite_master
2099
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2100
+ 
2101
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2102
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
2103
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
2104
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper %@&$&@$&$&!* test', NULL)
2105
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
2106
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper ct_sarelsmebt test', NULL, NULL)
2107
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
2108
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
2109
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
2110
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper asttdulteef_ body', NULL, NULL)
2111
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
2112
+ SQL (0.5ms) select sqlite_version(*)
2113
+ SQL (0.7ms)  SELECT name
2114
+ FROM sqlite_master
2115
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2116
+ 
2117
+ SQL (4.6ms) DROP TABLE "widgets"
2118
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2119
+ SQL (0.3ms)  SELECT name
2120
+ FROM sqlite_master
2121
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2122
+ 
2123
+ SQL (1.5ms) DROP TABLE "replace_widgets"
2124
+ SQL (1.4ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2125
+ SQL (0.3ms)  SELECT name
2126
+ FROM sqlite_master
2127
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2128
+ 
2129
+ SQL (1.4ms) DROP TABLE "remove_widgets"
2130
+ SQL (1.7ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2131
+ SQL (0.3ms)  SELECT name
2132
+ FROM sqlite_master
2133
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2134
+ 
2135
+ SQL (4.4ms) DROP TABLE "scramble_widgets"
2136
+ SQL (1.5ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2137
+ SQL (0.3ms)  SELECT name
2138
+ FROM sqlite_master
2139
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2140
+ 
2141
+ SQL (1.6ms) DROP TABLE "custom_widgets"
2142
+ SQL (1.5ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2143
+ SQL (0.3ms)  SELECT name
2144
+ FROM sqlite_master
2145
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2146
+ 
2147
+ SQL (1.4ms) DROP TABLE "callback_widgets"
2148
+ SQL (1.4ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2149
+ SQL (0.3ms)  SELECT name
2150
+ FROM sqlite_master
2151
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2152
+ 
2153
+ SQL (17.6ms) DROP TABLE "false_callback_widgets"
2154
+ SQL (1.8ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2155
+ SQL (0.3ms)  SELECT name
2156
+ FROM sqlite_master
2157
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2158
+ 
2159
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2160
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
2161
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
2162
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper @&!*!&&*%*!% test', NULL)
2163
+ ReplaceWidget Load (0.2ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
2164
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper ea_rslettcsmb test', NULL, NULL)
2165
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
2166
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
2167
+ CustomWidget Load (0.5ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
2168
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper tae_dtsfluet body', NULL, NULL)
2169
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
2170
+ SQL (0.4ms) select sqlite_version(*)
2171
+ SQL (0.7ms)  SELECT name
2172
+ FROM sqlite_master
2173
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2174
+ 
2175
+ SQL (4.6ms) DROP TABLE "widgets"
2176
+ SQL (1.4ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2177
+ SQL (0.3ms)  SELECT name
2178
+ FROM sqlite_master
2179
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2180
+ 
2181
+ SQL (1.4ms) DROP TABLE "replace_widgets"
2182
+ SQL (1.4ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2183
+ SQL (0.3ms)  SELECT name
2184
+ FROM sqlite_master
2185
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2186
+ 
2187
+ SQL (1.5ms) DROP TABLE "remove_widgets"
2188
+ SQL (1.7ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2189
+ SQL (0.3ms)  SELECT name
2190
+ FROM sqlite_master
2191
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2192
+ 
2193
+ SQL (4.5ms) DROP TABLE "scramble_widgets"
2194
+ SQL (1.4ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2195
+ SQL (0.3ms)  SELECT name
2196
+ FROM sqlite_master
2197
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2198
+ 
2199
+ SQL (1.8ms) DROP TABLE "custom_widgets"
2200
+ SQL (1.4ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2201
+ SQL (0.3ms)  SELECT name
2202
+ FROM sqlite_master
2203
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2204
+ 
2205
+ SQL (2.1ms) DROP TABLE "callback_widgets"
2206
+ SQL (1.6ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2207
+ SQL (0.4ms)  SELECT name
2208
+ FROM sqlite_master
2209
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2210
+ 
2211
+ SQL (1.9ms) DROP TABLE "false_callback_widgets"
2212
+ SQL (1.7ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2213
+ SQL (0.4ms)  SELECT name
2214
+ FROM sqlite_master
2215
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2216
+ 
2217
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2218
+ RemoveWidget Create (0.5ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
2219
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
2220
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper !&&&&$$&%&&$ test', NULL)
2221
+ ReplaceWidget Load (0.4ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
2222
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper lmsbrcsateet_ test', NULL, NULL)
2223
+ ScrambleWidget Load (0.3ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
2224
+ CallbackWidget Create (0.2ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES('CALLBACK', 'cleanerupper metstutc_os body', NULL)
2225
+ CallbackWidget Load (1.0ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
2226
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
2227
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
2228
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper aettetdl_suf body', NULL, NULL)
2229
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2) 
2230
+ SQL (0.5ms) select sqlite_version(*)
2231
+ SQL (0.7ms)  SELECT name
2232
+ FROM sqlite_master
2233
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2234
+ 
2235
+ SQL (5.2ms) DROP TABLE "widgets"
2236
+ SQL (1.6ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2237
+ SQL (0.3ms)  SELECT name
2238
+ FROM sqlite_master
2239
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2240
+ 
2241
+ SQL (1.9ms) DROP TABLE "replace_widgets"
2242
+ SQL (1.3ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2243
+ SQL (0.3ms)  SELECT name
2244
+ FROM sqlite_master
2245
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2246
+ 
2247
+ SQL (1.4ms) DROP TABLE "remove_widgets"
2248
+ SQL (1.5ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2249
+ SQL (0.3ms)  SELECT name
2250
+ FROM sqlite_master
2251
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2252
+ 
2253
+ SQL (4.6ms) DROP TABLE "scramble_widgets"
2254
+ SQL (1.7ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2255
+ SQL (0.3ms)  SELECT name
2256
+ FROM sqlite_master
2257
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2258
+ 
2259
+ SQL (2.6ms) DROP TABLE "custom_widgets"
2260
+ SQL (1.6ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2261
+ SQL (0.3ms)  SELECT name
2262
+ FROM sqlite_master
2263
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2264
+ 
2265
+ SQL (1.6ms) DROP TABLE "callback_widgets"
2266
+ SQL (19.8ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2267
+ SQL (0.4ms)  SELECT name
2268
+ FROM sqlite_master
2269
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2270
+ 
2271
+ SQL (1.9ms) DROP TABLE "false_callback_widgets"
2272
+ SQL (1.5ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2273
+ SQL (0.4ms)  SELECT name
2274
+ FROM sqlite_master
2275
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2276
+ 
2277
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2278
+ SQL (0.4ms)  SELECT name
2279
+ FROM sqlite_master
2280
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2281
+ 
2282
+ SQL (0.4ms) select sqlite_version(*)
2283
+ SQL (0.7ms)  SELECT name
2284
+ FROM sqlite_master
2285
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2286
+ 
2287
+ SQL (16.7ms) DROP TABLE "widgets"
2288
+ SQL (3.3ms) CREATE TABLE "widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2289
+ SQL (0.3ms)  SELECT name
2290
+ FROM sqlite_master
2291
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2292
+ 
2293
+ SQL (2.9ms) DROP TABLE "replace_widgets"
2294
+ SQL (2.7ms) CREATE TABLE "replace_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2295
+ SQL (0.3ms)  SELECT name
2296
+ FROM sqlite_master
2297
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2298
+ 
2299
+ SQL (5.5ms) DROP TABLE "remove_widgets"
2300
+ SQL (2.9ms) CREATE TABLE "remove_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2301
+ SQL (0.3ms)  SELECT name
2302
+ FROM sqlite_master
2303
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2304
+ 
2305
+ SQL (3.7ms) DROP TABLE "scramble_widgets"
2306
+ SQL (2.8ms) CREATE TABLE "scramble_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2307
+ SQL (0.3ms)  SELECT name
2308
+ FROM sqlite_master
2309
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2310
+ 
2311
+ SQL (20.2ms) DROP TABLE "custom_widgets"
2312
+ SQL (3.4ms) CREATE TABLE "custom_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2313
+ SQL (0.3ms)  SELECT name
2314
+ FROM sqlite_master
2315
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2316
+ 
2317
+ SQL (3.2ms) DROP TABLE "callback_widgets"
2318
+ SQL (2.6ms) CREATE TABLE "callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2319
+ SQL (0.3ms)  SELECT name
2320
+ FROM sqlite_master
2321
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2322
+ 
2323
+ SQL (3.1ms) DROP TABLE "false_callback_widgets"
2324
+ SQL (20.3ms) CREATE TABLE "false_callback_widgets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(100), "body" varchar(255), "author_name" varchar(100)) 
2325
+ SQL (0.5ms)  SELECT name
2326
+ FROM sqlite_master
2327
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2328
+ 
2329
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
2330
+ RemoveWidget Create (0.3ms) INSERT INTO "remove_widgets" ("title", "body", "author_name") VALUES('cleanerupper test', 'cleanerupper test', NULL)
2331
+ RemoveWidget Load (0.3ms) SELECT * FROM "remove_widgets" WHERE ("remove_widgets"."id" = 1) 
2332
+ ReplaceWidget Create (0.2ms) INSERT INTO "replace_widgets" ("title", "body", "author_name") VALUES(NULL, 'cleanerupper @*$@!$*@%$$@ test', NULL)
2333
+ ReplaceWidget Load (0.3ms) SELECT * FROM "replace_widgets" WHERE ("replace_widgets"."id" = 1) 
2334
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper crltsea_msetb test', NULL, NULL)
2335
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 1) 
2336
+ CallbackWidget Create (0.2ms) INSERT INTO "callback_widgets" ("title", "body", "author_name") VALUES('CALLBACK', 'cleanerupper euttcm_sots body', NULL)
2337
+ CallbackWidget Load (0.3ms) SELECT * FROM "callback_widgets" WHERE ("callback_widgets"."id" = 1) 
2338
+ CustomWidget Create (0.2ms) INSERT INTO "custom_widgets" ("title", "body", "author_name") VALUES('Custom Value: cleanerupper remove_test title', 'Custom Value: cleanerupper scramble_test body', NULL)
2339
+ CustomWidget Load (0.3ms) SELECT * FROM "custom_widgets" WHERE ("custom_widgets"."id" = 1) 
2340
+ ScrambleWidget Create (0.2ms) INSERT INTO "scramble_widgets" ("title", "body", "author_name") VALUES('cleanerupper eetda_stuftl body', NULL, NULL)
2341
+ ScrambleWidget Load (0.2ms) SELECT * FROM "scramble_widgets" WHERE ("scramble_widgets"."id" = 2)