has_custom_fields 0.0.5 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/SPECDOC DELETED
@@ -1,23 +0,0 @@
1
-
2
- ActiveRecord Model annotated with 'has_custom_field_behavior' with no options in declaration
3
- - should have many attributes
4
- - should create new attribute on save
5
- - should delete attribute
6
- - should write eav attributes to attributes table
7
- - should return nil when attribute does not exist
8
- - should use method missing to make attribute seem as native property
9
- - should read attributes using subscript notation
10
- - should read the attribute when invoking 'read_attribute'
11
-
12
- ActiveRecord Model annotated with 'has_custom_field_behavior' with options in declaration
13
- - should be 'has_many' association on both sides
14
- - should only allow restricted fields when specified (:fields => %w(phone aim icq))
15
- - should raise 'NoMethodError' when attribute not in 'custom_field_attributes' method array
16
- - should raise 'NoMethodError' when attribute does not satisfy 'is_custom_field_attribute?' method
17
-
18
- Validations on ActiveRecord Model annotated with 'has_custom_field_behavior'
19
- - should execute as normal (validates_presence_of)
20
-
21
- Finished in 0.239663 seconds
22
-
23
- 13 examples, 0 failures
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.0.5
@@ -1,63 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>currentDocument</key>
6
- <string>lib/has_custom_fields.rb</string>
7
- <key>documents</key>
8
- <array>
9
- <dict>
10
- <key>expanded</key>
11
- <true/>
12
- <key>name</key>
13
- <string>has_custom_fields</string>
14
- <key>regexFolderFilter</key>
15
- <string>!.*/(\.[^/]*|CVS|log|_darcs|_MTN|\{arch\}|blib|.*~\.nib|.*\.(framework|app|pbproj|pbxproj|xcode(proj)?|bundle))$</string>
16
- <key>sourceDirectory</key>
17
- <string></string>
18
- </dict>
19
- </array>
20
- <key>fileHierarchyDrawerWidth</key>
21
- <integer>200</integer>
22
- <key>metaData</key>
23
- <dict>
24
- <key>lib/custom_fields/custom_field_base.rb</key>
25
- <dict>
26
- <key>caret</key>
27
- <dict>
28
- <key>column</key>
29
- <integer>0</integer>
30
- <key>line</key>
31
- <integer>9</integer>
32
- </dict>
33
- <key>firstVisibleColumn</key>
34
- <integer>0</integer>
35
- <key>firstVisibleLine</key>
36
- <integer>0</integer>
37
- </dict>
38
- <key>lib/has_custom_fields.rb</key>
39
- <dict>
40
- <key>caret</key>
41
- <dict>
42
- <key>column</key>
43
- <integer>20</integer>
44
- <key>line</key>
45
- <integer>56</integer>
46
- </dict>
47
- <key>firstVisibleColumn</key>
48
- <integer>0</integer>
49
- <key>firstVisibleLine</key>
50
- <integer>49</integer>
51
- </dict>
52
- </dict>
53
- <key>openDocuments</key>
54
- <array>
55
- <string>lib/custom_fields/custom_field_base.rb</string>
56
- <string>lib/has_custom_fields.rb</string>
57
- </array>
58
- <key>showFileHierarchyDrawer</key>
59
- <true/>
60
- <key>windowFrame</key>
61
- <string>{{465, 4}, {1203, 1024}}</string>
62
- </dict>
63
- </plist>
@@ -1,29 +0,0 @@
1
- module CustomFields
2
- class CustomFieldBase < ActiveRecord::Base
3
-
4
- serialize :select_options
5
- validates_presence_of :name,
6
- :message => 'Please specify the field name.'
7
- validates_presence_of :select_options_data,
8
- :if => "self.style.to_sym == :select",
9
- :message => "You must enter options for the selection, separated by commas."
10
-
11
- def self.inherited(chld)
12
- super(chld)
13
- chld.class_eval <<-FOO
14
- validates_uniqueness_of :name, :scope => [:user_id, :organization_id], :message => 'The field name is already taken.'
15
- validates_inclusion_of :style, :in => ALLOWABLE_TYPES, :message => "Invalid style. Should be #{ALLOWABLE_TYPES.join(', ')}."
16
- FOO
17
- end
18
-
19
- def select_options_data
20
- (self.select_options || []).join(",")
21
- end
22
-
23
- def select_options_data=(data)
24
- self.select_options = data.split(",").collect{|f| f.strip}
25
- end
26
-
27
- #scope :find_all_by_scope, lambda {|scope| {where("#{scope}_id = #{self.id}")}}
28
- end
29
- end
@@ -1,12 +0,0 @@
1
- sqlite:
2
- :adapter: sqlite
3
- :dbfile: custom_field_model_plugin_test.sqlite.db
4
- sqlite3:
5
- :adapter: sqlite3
6
- :dbfile: custom_field_model_plugin_test.sqlite3.db
7
- mysql:
8
- :adapter: mysql
9
- :host: localhost
10
- :username: root
11
- :password:
12
- :database: custom_field_model_plugin_test
@@ -1,3211 +0,0 @@
1
- # Logfile created on Thu Dec 18 11:41:39 +1300 2008 by /
2
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
3
- SQL (0.9ms) SHOW TABLES
4
- SQL (106.6ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
5
- SQL (0.6ms) SHOW TABLES
6
- SQL (216.3ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
7
- SQL (0.9ms) SHOW TABLES
8
- SQL (119.1ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
9
- SQL (0.4ms) SHOW TABLES
10
- SQL (122.1ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
11
- SQL (0.5ms) SHOW TABLES
12
- SQL (109.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
13
- SQL (105.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
14
- SQL (1.0ms) SHOW TABLES
15
- SQL (0.9ms) SHOW TABLES
16
- SQL (81.6ms) CREATE TABLE `plugin_schema_info` (`plugin_name` varchar(255) NOT NULL, `version` varchar(255) NOT NULL) ENGINE=InnoDB
17
- SQL (103.3ms) CREATE UNIQUE INDEX `unique_plugin_schema_info` ON `plugin_schema_info` (`version`)
18
- SQL (0.8ms) SELECT version FROM `schema_migrations`
19
- SQL (0.9ms) INSERT INTO `schema_migrations` (version) VALUES ('0')
20
- Unable to load post, underlying cause no such file to load -- post
21
-
22
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
23
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
24
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
25
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
26
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
27
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
28
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
29
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
30
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
31
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
32
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
33
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
34
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
35
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
36
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:4
37
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
38
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
39
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
40
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
41
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
42
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
43
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
44
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
45
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:3
46
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load'
47
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
48
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
49
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
50
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
51
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
52
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
53
- Unable to load post_attribute, underlying cause no such file to load -- post_attribute
54
-
55
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
56
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
57
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
58
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
59
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
60
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
61
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
62
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
63
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
64
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
65
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
66
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
67
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
68
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
69
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:4
70
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
71
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
72
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
73
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
74
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
75
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
76
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
77
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
78
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:3
79
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load'
80
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
81
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
82
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
83
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
84
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
85
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
86
- Unable to load person, underlying cause no such file to load -- person
87
-
88
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
89
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
90
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
91
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
92
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
93
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
94
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
95
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
96
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
97
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
98
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
99
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
100
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
101
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
102
- ./spec/models/custom_field_model_with_options_spec.rb:4
103
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
104
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
105
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
106
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
107
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
108
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
109
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
110
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
111
- ./spec/models/custom_field_model_with_options_spec.rb:3
112
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
113
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
114
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
115
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
116
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
117
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
118
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
119
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
120
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
121
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
122
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
123
- Unable to load preference, underlying cause no such file to load -- preference
124
-
125
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
126
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
127
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
128
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
129
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
130
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
131
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
132
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
133
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
134
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
135
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
136
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
137
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
138
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
139
- ./spec/models/custom_field_model_with_options_spec.rb:4
140
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
141
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
142
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
143
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
144
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
145
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
146
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
147
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
148
- ./spec/models/custom_field_model_with_options_spec.rb:3
149
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
150
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
151
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
152
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
153
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
154
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
155
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
156
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
157
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
158
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
159
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
160
- Unable to load person_contact_info, underlying cause no such file to load -- person_contact_info
161
-
162
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
163
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
164
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
165
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
166
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
167
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
168
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
169
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
170
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
171
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
172
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
173
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
174
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
175
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
176
- ./spec/models/custom_field_model_with_options_spec.rb:4
177
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
178
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
179
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
180
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
181
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
182
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
183
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
184
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
185
- ./spec/models/custom_field_model_with_options_spec.rb:3
186
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
187
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
188
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
189
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
190
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
191
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
192
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
193
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
194
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
195
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
196
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
197
- Unable to load post, underlying cause no such file to load -- post
198
-
199
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
200
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
201
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
202
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
203
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
204
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
205
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
206
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
207
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
208
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
209
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
210
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
211
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
212
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
213
- ./spec/models/custom_field_validation_spec.rb:5
214
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
215
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
216
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
217
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
218
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
219
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
220
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
221
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
222
- ./spec/models/custom_field_validation_spec.rb:3
223
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
224
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
225
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
226
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
227
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
228
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
229
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
230
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
231
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
232
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
233
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
234
- Unable to load post_attribute, underlying cause no such file to load -- post_attribute
235
-
236
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
237
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
238
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
239
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
240
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
241
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
242
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
243
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
244
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
245
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
246
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
247
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
248
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
249
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
250
- ./spec/models/custom_field_validation_spec.rb:5
251
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
252
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
253
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
254
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
255
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
256
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
257
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
258
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
259
- ./spec/models/custom_field_validation_spec.rb:3
260
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
261
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
262
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
263
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
264
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
265
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
266
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
267
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
268
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
269
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
270
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
271
- SQL (0.1ms) BEGIN
272
- SQL (0.1ms) ROLLBACK
273
- SQL (0.1ms) BEGIN
274
- SQL (0.1ms) ROLLBACK
275
- SQL (0.1ms) BEGIN
276
- SQL (0.1ms) ROLLBACK
277
- SQL (0.1ms) BEGIN
278
- SQL (0.1ms) ROLLBACK
279
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
280
- SQL (0.7ms) SHOW TABLES
281
- SQL (1.8ms) DROP TABLE `people`
282
- SQL (84.6ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
283
- SQL (0.9ms) SHOW TABLES
284
- SQL (1.7ms) DROP TABLE `person_contact_infos`
285
- SQL (105.2ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
286
- SQL (0.5ms) SHOW TABLES
287
- SQL (1.1ms) DROP TABLE `posts`
288
- SQL (120.1ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
289
- SQL (0.8ms) SHOW TABLES
290
- SQL (2.2ms) DROP TABLE `preferences`
291
- SQL (94.9ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
292
- SQL (0.6ms) SHOW TABLES
293
- SQL (0.4ms) SHOW TABLES
294
- SQL (0.2ms) SELECT version FROM `schema_migrations`
295
- Unable to load post, underlying cause no such file to load -- post
296
-
297
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
298
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
299
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
300
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
301
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
302
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
303
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
304
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
305
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
306
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
307
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
308
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
309
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
310
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
311
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:4
312
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
313
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
314
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
315
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
316
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
317
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
318
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
319
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
320
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:3
321
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load'
322
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
323
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
324
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
325
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
326
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
327
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
328
- Unable to load post_attribute, underlying cause no such file to load -- post_attribute
329
-
330
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
331
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
332
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
333
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
334
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
335
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
336
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
337
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
338
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
339
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
340
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
341
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
342
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
343
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
344
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:4
345
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
346
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
347
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
348
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
349
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
350
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
351
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
352
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
353
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:3
354
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load'
355
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
356
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
357
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
358
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
359
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
360
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
361
- Unable to load person, underlying cause no such file to load -- person
362
-
363
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
364
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
365
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
366
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
367
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
368
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
369
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
370
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
371
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
372
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
373
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
374
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
375
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
376
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
377
- ./spec/models/custom_field_model_with_options_spec.rb:4
378
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
379
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
380
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
381
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
382
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
383
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
384
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
385
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
386
- ./spec/models/custom_field_model_with_options_spec.rb:3
387
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
388
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
389
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
390
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
391
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
392
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
393
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
394
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
395
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
396
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
397
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
398
- Unable to load preference, underlying cause no such file to load -- preference
399
-
400
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
401
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
402
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
403
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
404
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
405
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
406
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
407
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
408
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
409
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
410
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
411
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
412
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
413
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
414
- ./spec/models/custom_field_model_with_options_spec.rb:4
415
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
416
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
417
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
418
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
419
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
420
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
421
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
422
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
423
- ./spec/models/custom_field_model_with_options_spec.rb:3
424
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
425
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
426
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
427
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
428
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
429
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
430
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
431
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
432
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
433
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
434
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
435
- Unable to load person_contact_info, underlying cause no such file to load -- person_contact_info
436
-
437
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
438
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
439
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
440
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
441
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
442
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
443
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
444
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
445
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
446
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
447
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
448
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
449
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
450
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
451
- ./spec/models/custom_field_model_with_options_spec.rb:4
452
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
453
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
454
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
455
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
456
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
457
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
458
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
459
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
460
- ./spec/models/custom_field_model_with_options_spec.rb:3
461
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
462
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
463
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
464
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
465
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
466
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
467
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
468
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
469
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
470
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
471
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
472
- Unable to load post, underlying cause no such file to load -- post
473
-
474
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
475
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
476
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
477
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
478
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
479
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
480
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
481
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
482
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
483
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
484
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
485
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
486
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
487
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
488
- ./spec/models/custom_field_validation_spec.rb:5
489
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
490
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
491
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
492
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
493
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
494
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
495
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
496
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
497
- ./spec/models/custom_field_validation_spec.rb:3
498
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
499
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
500
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
501
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
502
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
503
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
504
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
505
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
506
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
507
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
508
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
509
- Unable to load post_attribute, underlying cause no such file to load -- post_attribute
510
-
511
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
512
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
513
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
514
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
515
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
516
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
517
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
518
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
519
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
520
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
521
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
522
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
523
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
524
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
525
- ./spec/models/custom_field_validation_spec.rb:5
526
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
527
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
528
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
529
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
530
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
531
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
532
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
533
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
534
- ./spec/models/custom_field_validation_spec.rb:3
535
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
536
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
537
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
538
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
539
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
540
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
541
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
542
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
543
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
544
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
545
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
546
- SQL (0.1ms) BEGIN
547
- SQL (0.1ms) ROLLBACK
548
- SQL (0.1ms) BEGIN
549
- SQL (0.1ms) ROLLBACK
550
- SQL (0.1ms) BEGIN
551
- SQL (0.1ms) ROLLBACK
552
- SQL (0.1ms) BEGIN
553
- SQL (0.1ms) ROLLBACK
554
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
555
- SQL (0.7ms) SHOW TABLES
556
- SQL (1.8ms) DROP TABLE `people`
557
- SQL (127.5ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
558
- SQL (0.8ms) SHOW TABLES
559
- SQL (80.1ms) DROP TABLE `person_contact_infos`
560
- SQL (255.9ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
561
- SQL (0.6ms) SHOW TABLES
562
- SQL (50.4ms) DROP TABLE `posts`
563
- SQL (190.4ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
564
- SQL (0.8ms) SHOW TABLES
565
- SQL (87.3ms) DROP TABLE `preferences`
566
- SQL (168.2ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
567
- SQL (1.1ms) SHOW TABLES
568
- SQL (0.7ms) SHOW TABLES
569
- SQL (0.3ms) SELECT version FROM `schema_migrations`
570
- Unable to load post, underlying cause no such file to load -- post
571
-
572
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
573
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
574
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
575
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
576
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
577
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
578
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
579
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
580
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
581
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
582
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
583
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
584
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
585
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
586
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:4
587
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
588
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
589
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
590
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
591
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
592
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
593
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
594
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
595
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:3
596
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load'
597
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
598
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
599
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
600
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
601
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
602
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
603
- Unable to load post_attribute, underlying cause no such file to load -- post_attribute
604
-
605
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
606
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
607
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
608
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
609
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
610
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
611
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
612
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
613
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
614
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
615
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
616
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
617
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
618
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
619
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:4
620
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
621
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
622
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
623
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
624
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
625
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
626
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
627
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
628
- ./spec/models/custom_field_model_with_no_arguments_spec.rb:3
629
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load'
630
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
631
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
632
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
633
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
634
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
635
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
636
- Unable to load person, underlying cause no such file to load -- person
637
-
638
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
639
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
640
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
641
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
642
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
643
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
644
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
645
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
646
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
647
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
648
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
649
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
650
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
651
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
652
- ./spec/models/custom_field_model_with_options_spec.rb:4
653
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
654
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
655
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
656
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
657
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
658
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
659
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
660
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
661
- ./spec/models/custom_field_model_with_options_spec.rb:3
662
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
663
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
664
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
665
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
666
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
667
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
668
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
669
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
670
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
671
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
672
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
673
- Unable to load preference, underlying cause no such file to load -- preference
674
-
675
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
676
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
677
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
678
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
679
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
680
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
681
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
682
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
683
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
684
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
685
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
686
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
687
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
688
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
689
- ./spec/models/custom_field_model_with_options_spec.rb:4
690
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
691
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
692
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
693
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
694
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
695
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
696
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
697
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
698
- ./spec/models/custom_field_model_with_options_spec.rb:3
699
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
700
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
701
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
702
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
703
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
704
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
705
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
706
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
707
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
708
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
709
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
710
- Unable to load person_contact_info, underlying cause no such file to load -- person_contact_info
711
-
712
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
713
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
714
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
715
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
716
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
717
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
718
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
719
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
720
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
721
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
722
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
723
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
724
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
725
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
726
- ./spec/models/custom_field_model_with_options_spec.rb:4
727
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
728
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
729
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
730
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
731
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
732
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
733
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
734
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
735
- ./spec/models/custom_field_model_with_options_spec.rb:3
736
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
737
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
738
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
739
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
740
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
741
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
742
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
743
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
744
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
745
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
746
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
747
- Unable to load post, underlying cause no such file to load -- post
748
-
749
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
750
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
751
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
752
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
753
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
754
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
755
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
756
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
757
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
758
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
759
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
760
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
761
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
762
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
763
- ./spec/models/custom_field_validation_spec.rb:5
764
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
765
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
766
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
767
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
768
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
769
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
770
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
771
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
772
- ./spec/models/custom_field_validation_spec.rb:3
773
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
774
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
775
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
776
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
777
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
778
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
779
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
780
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
781
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
782
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
783
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
784
- Unable to load post_attribute, underlying cause no such file to load -- post_attribute
785
-
786
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
787
- /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
788
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:155:in `require_without_desert'
789
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:8:in `require'
790
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
791
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:7:in `require'
792
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:262:in `require_or_load'
793
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/rails/dependencies.rb:32:in `depend_on'
794
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:133:in `require_dependency'
795
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:856:in `try_to_load_dependency'
796
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:871:in `require_fixture_classes'
797
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `each'
798
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:868:in `require_fixture_classes'
799
- /Library/Ruby/Gems/1.8/gems/activerecord-2.2.2/lib/active_record/fixtures.rb:851:in `fixtures'
800
- ./spec/models/custom_field_validation_spec.rb:5
801
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `module_eval'
802
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:68:in `create_nested_example_group'
803
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `instance_eval'
804
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/class.rb:14:in `subclass'
805
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:66:in `create_nested_example_group'
806
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_methods.rb:53:in `describe'
807
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/example/example_group_factory.rb:53:in `create_example_group'
808
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/extensions/main.rb:27:in `describe'
809
- ./spec/models/custom_field_validation_spec.rb:3
810
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_new_constant_marking'
811
- /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:144:in `load_without_desert'
812
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:18:in `load'
813
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:32:in `__each_matching_file'
814
- /Users/marcus/Work/scratchpad/Marcus/scheduling_light_service/config/../vendor/plugins/desert/lib/desert/ruby/object.rb:17:in `load'
815
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:14:in `load_files'
816
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `each'
817
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/example_group_runner.rb:13:in `load_files'
818
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/options.rb:98:in `run_examples'
819
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/lib/spec/runner/command_line.rb:10:in `run'
820
- /Library/Ruby/Gems/1.8/gems/rspec-1.1.11/bin/spec:4
821
- SQL (0.1ms) BEGIN
822
- SQL (0.2ms) ROLLBACK
823
- SQL (0.1ms) BEGIN
824
- SQL (0.6ms) ROLLBACK
825
- SQL (0.1ms) BEGIN
826
- SQL (0.2ms) ROLLBACK
827
- SQL (0.1ms) BEGIN
828
- SQL (0.1ms) ROLLBACK
829
- SQL (0.4ms) SET SQL_AUTO_IS_NULL=0
830
- SQL (0.7ms) SHOW TABLES
831
- SQL (58.5ms) DROP TABLE `people`
832
- SQL (96.5ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
833
- SQL (1.1ms) SHOW TABLES
834
- SQL (1.8ms) DROP TABLE `person_contact_infos`
835
- SQL (135.9ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
836
- SQL (0.8ms) SHOW TABLES
837
- SQL (57.7ms) DROP TABLE `posts`
838
- SQL (141.2ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
839
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
840
- SQL (0.6ms) SHOW TABLES
841
- SQL (1.3ms) DROP TABLE `people`
842
- SQL (104.5ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
843
- SQL (0.8ms) SHOW TABLES
844
- SQL (2.0ms) DROP TABLE `person_contact_infos`
845
- SQL (185.2ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
846
- SQL (1.0ms) SHOW TABLES
847
- SQL (2.7ms) DROP TABLE `posts`
848
- SQL (305.5ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
849
- SQL (0.6ms) SET SQL_AUTO_IS_NULL=0
850
- SQL (0.7ms) SHOW TABLES
851
- SQL (1.7ms) DROP TABLE `people`
852
- SQL (125.2ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
853
- SQL (1.4ms) SHOW TABLES
854
- SQL (2.5ms) DROP TABLE `person_contact_infos`
855
- SQL (187.6ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
856
- SQL (0.8ms) SHOW TABLES
857
- SQL (1.6ms) DROP TABLE `posts`
858
- SQL (139.9ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
859
- SQL (0.7ms) SET SQL_AUTO_IS_NULL=0
860
- SQL (0.7ms) SHOW TABLES
861
- SQL (2.3ms) DROP TABLE `people`
862
- SQL (106.5ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
863
- SQL (1.0ms) SHOW TABLES
864
- SQL (2.0ms) DROP TABLE `person_contact_infos`
865
- SQL (149.0ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
866
- SQL (1.0ms) SHOW TABLES
867
- SQL (2.2ms) DROP TABLE `posts`
868
- SQL (117.8ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
869
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
870
- SQL (0.6ms) SHOW TABLES
871
- SQL (1.6ms) DROP TABLE `people`
872
- SQL (117.6ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
873
- SQL (0.8ms) SHOW TABLES
874
- SQL (1.8ms) DROP TABLE `person_contact_infos`
875
- SQL (143.0ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
876
- SQL (0.8ms) SHOW TABLES
877
- SQL (1.8ms) DROP TABLE `posts`
878
- SQL (127.8ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
879
- SQL (0.8ms) SHOW TABLES
880
- SQL (131.2ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
881
- SQL (0.9ms) SHOW TABLES
882
- SQL (1.8ms) DROP TABLE `preferences`
883
- SQL (130.4ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
884
- SQL (0.8ms) SHOW TABLES
885
- SQL (0.7ms) SHOW TABLES
886
- SQL (0.2ms) SELECT version FROM `schema_migrations`
887
- SQL (0.6ms) SHOW TABLES
888
- SQL (0.6ms) SHOW TABLES
889
- SQL (0.5ms) SHOW TABLES
890
- SQL (0.1ms) BEGIN
891
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
892
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
893
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
894
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-17 23:38:30', 2, 'new_value', '2008-12-17 23:38:30')
895
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
896
- SQL (0.8ms) ROLLBACK
897
- SQL (0.2ms) BEGIN
898
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
899
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
900
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
901
- PostAttribute Destroy (0.4ms) DELETE FROM `post_attributes` WHERE `id` = 1
902
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
903
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
904
- SQL (0.8ms) ROLLBACK
905
- SQL (0.2ms) BEGIN
906
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
907
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
908
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
909
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-17 23:38:30' WHERE `id` = 2
910
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
911
- SQL (1.0ms) ROLLBACK
912
- SQL (0.1ms) BEGIN
913
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
914
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
915
- SQL (0.2ms) ROLLBACK
916
- SQL (0.1ms) BEGIN
917
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
918
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
919
- SQL (0.1ms) ROLLBACK
920
- SQL (0.1ms) BEGIN
921
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
922
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
923
- SQL (0.1ms) ROLLBACK
924
- SQL (0.1ms) BEGIN
925
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
926
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
927
- SQL (0.1ms) ROLLBACK
928
- SQL (0.1ms) BEGIN
929
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
930
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
931
- SQL (0.1ms) ROLLBACK
932
- SQL (0.1ms) BEGIN
933
- Person Load (59.8ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
934
- Preference Load (0.4ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
935
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
936
- SQL (0.1ms) ROLLBACK
937
- SQL (0.1ms) BEGIN
938
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
939
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
940
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
941
- SQL (0.1ms) ROLLBACK
942
- SQL (0.1ms) BEGIN
943
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
944
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
945
- SQL (0.1ms) ROLLBACK
946
- SQL (0.1ms) BEGIN
947
- Person Load (0.4ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
948
- PersonContactInfo Load (0.4ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
949
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
950
- SQL (0.1ms) ROLLBACK
951
- SQL (0.1ms) BEGIN
952
- SQL (0.2ms) ROLLBACK
953
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
954
- SQL (0.7ms) SHOW TABLES
955
- SQL (2.3ms) DROP TABLE `people`
956
- SQL (114.5ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
957
- SQL (0.9ms) SHOW TABLES
958
- SQL (1.9ms) DROP TABLE `person_contact_infos`
959
- SQL (131.9ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
960
- SQL (1.0ms) SHOW TABLES
961
- SQL (1.7ms) DROP TABLE `posts`
962
- SQL (117.3ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
963
- SQL (0.9ms) SHOW TABLES
964
- SQL (2.5ms) DROP TABLE `post_attributes`
965
- SQL (115.7ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
966
- SQL (0.9ms) SHOW TABLES
967
- SQL (2.5ms) DROP TABLE `preferences`
968
- SQL (140.6ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
969
- SQL (1.1ms) SHOW TABLES
970
- SQL (0.9ms) SHOW TABLES
971
- SQL (0.2ms) SELECT version FROM `schema_migrations`
972
- SQL (0.7ms) SHOW TABLES
973
- SQL (1.3ms) SHOW TABLES
974
- SQL (0.6ms) SHOW TABLES
975
- SQL (0.1ms) BEGIN
976
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
977
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
978
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
979
- PostAttribute Create (0.3ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-17 23:39:35', 2, 'new_value', '2008-12-17 23:39:35')
980
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
981
- SQL (0.7ms) ROLLBACK
982
- SQL (0.1ms) BEGIN
983
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
984
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
985
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
986
- PostAttribute Destroy (0.2ms) DELETE FROM `post_attributes` WHERE `id` = 1
987
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
988
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
989
- SQL (0.9ms) ROLLBACK
990
- SQL (0.2ms) BEGIN
991
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
992
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
993
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
994
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-17 23:39:35' WHERE `id` = 2
995
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
996
- SQL (1.4ms) ROLLBACK
997
- SQL (0.2ms) BEGIN
998
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
999
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1000
- SQL (0.2ms) ROLLBACK
1001
- SQL (0.2ms) BEGIN
1002
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1003
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1004
- SQL (0.1ms) ROLLBACK
1005
- SQL (0.1ms) BEGIN
1006
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1007
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1008
- SQL (0.1ms) ROLLBACK
1009
- SQL (0.6ms) BEGIN
1010
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1011
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1012
- SQL (0.1ms) ROLLBACK
1013
- SQL (0.1ms) BEGIN
1014
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1015
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1016
- SQL (0.1ms) ROLLBACK
1017
- SQL (0.2ms) BEGIN
1018
- Person Load (55.5ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1019
- Preference Load (0.4ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
1020
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
1021
- SQL (0.1ms) ROLLBACK
1022
- SQL (0.1ms) BEGIN
1023
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1024
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
1025
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
1026
- SQL (0.1ms) ROLLBACK
1027
- SQL (0.1ms) BEGIN
1028
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1029
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
1030
- SQL (0.1ms) ROLLBACK
1031
- SQL (0.1ms) BEGIN
1032
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1033
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
1034
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
1035
- SQL (1.0ms) ROLLBACK
1036
- SQL (0.1ms) BEGIN
1037
- SQL (0.1ms) ROLLBACK
1038
- SQL (0.4ms) select sqlite_version(*)
1039
- SQL (0.3ms)  SELECT name
1040
- FROM sqlite_master
1041
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1042
- 
1043
- SQL (3.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1044
- SQL (0.5ms)  SELECT name
1045
- FROM sqlite_master
1046
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1047
- 
1048
- SQL (2.5ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1049
- SQL (0.4ms)  SELECT name
1050
- FROM sqlite_master
1051
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1052
- 
1053
- SQL (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1054
- SQL (0.6ms)  SELECT name
1055
- FROM sqlite_master
1056
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1057
- 
1058
- SQL (2.2ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1059
- SQL (0.5ms)  SELECT name
1060
- FROM sqlite_master
1061
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1062
- 
1063
- SQL (2.6ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1064
- SQL (1.0ms)  SELECT name
1065
- FROM sqlite_master
1066
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1067
- 
1068
- SQL (2.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1069
- SQL (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1070
- SQL (0.3ms)  SELECT name
1071
- FROM sqlite_master
1072
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1073
- 
1074
- SQL (0.3ms)  SELECT name
1075
- FROM sqlite_master
1076
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1077
- 
1078
- SQL (1.6ms) CREATE TABLE "plugin_schema_info" ("plugin_name" varchar(255) NOT NULL, "version" varchar(255) NOT NULL) 
1079
- SQL (1.9ms) CREATE UNIQUE INDEX "unique_plugin_schema_info" ON "plugin_schema_info" ("version")
1080
- SQL (0.1ms) SELECT version FROM "schema_migrations"
1081
- SQL (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1082
- SQL (0.5ms)  SELECT name
1083
- FROM sqlite_master
1084
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1085
- 
1086
- SQL (0.6ms)  SELECT name
1087
- FROM sqlite_master
1088
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1089
- 
1090
- SQL (0.4ms)  SELECT name
1091
- FROM sqlite_master
1092
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1093
- 
1094
- Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Following up from my first post.') LIMIT 1
1095
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 2) 
1096
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."post_id" = 2 AND "post_attributes"."name" = 'new_attribute') LIMIT 1
1097
- PostAttribute Create (0.4ms) INSERT INTO "post_attributes" ("name", "updated_at", "post_id", "value", "created_at") VALUES('new_attribute', '2008-12-17 23:41:19', 2, 'new_value', '2008-12-17 23:41:19')
1098
- PostAttribute Load (0.3ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."post_id" = 2 AND "post_attributes"."name" = 'new_attribute') LIMIT 1
1099
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1100
- PostAttribute Load (0.6ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1101
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1
1102
- PostAttribute Destroy (0.4ms) DELETE FROM "post_attributes" WHERE "id" = 1
1103
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1
1104
- PostAttribute Load (0.1ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 1) LIMIT 1
1105
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1106
- PostAttribute Load (0.7ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1107
- PostAttribute Load (0.3ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) 
1108
- PostAttribute Update (71.9ms) UPDATE "post_attributes" SET "value" = 'Blah Blah Blah', "updated_at" = '2008-12-17 23:41:19' WHERE "id" = 2
1109
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) 
1110
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1111
- PostAttribute Load (0.6ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1112
- Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1113
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1114
- Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1115
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1116
- Post Load (0.2ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1117
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1118
- Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1119
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1120
- Person Load (0.3ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1121
- Preference Load (0.2ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1122
- PersonContactInfo Load (0.2ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1123
- Person Load (0.2ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1124
- PersonContactInfo Load (0.2ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1125
- Preference Load (0.3ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1126
- Person Load (0.2ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1127
- Preference Load (0.2ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1128
- Person Load (0.2ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1129
- PersonContactInfo Load (0.2ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1130
- Preference Load (0.2ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1131
- SQL (0.2ms) select sqlite_version(*)
1132
- SQL (0.2ms)  SELECT name
1133
- FROM sqlite_master
1134
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1135
- 
1136
- SQL (2.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1137
- SQL (0.3ms)  SELECT name
1138
- FROM sqlite_master
1139
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1140
- 
1141
- SQL (1.6ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1142
- SQL (0.3ms)  SELECT name
1143
- FROM sqlite_master
1144
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1145
- 
1146
- SQL (2.8ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1147
- SQL (0.5ms)  SELECT name
1148
- FROM sqlite_master
1149
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1150
- 
1151
- SQL (2.7ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1152
- SQL (0.8ms)  SELECT name
1153
- FROM sqlite_master
1154
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1155
- 
1156
- SQL (2.8ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1157
- SQL (0.7ms)  SELECT name
1158
- FROM sqlite_master
1159
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1160
- 
1161
- SQL (4.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1162
- SQL (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1163
- SQL (0.7ms)  SELECT name
1164
- FROM sqlite_master
1165
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1166
- 
1167
- SQL (0.6ms)  SELECT name
1168
- FROM sqlite_master
1169
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1170
- 
1171
- SQL (2.6ms) CREATE TABLE "plugin_schema_info" ("plugin_name" varchar(255) NOT NULL, "version" varchar(255) NOT NULL) 
1172
- SQL (3.4ms) CREATE UNIQUE INDEX "unique_plugin_schema_info" ON "plugin_schema_info" ("version")
1173
- SQL (0.3ms) SELECT version FROM "schema_migrations"
1174
- SQL (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
1175
- SQL (0.8ms)  SELECT name
1176
- FROM sqlite_master
1177
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1178
- 
1179
- SQL (0.5ms)  SELECT name
1180
- FROM sqlite_master
1181
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1182
- 
1183
- Person Load (0.3ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1184
- Preference Load (0.3ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1185
- PersonContactInfo Load (0.4ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1186
- Person Load (0.4ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1187
- PersonContactInfo Load (0.3ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1188
- Preference Load (0.5ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1189
- Person Load (0.4ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1190
- Preference Load (0.3ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1191
- Person Load (0.3ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1192
- PersonContactInfo Load (0.3ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1193
- Preference Load (0.2ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1194
- SQL (0.3ms) select sqlite_version(*)
1195
- SQL (0.7ms)  SELECT name
1196
- FROM sqlite_master
1197
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1198
- 
1199
- SQL (3.0ms) DROP TABLE "people"
1200
- SQL (2.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1201
- SQL (1.5ms)  SELECT name
1202
- FROM sqlite_master
1203
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1204
- 
1205
- SQL (2.8ms) DROP TABLE "person_contact_infos"
1206
- SQL (3.1ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1207
- SQL (0.7ms)  SELECT name
1208
- FROM sqlite_master
1209
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1210
- 
1211
- SQL (2.6ms) DROP TABLE "posts"
1212
- SQL (2.2ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1213
- SQL (0.7ms)  SELECT name
1214
- FROM sqlite_master
1215
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1216
- 
1217
- SQL (2.8ms) DROP TABLE "post_attributes"
1218
- SQL (3.2ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1219
- SQL (0.7ms)  SELECT name
1220
- FROM sqlite_master
1221
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1222
- 
1223
- SQL (2.5ms) DROP TABLE "preferences"
1224
- SQL (2.7ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1225
- SQL (1.0ms)  SELECT name
1226
- FROM sqlite_master
1227
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1228
- 
1229
- SQL (0.5ms)  SELECT name
1230
- FROM sqlite_master
1231
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1232
- 
1233
- SQL (0.3ms) SELECT version FROM "schema_migrations"
1234
- SQL (0.5ms)  SELECT name
1235
- FROM sqlite_master
1236
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1237
- 
1238
- SQL (0.4ms)  SELECT name
1239
- FROM sqlite_master
1240
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1241
- 
1242
- Person Load (0.5ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1243
- PersonContactInfo Load (0.4ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1244
- Preference Load (0.5ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1245
- SQL (0.3ms) select sqlite_version(*)
1246
- SQL (0.6ms)  SELECT name
1247
- FROM sqlite_master
1248
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1249
- 
1250
- SQL (3.3ms) DROP TABLE "people"
1251
- SQL (3.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1252
- SQL (0.9ms)  SELECT name
1253
- FROM sqlite_master
1254
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1255
- 
1256
- SQL (2.6ms) DROP TABLE "person_contact_infos"
1257
- SQL (2.9ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1258
- SQL (0.8ms)  SELECT name
1259
- FROM sqlite_master
1260
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1261
- 
1262
- SQL (2.4ms) DROP TABLE "posts"
1263
- SQL (3.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1264
- SQL (0.7ms)  SELECT name
1265
- FROM sqlite_master
1266
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1267
- 
1268
- SQL (2.7ms) DROP TABLE "post_attributes"
1269
- SQL (2.9ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1270
- SQL (0.7ms)  SELECT name
1271
- FROM sqlite_master
1272
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1273
- 
1274
- SQL (2.3ms) DROP TABLE "preferences"
1275
- SQL (2.6ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1276
- SQL (0.9ms)  SELECT name
1277
- FROM sqlite_master
1278
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1279
- 
1280
- SQL (0.7ms)  SELECT name
1281
- FROM sqlite_master
1282
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1283
- 
1284
- SQL (0.3ms) SELECT version FROM "schema_migrations"
1285
- SQL (0.7ms)  SELECT name
1286
- FROM sqlite_master
1287
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1288
- 
1289
- SQL (0.6ms)  SELECT name
1290
- FROM sqlite_master
1291
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1292
- 
1293
- Person Load (0.5ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1294
- PersonContactInfo Load (0.4ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1295
- SQL (0.2ms) select sqlite_version(*)
1296
- SQL (0.7ms)  SELECT name
1297
- FROM sqlite_master
1298
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1299
- 
1300
- SQL (3.2ms) DROP TABLE "people"
1301
- SQL (3.1ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1302
- SQL (0.7ms)  SELECT name
1303
- FROM sqlite_master
1304
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1305
- 
1306
- SQL (2.2ms) DROP TABLE "person_contact_infos"
1307
- SQL (3.0ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1308
- SQL (0.9ms)  SELECT name
1309
- FROM sqlite_master
1310
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1311
- 
1312
- SQL (2.9ms) DROP TABLE "posts"
1313
- SQL (2.9ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1314
- SQL (0.7ms)  SELECT name
1315
- FROM sqlite_master
1316
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1317
- 
1318
- SQL (2.7ms) DROP TABLE "post_attributes"
1319
- SQL (3.5ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1320
- SQL (0.7ms)  SELECT name
1321
- FROM sqlite_master
1322
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1323
- 
1324
- SQL (2.8ms) DROP TABLE "preferences"
1325
- SQL (2.8ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1326
- SQL (1.0ms)  SELECT name
1327
- FROM sqlite_master
1328
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1329
- 
1330
- SQL (0.7ms)  SELECT name
1331
- FROM sqlite_master
1332
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1333
- 
1334
- SQL (0.4ms) SELECT version FROM "schema_migrations"
1335
- SQL (0.4ms)  SELECT name
1336
- FROM sqlite_master
1337
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1338
- 
1339
- SQL (0.4ms)  SELECT name
1340
- FROM sqlite_master
1341
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1342
- 
1343
- Person Load (0.5ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1344
- Preference Load (0.4ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1345
- PersonContactInfo Load (0.4ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1346
- Person Load (0.9ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1347
- PersonContactInfo Load (0.4ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1348
- Person Load (0.3ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1349
- Preference Load (0.4ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1350
- Person Load (0.3ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1351
- PersonContactInfo Load (0.5ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1352
- SQL (0.2ms) select sqlite_version(*)
1353
- SQL (0.7ms)  SELECT name
1354
- FROM sqlite_master
1355
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1356
- 
1357
- SQL (3.1ms) DROP TABLE "people"
1358
- SQL (3.4ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1359
- SQL (0.7ms)  SELECT name
1360
- FROM sqlite_master
1361
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1362
- 
1363
- SQL (3.8ms) DROP TABLE "person_contact_infos"
1364
- SQL (2.8ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1365
- SQL (0.8ms)  SELECT name
1366
- FROM sqlite_master
1367
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1368
- 
1369
- SQL (2.9ms) DROP TABLE "posts"
1370
- SQL (3.0ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1371
- SQL (0.7ms)  SELECT name
1372
- FROM sqlite_master
1373
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1374
- 
1375
- SQL (2.8ms) DROP TABLE "post_attributes"
1376
- SQL (3.0ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1377
- SQL (0.8ms)  SELECT name
1378
- FROM sqlite_master
1379
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1380
- 
1381
- SQL (2.6ms) DROP TABLE "preferences"
1382
- SQL (2.7ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1383
- SQL (0.7ms)  SELECT name
1384
- FROM sqlite_master
1385
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1386
- 
1387
- SQL (0.5ms)  SELECT name
1388
- FROM sqlite_master
1389
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1390
- 
1391
- SQL (0.3ms) SELECT version FROM "schema_migrations"
1392
- SQL (0.4ms)  SELECT name
1393
- FROM sqlite_master
1394
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1395
- 
1396
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Following up from my first post.') LIMIT 1
1397
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 2) 
1398
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'new_attribute' AND "post_attributes"."post_id" = 2) LIMIT 1
1399
- PostAttribute Create (0.4ms) INSERT INTO "post_attributes" ("name", "updated_at", "post_id", "value", "created_at") VALUES('new_attribute', '2008-12-17 23:50:34', 2, 'new_value', '2008-12-17 23:50:34')
1400
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'new_attribute' AND "post_attributes"."post_id" = 2) LIMIT 1
1401
- Post Load (0.6ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1402
- PostAttribute Load (0.7ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1403
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1
1404
- PostAttribute Destroy (0.3ms) DELETE FROM "post_attributes" WHERE "id" = 1
1405
- PostAttribute Load (0.1ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1
1406
- PostAttribute Load (0.1ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 1) LIMIT 1
1407
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1408
- PostAttribute Load (0.7ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1409
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) 
1410
- PostAttribute Update (0.7ms) UPDATE "post_attributes" SET "value" = 'Blah Blah Blah', "updated_at" = '2008-12-17 23:50:34' WHERE "id" = 2
1411
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) 
1412
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1413
- PostAttribute Load (1.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1414
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1415
- PostAttribute Load (0.6ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1416
- Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1417
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1418
- Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1419
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1420
- Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1421
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1422
- SQL (0.2ms) select sqlite_version(*)
1423
- SQL (0.7ms)  SELECT name
1424
- FROM sqlite_master
1425
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1426
- 
1427
- SQL (3.0ms) DROP TABLE "people"
1428
- SQL (2.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1429
- SQL (0.7ms)  SELECT name
1430
- FROM sqlite_master
1431
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1432
- 
1433
- SQL (2.8ms) DROP TABLE "person_contact_infos"
1434
- SQL (2.9ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1435
- SQL (0.7ms)  SELECT name
1436
- FROM sqlite_master
1437
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1438
- 
1439
- SQL (2.7ms) DROP TABLE "posts"
1440
- SQL (2.7ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1441
- SQL (0.7ms)  SELECT name
1442
- FROM sqlite_master
1443
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1444
- 
1445
- SQL (2.5ms) DROP TABLE "post_attributes"
1446
- SQL (3.2ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1447
- SQL (0.7ms)  SELECT name
1448
- FROM sqlite_master
1449
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1450
- 
1451
- SQL (2.5ms) DROP TABLE "preferences"
1452
- SQL (3.2ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1453
- SQL (0.7ms)  SELECT name
1454
- FROM sqlite_master
1455
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1456
- 
1457
- SQL (0.6ms)  SELECT name
1458
- FROM sqlite_master
1459
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1460
- 
1461
- SQL (0.3ms) SELECT version FROM "schema_migrations"
1462
- SQL (0.4ms)  SELECT name
1463
- FROM sqlite_master
1464
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1465
- 
1466
- SQL (0.4ms)  SELECT name
1467
- FROM sqlite_master
1468
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1469
- 
1470
- Person Load (0.4ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1471
- Preference Load (0.3ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1472
- PersonContactInfo Load (0.3ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1473
- Person Load (0.3ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1474
- PersonContactInfo Load (0.3ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1475
- Person Load (0.3ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1476
- Preference Load (0.3ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1477
- Person Load (0.2ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1478
- PersonContactInfo Load (0.4ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1479
- SQL (0.2ms) select sqlite_version(*)
1480
- SQL (0.6ms)  SELECT name
1481
- FROM sqlite_master
1482
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1483
- 
1484
- SQL (3.2ms) DROP TABLE "people"
1485
- SQL (3.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1486
- SQL (0.7ms)  SELECT name
1487
- FROM sqlite_master
1488
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1489
- 
1490
- SQL (2.9ms) DROP TABLE "person_contact_infos"
1491
- SQL (3.0ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1492
- SQL (0.7ms)  SELECT name
1493
- FROM sqlite_master
1494
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1495
- 
1496
- SQL (2.5ms) DROP TABLE "posts"
1497
- SQL (2.5ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1498
- SQL (0.6ms)  SELECT name
1499
- FROM sqlite_master
1500
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1501
- 
1502
- SQL (2.7ms) DROP TABLE "post_attributes"
1503
- SQL (3.1ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1504
- SQL (0.7ms)  SELECT name
1505
- FROM sqlite_master
1506
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1507
- 
1508
- SQL (2.8ms) DROP TABLE "preferences"
1509
- SQL (2.7ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1510
- SQL (0.7ms)  SELECT name
1511
- FROM sqlite_master
1512
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1513
- 
1514
- SQL (0.6ms)  SELECT name
1515
- FROM sqlite_master
1516
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1517
- 
1518
- SQL (0.3ms) SELECT version FROM "schema_migrations"
1519
- SQL (0.7ms)  SELECT name
1520
- FROM sqlite_master
1521
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1522
- 
1523
- SQL (0.2ms) select sqlite_version(*)
1524
- SQL (0.7ms)  SELECT name
1525
- FROM sqlite_master
1526
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1527
- 
1528
- SQL (3.2ms) DROP TABLE "people"
1529
- SQL (3.0ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1530
- SQL (0.7ms)  SELECT name
1531
- FROM sqlite_master
1532
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1533
- 
1534
- SQL (3.5ms) DROP TABLE "person_contact_infos"
1535
- SQL (3.5ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1536
- SQL (1.2ms)  SELECT name
1537
- FROM sqlite_master
1538
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1539
- 
1540
- SQL (3.0ms) DROP TABLE "posts"
1541
- SQL (2.6ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1542
- SQL (0.7ms)  SELECT name
1543
- FROM sqlite_master
1544
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1545
- 
1546
- SQL (2.2ms) DROP TABLE "post_attributes"
1547
- SQL (2.0ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1548
- SQL (0.7ms)  SELECT name
1549
- FROM sqlite_master
1550
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1551
- 
1552
- SQL (1.9ms) DROP TABLE "preferences"
1553
- SQL (1.9ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1554
- SQL (0.5ms)  SELECT name
1555
- FROM sqlite_master
1556
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1557
- 
1558
- SQL (0.5ms)  SELECT name
1559
- FROM sqlite_master
1560
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1561
- 
1562
- SQL (0.2ms) SELECT version FROM "schema_migrations"
1563
- SQL (0.5ms)  SELECT name
1564
- FROM sqlite_master
1565
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1566
- 
1567
- SQL (0.5ms)  SELECT name
1568
- FROM sqlite_master
1569
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1570
- 
1571
- SQL (0.5ms)  SELECT name
1572
- FROM sqlite_master
1573
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1574
- 
1575
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Following up from my first post.') LIMIT 1
1576
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 2) 
1577
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."post_id" = 2 AND "post_attributes"."name" = 'new_attribute') LIMIT 1
1578
- PostAttribute Create (0.4ms) INSERT INTO "post_attributes" ("name", "updated_at", "post_id", "value", "created_at") VALUES('new_attribute', '2008-12-17 23:51:36', 2, 'new_value', '2008-12-17 23:51:36')
1579
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."post_id" = 2 AND "post_attributes"."name" = 'new_attribute') LIMIT 1
1580
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1581
- PostAttribute Load (0.6ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1582
- PostAttribute Load (0.5ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1
1583
- PostAttribute Destroy (0.4ms) DELETE FROM "post_attributes" WHERE "id" = 1
1584
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1
1585
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 1) LIMIT 1
1586
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1587
- PostAttribute Load (0.7ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1588
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) 
1589
- PostAttribute Update (0.7ms) UPDATE "post_attributes" SET "value" = 'Blah Blah Blah', "updated_at" = '2008-12-17 23:51:36' WHERE "id" = 2
1590
- PostAttribute Load (0.3ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) 
1591
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1592
- PostAttribute Load (0.7ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1593
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1594
- PostAttribute Load (0.6ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1595
- Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1596
- PostAttribute Load (0.6ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1597
- Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1598
- PostAttribute Load (0.6ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1599
- Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1600
- PostAttribute Load (0.6ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1601
- Person Load (0.5ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1602
- Preference Load (0.5ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1603
- PersonContactInfo Load (0.5ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1604
- Person Load (0.4ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1605
- PersonContactInfo Load (0.4ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1606
- Person Load (0.2ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1607
- Preference Load (0.2ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1608
- Person Load (0.2ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1609
- PersonContactInfo Load (0.2ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1610
- SQL (0.2ms) select sqlite_version(*)
1611
- SQL (0.6ms)  SELECT name
1612
- FROM sqlite_master
1613
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1614
- 
1615
- SQL (3.0ms) DROP TABLE "people"
1616
- SQL (3.3ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1617
- SQL (0.8ms)  SELECT name
1618
- FROM sqlite_master
1619
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1620
- 
1621
- SQL (2.4ms) DROP TABLE "person_contact_infos"
1622
- SQL (2.8ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1623
- SQL (0.7ms)  SELECT name
1624
- FROM sqlite_master
1625
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1626
- 
1627
- SQL (2.7ms) DROP TABLE "posts"
1628
- SQL (3.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1629
- SQL (0.9ms)  SELECT name
1630
- FROM sqlite_master
1631
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1632
- 
1633
- SQL (3.1ms) DROP TABLE "post_attributes"
1634
- SQL (3.1ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1635
- SQL (0.9ms)  SELECT name
1636
- FROM sqlite_master
1637
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1638
- 
1639
- SQL (2.8ms) DROP TABLE "preferences"
1640
- SQL (3.0ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1641
- SQL (0.7ms)  SELECT name
1642
- FROM sqlite_master
1643
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1644
- 
1645
- SQL (3.2ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
1646
- SQL (0.8ms)  SELECT name
1647
- FROM sqlite_master
1648
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1649
- 
1650
- SQL (3.3ms) CREATE TABLE "document_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "document_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1651
- SQL (0.9ms)  SELECT name
1652
- FROM sqlite_master
1653
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1654
- 
1655
- SQL (0.7ms)  SELECT name
1656
- FROM sqlite_master
1657
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1658
- 
1659
- SQL (0.4ms) SELECT version FROM "schema_migrations"
1660
- SQL (0.5ms)  SELECT name
1661
- FROM sqlite_master
1662
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1663
- 
1664
- SQL (0.4ms)  SELECT name
1665
- FROM sqlite_master
1666
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1667
- 
1668
- Person Load (0.4ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1669
- Preference Load (0.3ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1670
- PersonContactInfo Load (0.3ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1671
- Person Load (0.3ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1672
- PersonContactInfo Load (0.3ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1673
- Person Load (0.3ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1674
- Preference Load (0.3ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1675
- SQL (0.2ms) select sqlite_version(*)
1676
- SQL (0.7ms)  SELECT name
1677
- FROM sqlite_master
1678
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1679
- 
1680
- SQL (2.8ms) DROP TABLE "people"
1681
- SQL (2.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) 
1682
- SQL (1.3ms)  SELECT name
1683
- FROM sqlite_master
1684
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1685
- 
1686
- SQL (3.5ms) DROP TABLE "person_contact_infos"
1687
- SQL (3.5ms) CREATE TABLE "person_contact_infos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1688
- SQL (1.0ms)  SELECT name
1689
- FROM sqlite_master
1690
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1691
- 
1692
- SQL (2.7ms) DROP TABLE "posts"
1693
- SQL (3.1ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) 
1694
- SQL (0.9ms)  SELECT name
1695
- FROM sqlite_master
1696
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1697
- 
1698
- SQL (2.0ms) DROP TABLE "post_attributes"
1699
- SQL (2.3ms) CREATE TABLE "post_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "post_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1700
- SQL (0.4ms)  SELECT name
1701
- FROM sqlite_master
1702
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1703
- 
1704
- SQL (1.6ms) DROP TABLE "preferences"
1705
- SQL (1.7ms) CREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1706
- SQL (0.4ms)  SELECT name
1707
- FROM sqlite_master
1708
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1709
- 
1710
- SQL (2.4ms) DROP TABLE "documents"
1711
- SQL (1.8ms) CREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
1712
- SQL (0.4ms)  SELECT name
1713
- FROM sqlite_master
1714
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1715
- 
1716
- SQL (1.9ms) DROP TABLE "document_attributes"
1717
- SQL (2.1ms) CREATE TABLE "document_attributes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "document_id" integer NOT NULL, "name" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) 
1718
- SQL (0.5ms)  SELECT name
1719
- FROM sqlite_master
1720
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1721
- 
1722
- SQL (0.4ms)  SELECT name
1723
- FROM sqlite_master
1724
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1725
- 
1726
- SQL (0.2ms) SELECT version FROM "schema_migrations"
1727
- SQL (0.5ms)  SELECT name
1728
- FROM sqlite_master
1729
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1730
- 
1731
- SQL (0.5ms)  SELECT name
1732
- FROM sqlite_master
1733
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1734
- 
1735
- SQL (0.5ms)  SELECT name
1736
- FROM sqlite_master
1737
- WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1738
- 
1739
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1740
- PostAttribute Load (0.6ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1741
- Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Following up from my first post.') LIMIT 1
1742
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 2) 
1743
- PostAttribute Load (0.1ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'new_attribute' AND "post_attributes"."post_id" = 2) LIMIT 1
1744
- PostAttribute Create (0.3ms) INSERT INTO "post_attributes" ("name", "updated_at", "post_id", "value", "created_at") VALUES('new_attribute', '2008-12-18 00:10:06', 2, 'new_value', '2008-12-18 00:10:06')
1745
- PostAttribute Load (0.2ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'new_attribute' AND "post_attributes"."post_id" = 2) LIMIT 1
1746
- Post Load (0.5ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1747
- PostAttribute Load (0.6ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1748
- PostAttribute Load (0.3ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1
1749
- PostAttribute Destroy (0.4ms) DELETE FROM "post_attributes" WHERE "id" = 1
1750
- PostAttribute Load (0.1ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1
1751
- PostAttribute Load (0.1ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 1) LIMIT 1
1752
- Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1753
- PostAttribute Load (0.7ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1754
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) 
1755
- PostAttribute Update (0.9ms) UPDATE "post_attributes" SET "value" = 'Blah Blah Blah', "updated_at" = '2008-12-18 00:10:06' WHERE "id" = 2
1756
- PostAttribute Load (0.4ms) SELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) 
1757
- Post Load (0.8ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1758
- PostAttribute Load (0.7ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1759
- Post Load (0.4ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1760
- PostAttribute Load (0.5ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1761
- Post Load (0.8ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1762
- PostAttribute Load (0.5ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1763
- Post Load (0.3ms) SELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1
1764
- PostAttribute Load (0.5ms) SELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) 
1765
- Person Load (0.5ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1766
- Preference Load (0.4ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1767
- PersonContactInfo Load (0.5ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1768
- Person Load (0.4ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1769
- PersonContactInfo Load (0.5ms) SELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) 
1770
- Person Load (0.4ms) SELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1
1771
- Preference Load (0.4ms) SELECT * FROM "preferences" WHERE ("preferences".person_id = 1) 
1772
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
1773
- SQL (0.8ms) SHOW TABLES
1774
- SQL (2.2ms) DROP TABLE `people`
1775
- SQL (105.5ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1776
- SQL (1.0ms) SHOW TABLES
1777
- SQL (2.0ms) DROP TABLE `person_contact_infos`
1778
- SQL (209.9ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
1779
- SQL (1.0ms) SHOW TABLES
1780
- SQL (2.3ms) DROP TABLE `posts`
1781
- SQL (116.2ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1782
- SQL (0.9ms) SHOW TABLES
1783
- SQL (1.9ms) DROP TABLE `post_attributes`
1784
- SQL (119.6ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1785
- SQL (1.1ms) SHOW TABLES
1786
- SQL (1.9ms) DROP TABLE `preferences`
1787
- SQL (116.4ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
1788
- SQL (1.0ms) SHOW TABLES
1789
- SQL (107.5ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `version` int(11) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1790
- SQL (1.2ms) SHOW TABLES
1791
- SQL (107.6ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
1792
- SQL (0.9ms) SHOW TABLES
1793
- SQL (0.9ms) SHOW TABLES
1794
- SQL (0.3ms) SELECT version FROM `schema_migrations`
1795
- SQL (0.8ms) SHOW TABLES
1796
- SQL (0.7ms) SHOW TABLES
1797
- SQL (0.6ms) SHOW TABLES
1798
- SQL (0.2ms) BEGIN
1799
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1800
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1801
- SQL (0.2ms) ROLLBACK
1802
- SQL (0.1ms) BEGIN
1803
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
1804
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
1805
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1
1806
- PostAttribute Create (0.3ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:11:30', 2, 'new_value', '2008-12-18 00:11:30')
1807
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1
1808
- SQL (0.9ms) ROLLBACK
1809
- SQL (0.1ms) BEGIN
1810
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1811
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1812
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
1813
- PostAttribute Destroy (0.3ms) DELETE FROM `post_attributes` WHERE `id` = 1
1814
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
1815
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
1816
- SQL (0.9ms) ROLLBACK
1817
- SQL (0.1ms) BEGIN
1818
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1819
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1820
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
1821
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:11:30' WHERE `id` = 2
1822
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
1823
- SQL (1.0ms) ROLLBACK
1824
- SQL (0.2ms) BEGIN
1825
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1826
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1827
- SQL (0.2ms) ROLLBACK
1828
- SQL (0.1ms) BEGIN
1829
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1830
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1831
- SQL (0.2ms) ROLLBACK
1832
- SQL (0.1ms) BEGIN
1833
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1834
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1835
- SQL (0.1ms) ROLLBACK
1836
- SQL (0.1ms) BEGIN
1837
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1838
- PostAttribute Load (0.1ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1839
- SQL (0.5ms) ROLLBACK
1840
- SQL (0.1ms) BEGIN
1841
- Person Load (0.4ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1842
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
1843
- PersonContactInfo Load (0.4ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
1844
- SQL (0.2ms) ROLLBACK
1845
- SQL (0.1ms) BEGIN
1846
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1847
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
1848
- SQL (0.1ms) ROLLBACK
1849
- SQL (0.1ms) BEGIN
1850
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1851
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
1852
- SQL (0.1ms) ROLLBACK
1853
- SQL (0.1ms) BEGIN
1854
- SQL (0.1ms) ROLLBACK
1855
- SQL (0.1ms) BEGIN
1856
- SQL (0.1ms) ROLLBACK
1857
- SQL (0.4ms) SET SQL_AUTO_IS_NULL=0
1858
- SQL (0.9ms) SHOW TABLES
1859
- SQL (30.3ms) DROP TABLE `people`
1860
- SQL (104.0ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1861
- SQL (1.5ms) SHOW TABLES
1862
- SQL (1.9ms) DROP TABLE `person_contact_infos`
1863
- SQL (237.4ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
1864
- SQL (1.1ms) SHOW TABLES
1865
- SQL (1.9ms) DROP TABLE `posts`
1866
- SQL (127.1ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1867
- SQL (1.1ms) SHOW TABLES
1868
- SQL (1.9ms) DROP TABLE `post_attributes`
1869
- SQL (118.4ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1870
- SQL (1.1ms) SHOW TABLES
1871
- SQL (2.8ms) DROP TABLE `preferences`
1872
- SQL (116.0ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
1873
- SQL (1.0ms) SHOW TABLES
1874
- SQL (1.7ms) DROP TABLE `documents`
1875
- SQL (106.3ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1876
- SQL (0.7ms) SHOW TABLES
1877
- SQL (1.6ms) DROP TABLE `document_attributes`
1878
- SQL (107.6ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
1879
- SQL (0.9ms) SHOW TABLES
1880
- SQL (0.8ms) SHOW TABLES
1881
- SQL (0.3ms) SELECT version FROM `schema_migrations`
1882
- SQL (0.6ms) SHOW TABLES
1883
- SQL (3.7ms) SHOW TABLES
1884
- SQL (0.8ms) SHOW TABLES
1885
- SQL (0.3ms) BEGIN
1886
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1887
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1888
- SQL (0.2ms) ROLLBACK
1889
- SQL (0.1ms) BEGIN
1890
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
1891
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
1892
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
1893
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:12:36', 2, 'new_value', '2008-12-18 00:12:36')
1894
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
1895
- SQL (0.9ms) ROLLBACK
1896
- SQL (0.1ms) BEGIN
1897
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1898
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1899
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
1900
- PostAttribute Destroy (0.2ms) DELETE FROM `post_attributes` WHERE `id` = 1
1901
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
1902
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
1903
- SQL (0.8ms) ROLLBACK
1904
- SQL (0.1ms) BEGIN
1905
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1906
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1907
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
1908
- PostAttribute Update (0.2ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:12:36' WHERE `id` = 2
1909
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
1910
- SQL (0.7ms) ROLLBACK
1911
- SQL (0.2ms) BEGIN
1912
- Post Load (0.5ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1913
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1914
- SQL (0.2ms) ROLLBACK
1915
- SQL (0.1ms) BEGIN
1916
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1917
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1918
- SQL (0.1ms) ROLLBACK
1919
- SQL (0.1ms) BEGIN
1920
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1921
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1922
- SQL (0.1ms) ROLLBACK
1923
- SQL (0.1ms) BEGIN
1924
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
1925
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
1926
- SQL (0.1ms) ROLLBACK
1927
- SQL (0.1ms) BEGIN
1928
- Person Load (0.4ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1929
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
1930
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
1931
- SQL (0.3ms) ROLLBACK
1932
- SQL (0.2ms) BEGIN
1933
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1934
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
1935
- SQL (0.1ms) ROLLBACK
1936
- SQL (0.1ms) BEGIN
1937
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1938
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
1939
- SQL (0.1ms) ROLLBACK
1940
- SQL (0.1ms) BEGIN
1941
- SQL (0.2ms) ROLLBACK
1942
- SQL (0.1ms) BEGIN
1943
- SQL (0.1ms) ROLLBACK
1944
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
1945
- SQL (0.7ms) SHOW TABLES
1946
- SQL (2.1ms) DROP TABLE `people`
1947
- SQL (104.0ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1948
- SQL (1.2ms) SHOW TABLES
1949
- SQL (2.2ms) DROP TABLE `person_contact_infos`
1950
- SQL (253.0ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
1951
- SQL (1.1ms) SHOW TABLES
1952
- SQL (1.9ms) DROP TABLE `posts`
1953
- SQL (93.8ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1954
- SQL (0.9ms) SHOW TABLES
1955
- SQL (1.8ms) DROP TABLE `post_attributes`
1956
- SQL (118.9ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1957
- SQL (0.9ms) SHOW TABLES
1958
- SQL (1.8ms) DROP TABLE `preferences`
1959
- SQL (116.3ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
1960
- SQL (1.0ms) SHOW TABLES
1961
- SQL (2.5ms) DROP TABLE `documents`
1962
- SQL (104.6ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1963
- SQL (1.2ms) SHOW TABLES
1964
- SQL (1.9ms) DROP TABLE `document_attributes`
1965
- SQL (117.1ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
1966
- SQL (1.1ms) SHOW TABLES
1967
- SQL (0.8ms) SHOW TABLES
1968
- SQL (0.3ms) SELECT version FROM `schema_migrations`
1969
- SQL (0.6ms) SHOW TABLES
1970
- SQL (0.6ms) SHOW TABLES
1971
- SQL (0.1ms) BEGIN
1972
- Person Load (0.4ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1973
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
1974
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
1975
- SQL (0.2ms) ROLLBACK
1976
- SQL (0.1ms) BEGIN
1977
- Person Load (0.5ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1978
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
1979
- SQL (0.2ms) ROLLBACK
1980
- SQL (0.1ms) BEGIN
1981
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
1982
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
1983
- SQL (0.1ms) ROLLBACK
1984
- SQL (0.1ms) BEGIN
1985
- SQL (0.1ms) ROLLBACK
1986
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
1987
- SQL (0.7ms) SHOW TABLES
1988
- SQL (2.3ms) DROP TABLE `people`
1989
- SQL (114.8ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1990
- SQL (0.9ms) SHOW TABLES
1991
- SQL (2.1ms) DROP TABLE `person_contact_infos`
1992
- SQL (152.8ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
1993
- SQL (0.9ms) SHOW TABLES
1994
- SQL (1.9ms) DROP TABLE `posts`
1995
- SQL (105.1ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1996
- SQL (1.0ms) SHOW TABLES
1997
- SQL (2.5ms) DROP TABLE `post_attributes`
1998
- SQL (115.2ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
1999
- SQL (0.9ms) SHOW TABLES
2000
- SQL (1.7ms) DROP TABLE `preferences`
2001
- SQL (119.1ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2002
- SQL (0.9ms) SHOW TABLES
2003
- SQL (1.8ms) DROP TABLE `documents`
2004
- SQL (127.8ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2005
- SQL (1.0ms) SHOW TABLES
2006
- SQL (1.6ms) DROP TABLE `document_attributes`
2007
- SQL (117.5ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2008
- SQL (1.1ms) SHOW TABLES
2009
- SQL (0.8ms) SHOW TABLES
2010
- SQL (0.3ms) SELECT version FROM `schema_migrations`
2011
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2012
- SQL (0.7ms) SHOW TABLES
2013
- SQL (0.5ms) SHOW TABLES
2014
- SQL (2.0ms) DROP TABLE `people`
2015
- SQL (94.9ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2016
- SQL (0.9ms) SHOW TABLES
2017
- SQL (21.8ms) DROP TABLE `person_contact_infos`
2018
- SQL (200.2ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2019
- SQL (0.8ms) SHOW TABLES
2020
- SQL (1.3ms) DROP TABLE `posts`
2021
- SQL (118.4ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2022
- SQL (1.1ms) SHOW TABLES
2023
- SQL (1.8ms) DROP TABLE `post_attributes`
2024
- SQL (118.9ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2025
- SQL (1.0ms) SHOW TABLES
2026
- SQL (1.9ms) DROP TABLE `preferences`
2027
- SQL (142.8ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2028
- SQL (1.1ms) SHOW TABLES
2029
- SQL (2.0ms) DROP TABLE `documents`
2030
- SQL (111.5ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2031
- SQL (1.0ms) SHOW TABLES
2032
- SQL (2.0ms) DROP TABLE `document_attributes`
2033
- SQL (106.0ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2034
- SQL (1.3ms) SHOW TABLES
2035
- SQL (0.7ms) SHOW TABLES
2036
- SQL (0.3ms) SELECT version FROM `schema_migrations`
2037
- SQL (0.6ms) SHOW TABLES
2038
- SQL (0.6ms) SHOW TABLES
2039
- SQL (0.1ms) BEGIN
2040
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2041
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2042
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2043
- SQL (0.2ms) ROLLBACK
2044
- SQL (0.1ms) BEGIN
2045
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2046
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2047
- SQL (0.2ms) ROLLBACK
2048
- SQL (0.1ms) BEGIN
2049
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2050
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2051
- SQL (0.1ms) ROLLBACK
2052
- SQL (0.1ms) BEGIN
2053
- Document Columns (2.0ms) SHOW FIELDS FROM `documents`
2054
- SQL (0.1ms) ROLLBACK
2055
- SQL (0.4ms) SET SQL_AUTO_IS_NULL=0
2056
- SQL (0.8ms) SHOW TABLES
2057
- SQL (0.5ms) SHOW TABLES
2058
- SQL (2.1ms) DROP TABLE `people`
2059
- SQL (107.3ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2060
- SQL (1.0ms) SHOW TABLES
2061
- SQL (1.8ms) DROP TABLE `person_contact_infos`
2062
- SQL (252.4ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2063
- SQL (0.9ms) SHOW TABLES
2064
- SQL (2.6ms) DROP TABLE `posts`
2065
- SQL (115.5ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2066
- SQL (1.0ms) SHOW TABLES
2067
- SQL (1.9ms) DROP TABLE `post_attributes`
2068
- SQL (130.5ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2069
- SQL (1.1ms) SHOW TABLES
2070
- SQL (2.1ms) DROP TABLE `preferences`
2071
- SQL (122.0ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2072
- SQL (1.0ms) SHOW TABLES
2073
- SQL (1.8ms) DROP TABLE `documents`
2074
- SQL (133.4ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2075
- SQL (1.1ms) SHOW TABLES
2076
- SQL (1.8ms) DROP TABLE `document_attributes`
2077
- SQL (106.1ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2078
- SQL (1.1ms) SHOW TABLES
2079
- SQL (0.9ms) SHOW TABLES
2080
- SQL (0.3ms) SELECT version FROM `schema_migrations`
2081
- SQL (0.8ms) SHOW TABLES
2082
- SQL (0.7ms) SHOW TABLES
2083
- SQL (0.6ms) SHOW TABLES
2084
- SQL (0.1ms) BEGIN
2085
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2086
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2087
- SQL (0.5ms) ROLLBACK
2088
- SQL (0.8ms) BEGIN
2089
- Post Load (0.5ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2090
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2091
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2092
- PostAttribute Create (0.3ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:15:39', 2, 'new_value', '2008-12-18 00:15:39')
2093
- PostAttribute Load (0.5ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2094
- SQL (1.0ms) ROLLBACK
2095
- SQL (0.2ms) BEGIN
2096
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2097
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2098
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2099
- PostAttribute Destroy (0.3ms) DELETE FROM `post_attributes` WHERE `id` = 1
2100
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2101
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2102
- SQL (0.8ms) ROLLBACK
2103
- SQL (0.1ms) BEGIN
2104
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2105
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2106
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2107
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:15:40' WHERE `id` = 2
2108
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2109
- SQL (0.9ms) ROLLBACK
2110
- SQL (0.1ms) BEGIN
2111
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2112
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2113
- SQL (0.2ms) ROLLBACK
2114
- SQL (0.1ms) BEGIN
2115
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2116
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2117
- SQL (0.2ms) ROLLBACK
2118
- SQL (0.1ms) BEGIN
2119
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2120
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2121
- SQL (0.1ms) ROLLBACK
2122
- SQL (0.1ms) BEGIN
2123
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2124
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2125
- SQL (0.1ms) ROLLBACK
2126
- SQL (0.2ms) BEGIN
2127
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2128
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2129
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2130
- SQL (0.2ms) ROLLBACK
2131
- SQL (0.1ms) BEGIN
2132
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2133
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2134
- SQL (0.1ms) ROLLBACK
2135
- SQL (0.1ms) BEGIN
2136
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2137
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2138
- SQL (0.1ms) ROLLBACK
2139
- SQL (0.1ms) BEGIN
2140
- Document Columns (2.9ms) SHOW FIELDS FROM `documents`
2141
- SQL (0.2ms) ROLLBACK
2142
- SQL (0.1ms) BEGIN
2143
- SQL (0.1ms) ROLLBACK
2144
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2145
- SQL (0.7ms) SHOW TABLES
2146
- SQL (0.5ms) SHOW TABLES
2147
- SQL (2.3ms) DROP TABLE `people`
2148
- SQL (120.9ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2149
- SQL (1.4ms) SHOW TABLES
2150
- SQL (1.5ms) DROP TABLE `person_contact_infos`
2151
- SQL (177.3ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2152
- SQL (1.0ms) SHOW TABLES
2153
- SQL (1.7ms) DROP TABLE `posts`
2154
- SQL (93.7ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2155
- SQL (1.6ms) SHOW TABLES
2156
- SQL (2.3ms) DROP TABLE `post_attributes`
2157
- SQL (143.9ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2158
- SQL (0.7ms) SHOW TABLES
2159
- SQL (1.4ms) DROP TABLE `preferences`
2160
- SQL (113.2ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2161
- SQL (0.6ms) SHOW TABLES
2162
- SQL (1.3ms) DROP TABLE `documents`
2163
- SQL (119.3ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2164
- SQL (1.1ms) SHOW TABLES
2165
- SQL (3.0ms) DROP TABLE `document_attributes`
2166
- SQL (118.5ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2167
- SQL (0.7ms) SHOW TABLES
2168
- SQL (0.5ms) SHOW TABLES
2169
- SQL (0.2ms) SELECT version FROM `schema_migrations`
2170
- SQL (3.1ms) SHOW TABLES
2171
- SQL (4.7ms) SHOW TABLES
2172
- SQL (0.6ms) SHOW TABLES
2173
- SQL (0.1ms) BEGIN
2174
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2175
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2176
- SQL (0.2ms) ROLLBACK
2177
- SQL (0.1ms) BEGIN
2178
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2179
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2180
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2181
- PostAttribute Create (0.3ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:16:07', 2, 'new_value', '2008-12-18 00:16:07')
2182
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2183
- SQL (0.7ms) ROLLBACK
2184
- SQL (0.1ms) BEGIN
2185
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2186
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2187
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2188
- PostAttribute Destroy (0.2ms) DELETE FROM `post_attributes` WHERE `id` = 1
2189
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2190
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2191
- SQL (0.8ms) ROLLBACK
2192
- SQL (0.2ms) BEGIN
2193
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2194
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2195
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2196
- PostAttribute Update (0.2ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:16:07' WHERE `id` = 2
2197
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2198
- SQL (0.9ms) ROLLBACK
2199
- SQL (0.1ms) BEGIN
2200
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2201
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2202
- SQL (0.1ms) ROLLBACK
2203
- SQL (0.1ms) BEGIN
2204
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2205
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2206
- SQL (0.1ms) ROLLBACK
2207
- SQL (0.1ms) BEGIN
2208
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2209
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2210
- SQL (0.1ms) ROLLBACK
2211
- SQL (0.1ms) BEGIN
2212
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2213
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2214
- SQL (0.1ms) ROLLBACK
2215
- SQL (0.1ms) BEGIN
2216
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2217
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2218
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2219
- SQL (0.1ms) ROLLBACK
2220
- SQL (0.1ms) BEGIN
2221
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2222
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2223
- SQL (0.1ms) ROLLBACK
2224
- SQL (0.1ms) BEGIN
2225
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2226
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2227
- SQL (0.1ms) ROLLBACK
2228
- SQL (0.1ms) BEGIN
2229
- Document Columns (2.7ms) SHOW FIELDS FROM `documents`
2230
- SQL (0.2ms) ROLLBACK
2231
- SQL (0.2ms) BEGIN
2232
- SQL (0.1ms) ROLLBACK
2233
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2234
- SQL (0.7ms) SHOW TABLES
2235
- SQL (0.5ms) SHOW TABLES
2236
- SQL (2.2ms) DROP TABLE `people`
2237
- SQL (119.7ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2238
- SQL (1.1ms) SHOW TABLES
2239
- SQL (1.9ms) DROP TABLE `person_contact_infos`
2240
- SQL (166.9ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2241
- SQL (1.0ms) SHOW TABLES
2242
- SQL (2.1ms) DROP TABLE `posts`
2243
- SQL (138.0ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2244
- SQL (1.0ms) SHOW TABLES
2245
- SQL (1.8ms) DROP TABLE `post_attributes`
2246
- SQL (118.8ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2247
- SQL (1.2ms) SHOW TABLES
2248
- SQL (2.7ms) DROP TABLE `preferences`
2249
- SQL (137.2ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2250
- SQL (1.1ms) SHOW TABLES
2251
- SQL (1.7ms) DROP TABLE `documents`
2252
- SQL (129.7ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2253
- SQL (1.1ms) SHOW TABLES
2254
- SQL (1.9ms) DROP TABLE `document_attributes`
2255
- SQL (139.8ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2256
- SQL (1.0ms) SHOW TABLES
2257
- SQL (0.9ms) SHOW TABLES
2258
- SQL (0.3ms) SELECT version FROM `schema_migrations`
2259
- SQL (0.7ms) SHOW TABLES
2260
- SQL (0.7ms) SHOW TABLES
2261
- SQL (1.0ms) SHOW TABLES
2262
- SQL (0.2ms) BEGIN
2263
- Post Load (0.5ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2264
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2265
- SQL (0.1ms) ROLLBACK
2266
- SQL (0.1ms) BEGIN
2267
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2268
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2269
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2270
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:19:52', 2, 'new_value', '2008-12-18 00:19:52')
2271
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2272
- SQL (0.7ms) ROLLBACK
2273
- SQL (0.1ms) BEGIN
2274
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2275
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2276
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2277
- PostAttribute Destroy (0.3ms) DELETE FROM `post_attributes` WHERE `id` = 1
2278
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2279
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2280
- SQL (0.9ms) ROLLBACK
2281
- SQL (0.2ms) BEGIN
2282
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2283
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2284
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2285
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:19:52' WHERE `id` = 2
2286
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2287
- SQL (0.7ms) ROLLBACK
2288
- SQL (0.1ms) BEGIN
2289
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2290
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2291
- SQL (0.1ms) ROLLBACK
2292
- SQL (0.1ms) BEGIN
2293
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2294
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2295
- SQL (0.1ms) ROLLBACK
2296
- SQL (0.1ms) BEGIN
2297
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2298
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2299
- SQL (0.1ms) ROLLBACK
2300
- SQL (0.1ms) BEGIN
2301
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2302
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2303
- SQL (0.1ms) ROLLBACK
2304
- SQL (0.2ms) BEGIN
2305
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2306
- Preference Load (0.4ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2307
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2308
- SQL (0.3ms) ROLLBACK
2309
- SQL (0.1ms) BEGIN
2310
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2311
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2312
- SQL (0.1ms) ROLLBACK
2313
- SQL (0.1ms) BEGIN
2314
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2315
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2316
- SQL (0.1ms) ROLLBACK
2317
- SQL (0.1ms) BEGIN
2318
- Document Columns (2.3ms) SHOW FIELDS FROM `documents`
2319
- SQL (0.2ms) ROLLBACK
2320
- SQL (0.1ms) BEGIN
2321
- SQL (0.1ms) ROLLBACK
2322
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2323
- SQL (0.8ms) SHOW TABLES
2324
- SQL (0.5ms) SHOW TABLES
2325
- SQL (1.3ms) DROP TABLE `people`
2326
- SQL (93.1ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2327
- SQL (0.6ms) SHOW TABLES
2328
- SQL (1.2ms) DROP TABLE `person_contact_infos`
2329
- SQL (187.6ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2330
- SQL (0.6ms) SHOW TABLES
2331
- SQL (1.1ms) DROP TABLE `posts`
2332
- SQL (107.9ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2333
- SQL (0.6ms) SHOW TABLES
2334
- SQL (1.6ms) DROP TABLE `post_attributes`
2335
- SQL (119.1ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2336
- SQL (0.6ms) SHOW TABLES
2337
- SQL (18.5ms) DROP TABLE `preferences`
2338
- SQL (135.4ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2339
- SQL (0.6ms) SHOW TABLES
2340
- SQL (1.2ms) DROP TABLE `documents`
2341
- SQL (136.2ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2342
- SQL (0.6ms) SHOW TABLES
2343
- SQL (1.1ms) DROP TABLE `document_attributes`
2344
- SQL (136.7ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2345
- SQL (0.7ms) SHOW TABLES
2346
- SQL (0.5ms) SHOW TABLES
2347
- SQL (0.2ms) SELECT version FROM `schema_migrations`
2348
- SQL (0.7ms) SHOW TABLES
2349
- SQL (1.2ms) SHOW TABLES
2350
- SQL (0.6ms) SHOW TABLES
2351
- SQL (0.1ms) BEGIN
2352
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2353
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2354
- SQL (0.1ms) ROLLBACK
2355
- SQL (0.1ms) BEGIN
2356
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2357
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2358
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2359
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:19:58', 2, 'new_value', '2008-12-18 00:19:58')
2360
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2361
- SQL (0.5ms) ROLLBACK
2362
- SQL (0.1ms) BEGIN
2363
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2364
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2365
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2366
- PostAttribute Destroy (0.2ms) DELETE FROM `post_attributes` WHERE `id` = 1
2367
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2368
- PostAttribute Load (0.1ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2369
- SQL (0.6ms) ROLLBACK
2370
- SQL (0.1ms) BEGIN
2371
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2372
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2373
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2374
- PostAttribute Update (0.2ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:19:58' WHERE `id` = 2
2375
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2376
- SQL (1.1ms) ROLLBACK
2377
- SQL (0.1ms) BEGIN
2378
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2379
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2380
- SQL (0.1ms) ROLLBACK
2381
- SQL (0.1ms) BEGIN
2382
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2383
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2384
- SQL (0.2ms) ROLLBACK
2385
- SQL (0.1ms) BEGIN
2386
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2387
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2388
- SQL (0.1ms) ROLLBACK
2389
- SQL (0.1ms) BEGIN
2390
- Post Load (0.1ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2391
- PostAttribute Load (0.1ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2392
- SQL (0.1ms) ROLLBACK
2393
- SQL (0.1ms) BEGIN
2394
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2395
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2396
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2397
- SQL (0.1ms) ROLLBACK
2398
- SQL (0.1ms) BEGIN
2399
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2400
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2401
- SQL (0.1ms) ROLLBACK
2402
- SQL (0.1ms) BEGIN
2403
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2404
- Preference Load (0.1ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2405
- SQL (0.1ms) ROLLBACK
2406
- SQL (0.1ms) BEGIN
2407
- Document Columns (1.6ms) SHOW FIELDS FROM `documents`
2408
- SQL (0.2ms) ROLLBACK
2409
- SQL (0.1ms) BEGIN
2410
- SQL (0.1ms) ROLLBACK
2411
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2412
- SQL (0.7ms) SHOW TABLES
2413
- SQL (0.5ms) SHOW TABLES
2414
- SQL (2.6ms) DROP TABLE `people`
2415
- SQL (103.0ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2416
- SQL (1.3ms) SHOW TABLES
2417
- SQL (2.3ms) DROP TABLE `person_contact_infos`
2418
- SQL (167.5ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2419
- SQL (1.1ms) SHOW TABLES
2420
- SQL (1.9ms) DROP TABLE `posts`
2421
- SQL (116.6ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2422
- SQL (1.0ms) SHOW TABLES
2423
- SQL (1.6ms) DROP TABLE `post_attributes`
2424
- SQL (118.8ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2425
- SQL (1.0ms) SHOW TABLES
2426
- SQL (1.6ms) DROP TABLE `preferences`
2427
- SQL (150.2ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2428
- SQL (1.1ms) SHOW TABLES
2429
- SQL (16.4ms) DROP TABLE `documents`
2430
- SQL (135.4ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2431
- SQL (0.9ms) SHOW TABLES
2432
- SQL (1.9ms) DROP TABLE `document_attributes`
2433
- SQL (118.4ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2434
- SQL (1.0ms) SHOW TABLES
2435
- SQL (0.8ms) SHOW TABLES
2436
- SQL (0.2ms) SELECT version FROM `schema_migrations`
2437
- SQL (0.9ms) SHOW TABLES
2438
- SQL (1.0ms) SHOW TABLES
2439
- SQL (0.6ms) SHOW TABLES
2440
- SQL (0.1ms) BEGIN
2441
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2442
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2443
- SQL (0.2ms) ROLLBACK
2444
- SQL (0.1ms) BEGIN
2445
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2446
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2447
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2448
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:20:04', 2, 'new_value', '2008-12-18 00:20:04')
2449
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2450
- SQL (0.6ms) ROLLBACK
2451
- SQL (0.1ms) BEGIN
2452
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2453
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2454
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2455
- PostAttribute Destroy (0.2ms) DELETE FROM `post_attributes` WHERE `id` = 1
2456
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2457
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2458
- SQL (0.7ms) ROLLBACK
2459
- SQL (0.1ms) BEGIN
2460
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2461
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2462
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2463
- PostAttribute Update (0.2ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:20:04' WHERE `id` = 2
2464
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2465
- SQL (0.8ms) ROLLBACK
2466
- SQL (0.1ms) BEGIN
2467
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2468
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2469
- SQL (0.1ms) ROLLBACK
2470
- SQL (0.1ms) BEGIN
2471
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2472
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2473
- SQL (0.1ms) ROLLBACK
2474
- SQL (0.1ms) BEGIN
2475
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2476
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2477
- SQL (0.1ms) ROLLBACK
2478
- SQL (0.1ms) BEGIN
2479
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2480
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2481
- SQL (0.1ms) ROLLBACK
2482
- SQL (0.2ms) BEGIN
2483
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2484
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2485
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2486
- SQL (0.2ms) ROLLBACK
2487
- SQL (0.1ms) BEGIN
2488
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2489
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2490
- SQL (0.1ms) ROLLBACK
2491
- SQL (0.1ms) BEGIN
2492
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2493
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2494
- SQL (0.3ms) ROLLBACK
2495
- SQL (0.1ms) BEGIN
2496
- Document Columns (2.4ms) SHOW FIELDS FROM `documents`
2497
- SQL (0.2ms) ROLLBACK
2498
- SQL (0.1ms) BEGIN
2499
- SQL (0.1ms) ROLLBACK
2500
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2501
- SQL (0.8ms) SHOW TABLES
2502
- SQL (0.6ms) SHOW TABLES
2503
- SQL (25.6ms) DROP TABLE `people`
2504
- SQL (114.3ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2505
- SQL (1.4ms) SHOW TABLES
2506
- SQL (2.0ms) DROP TABLE `person_contact_infos`
2507
- SQL (184.7ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2508
- SQL (1.2ms) SHOW TABLES
2509
- SQL (2.0ms) DROP TABLE `posts`
2510
- SQL (105.0ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2511
- SQL (1.0ms) SHOW TABLES
2512
- SQL (1.8ms) DROP TABLE `post_attributes`
2513
- SQL (129.6ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2514
- SQL (1.5ms) SHOW TABLES
2515
- SQL (2.5ms) DROP TABLE `preferences`
2516
- SQL (136.7ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2517
- SQL (0.9ms) SHOW TABLES
2518
- SQL (1.4ms) DROP TABLE `documents`
2519
- SQL (130.1ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2520
- SQL (1.8ms) SHOW TABLES
2521
- SQL (1.5ms) DROP TABLE `document_attributes`
2522
- SQL (141.7ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2523
- SQL (1.1ms) SHOW TABLES
2524
- SQL (1.2ms) SHOW TABLES
2525
- SQL (0.3ms) SELECT version FROM `schema_migrations`
2526
- SQL (1.1ms) SHOW TABLES
2527
- SQL (0.6ms) SHOW TABLES
2528
- SQL (0.6ms) SHOW TABLES
2529
- SQL (0.1ms) BEGIN
2530
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2531
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2532
- SQL (0.2ms) ROLLBACK
2533
- SQL (0.1ms) BEGIN
2534
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2535
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2536
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1
2537
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:31:16', 2, 'new_value', '2008-12-18 00:31:16')
2538
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1
2539
- SQL (0.8ms) ROLLBACK
2540
- SQL (0.1ms) BEGIN
2541
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2542
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2543
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2544
- PostAttribute Destroy (0.3ms) DELETE FROM `post_attributes` WHERE `id` = 1
2545
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2546
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2547
- SQL (0.7ms) ROLLBACK
2548
- SQL (0.2ms) BEGIN
2549
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2550
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2551
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2552
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:31:16' WHERE `id` = 2
2553
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2554
- SQL (0.9ms) ROLLBACK
2555
- SQL (0.2ms) BEGIN
2556
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2557
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2558
- SQL (0.1ms) ROLLBACK
2559
- SQL (0.1ms) BEGIN
2560
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2561
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2562
- SQL (0.1ms) ROLLBACK
2563
- SQL (0.1ms) BEGIN
2564
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2565
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2566
- SQL (0.1ms) ROLLBACK
2567
- SQL (0.1ms) BEGIN
2568
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2569
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2570
- SQL (0.1ms) ROLLBACK
2571
- SQL (0.1ms) BEGIN
2572
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2573
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2574
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2575
- SQL (0.1ms) ROLLBACK
2576
- SQL (0.1ms) BEGIN
2577
- Person Load (0.4ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2578
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2579
- SQL (0.2ms) ROLLBACK
2580
- SQL (0.2ms) BEGIN
2581
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2582
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2583
- SQL (0.2ms) ROLLBACK
2584
- SQL (0.1ms) BEGIN
2585
- Document Columns (2.0ms) SHOW FIELDS FROM `documents`
2586
- SQL (0.1ms) ROLLBACK
2587
- SQL (0.1ms) BEGIN
2588
- SQL (0.1ms) ROLLBACK
2589
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2590
- SQL (0.7ms) SHOW TABLES
2591
- SQL (0.5ms) SHOW TABLES
2592
- SQL (2.3ms) DROP TABLE `people`
2593
- SQL (84.7ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2594
- SQL (1.0ms) SHOW TABLES
2595
- SQL (2.6ms) DROP TABLE `person_contact_infos`
2596
- SQL (116.4ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2597
- SQL (1.0ms) SHOW TABLES
2598
- SQL (1.8ms) DROP TABLE `posts`
2599
- SQL (117.5ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2600
- SQL (1.1ms) SHOW TABLES
2601
- SQL (1.8ms) DROP TABLE `post_attributes`
2602
- SQL (126.6ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2603
- SQL (1.1ms) SHOW TABLES
2604
- SQL (1.8ms) DROP TABLE `preferences`
2605
- SQL (130.7ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2606
- SQL (1.1ms) SHOW TABLES
2607
- SQL (2.5ms) DROP TABLE `documents`
2608
- SQL (127.1ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2609
- SQL (1.0ms) SHOW TABLES
2610
- SQL (1.9ms) DROP TABLE `document_attributes`
2611
- SQL (117.1ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2612
- SQL (1.0ms) SHOW TABLES
2613
- SQL (0.8ms) SHOW TABLES
2614
- SQL (0.2ms) SELECT version FROM `schema_migrations`
2615
- SQL (0.7ms) SHOW TABLES
2616
- SQL (0.7ms) SHOW TABLES
2617
- SQL (0.7ms) SHOW TABLES
2618
- SQL (0.1ms) BEGIN
2619
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2620
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2621
- SQL (0.2ms) ROLLBACK
2622
- SQL (0.1ms) BEGIN
2623
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2624
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2625
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1
2626
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:32:24', 2, 'new_value', '2008-12-18 00:32:24')
2627
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1
2628
- SQL (0.9ms) ROLLBACK
2629
- SQL (0.2ms) BEGIN
2630
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2631
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2632
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2633
- PostAttribute Destroy (0.5ms) DELETE FROM `post_attributes` WHERE `id` = 1
2634
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2635
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2636
- SQL (0.7ms) ROLLBACK
2637
- SQL (0.2ms) BEGIN
2638
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2639
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2640
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2641
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:32:24' WHERE `id` = 2
2642
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2643
- SQL (1.0ms) ROLLBACK
2644
- SQL (0.2ms) BEGIN
2645
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2646
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2647
- SQL (0.1ms) ROLLBACK
2648
- SQL (0.1ms) BEGIN
2649
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2650
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2651
- SQL (0.1ms) ROLLBACK
2652
- SQL (0.1ms) BEGIN
2653
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2654
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2655
- SQL (0.1ms) ROLLBACK
2656
- SQL (0.1ms) BEGIN
2657
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2658
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2659
- SQL (0.1ms) ROLLBACK
2660
- SQL (0.1ms) BEGIN
2661
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2662
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2663
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2664
- SQL (0.1ms) ROLLBACK
2665
- SQL (0.1ms) BEGIN
2666
- Person Load (0.4ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2667
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2668
- SQL (0.2ms) ROLLBACK
2669
- SQL (0.1ms) BEGIN
2670
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2671
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2672
- SQL (0.1ms) ROLLBACK
2673
- SQL (0.1ms) BEGIN
2674
- Document Columns (1.8ms) SHOW FIELDS FROM `documents`
2675
- SQL (0.1ms) ROLLBACK
2676
- SQL (0.1ms) BEGIN
2677
- SQL (0.1ms) ROLLBACK
2678
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2679
- SQL (0.7ms) SHOW TABLES
2680
- SQL (0.5ms) SHOW TABLES
2681
- SQL (2.3ms) DROP TABLE `people`
2682
- SQL (94.8ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2683
- SQL (1.1ms) SHOW TABLES
2684
- SQL (16.7ms) DROP TABLE `person_contact_infos`
2685
- SQL (135.1ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2686
- SQL (1.0ms) SHOW TABLES
2687
- SQL (1.9ms) DROP TABLE `posts`
2688
- SQL (118.4ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2689
- SQL (1.1ms) SHOW TABLES
2690
- SQL (1.8ms) DROP TABLE `post_attributes`
2691
- SQL (94.0ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2692
- SQL (1.1ms) SHOW TABLES
2693
- SQL (1.8ms) DROP TABLE `preferences`
2694
- SQL (96.4ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2695
- SQL (1.1ms) SHOW TABLES
2696
- SQL (3.1ms) DROP TABLE `documents`
2697
- SQL (103.5ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2698
- SQL (1.0ms) SHOW TABLES
2699
- SQL (2.6ms) DROP TABLE `document_attributes`
2700
- SQL (105.5ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2701
- SQL (1.3ms) SHOW TABLES
2702
- SQL (0.8ms) SHOW TABLES
2703
- SQL (0.3ms) SELECT version FROM `schema_migrations`
2704
- SQL (0.7ms) SHOW TABLES
2705
- SQL (0.7ms) SHOW TABLES
2706
- SQL (0.7ms) SHOW TABLES
2707
- SQL (0.1ms) BEGIN
2708
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2709
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2710
- SQL (0.1ms) ROLLBACK
2711
- SQL (0.1ms) BEGIN
2712
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2713
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2714
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1
2715
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:35:40', 2, 'new_value', '2008-12-18 00:35:40')
2716
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1
2717
- SQL (0.7ms) ROLLBACK
2718
- SQL (0.1ms) BEGIN
2719
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2720
- PostAttribute Load (0.5ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2721
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2722
- PostAttribute Destroy (0.2ms) DELETE FROM `post_attributes` WHERE `id` = 1
2723
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2724
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2725
- SQL (0.9ms) ROLLBACK
2726
- SQL (0.2ms) BEGIN
2727
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2728
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2729
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2730
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:35:40' WHERE `id` = 2
2731
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2732
- SQL (1.6ms) ROLLBACK
2733
- SQL (0.2ms) BEGIN
2734
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2735
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2736
- SQL (0.1ms) ROLLBACK
2737
- SQL (0.1ms) BEGIN
2738
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2739
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2740
- SQL (0.1ms) ROLLBACK
2741
- SQL (0.1ms) BEGIN
2742
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2743
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2744
- SQL (0.1ms) ROLLBACK
2745
- SQL (0.1ms) BEGIN
2746
- Post Load (0.1ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2747
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2748
- SQL (0.1ms) ROLLBACK
2749
- SQL (0.1ms) BEGIN
2750
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2751
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2752
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2753
- SQL (0.2ms) ROLLBACK
2754
- SQL (0.2ms) BEGIN
2755
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2756
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2757
- SQL (0.2ms) ROLLBACK
2758
- SQL (0.1ms) BEGIN
2759
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2760
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2761
- SQL (0.1ms) ROLLBACK
2762
- SQL (0.1ms) BEGIN
2763
- Document Columns (2.6ms) SHOW FIELDS FROM `documents`
2764
- SQL (0.2ms) ROLLBACK
2765
- SQL (0.1ms) BEGIN
2766
- SQL (0.2ms) ROLLBACK
2767
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2768
- SQL (0.9ms) SHOW TABLES
2769
- SQL (0.6ms) SHOW TABLES
2770
- SQL (2.1ms) DROP TABLE `people`
2771
- SQL (116.8ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2772
- SQL (1.2ms) SHOW TABLES
2773
- SQL (1.9ms) DROP TABLE `person_contact_infos`
2774
- SQL (238.4ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2775
- SQL (0.7ms) SHOW TABLES
2776
- SQL (31.0ms) DROP TABLE `posts`
2777
- SQL (136.1ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2778
- SQL (0.7ms) SHOW TABLES
2779
- SQL (14.7ms) DROP TABLE `post_attributes`
2780
- SQL (101.2ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2781
- SQL (1.2ms) SHOW TABLES
2782
- SQL (1.7ms) DROP TABLE `preferences`
2783
- SQL (116.4ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2784
- SQL (0.8ms) SHOW TABLES
2785
- SQL (1.5ms) DROP TABLE `documents`
2786
- SQL (108.7ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2787
- SQL (0.6ms) SHOW TABLES
2788
- SQL (1.6ms) DROP TABLE `document_attributes`
2789
- SQL (106.9ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2790
- SQL (1.2ms) SHOW TABLES
2791
- SQL (1.0ms) SHOW TABLES
2792
- SQL (0.3ms) SELECT version FROM `schema_migrations`
2793
- SQL (1.6ms) SHOW TABLES
2794
- SQL (0.8ms) SHOW TABLES
2795
- SQL (0.7ms) SHOW TABLES
2796
- SQL (0.1ms) BEGIN
2797
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2798
- PostAttribute Load (1.1ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2799
- SQL (0.1ms) ROLLBACK
2800
- SQL (0.1ms) BEGIN
2801
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2802
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2803
- PostAttribute Load (1.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1
2804
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:36:10', 2, 'new_value', '2008-12-18 00:36:10')
2805
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1
2806
- SQL (0.8ms) ROLLBACK
2807
- SQL (0.1ms) BEGIN
2808
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2809
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2810
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2811
- PostAttribute Destroy (0.2ms) DELETE FROM `post_attributes` WHERE `id` = 1
2812
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2813
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2814
- SQL (0.9ms) ROLLBACK
2815
- SQL (0.2ms) BEGIN
2816
- Post Load (0.5ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2817
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2818
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2819
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:36:10' WHERE `id` = 2
2820
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2821
- SQL (1.5ms) ROLLBACK
2822
- SQL (0.2ms) BEGIN
2823
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2824
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2825
- SQL (0.1ms) ROLLBACK
2826
- SQL (0.1ms) BEGIN
2827
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2828
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2829
- SQL (0.1ms) ROLLBACK
2830
- SQL (0.1ms) BEGIN
2831
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2832
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2833
- SQL (0.1ms) ROLLBACK
2834
- SQL (0.1ms) BEGIN
2835
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2836
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2837
- SQL (0.1ms) ROLLBACK
2838
- SQL (0.1ms) BEGIN
2839
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2840
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2841
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2842
- SQL (0.2ms) ROLLBACK
2843
- SQL (0.1ms) BEGIN
2844
- Person Load (0.4ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2845
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2846
- SQL (0.1ms) ROLLBACK
2847
- SQL (0.1ms) BEGIN
2848
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2849
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2850
- SQL (0.1ms) ROLLBACK
2851
- SQL (0.1ms) BEGIN
2852
- Document Columns (2.5ms) SHOW FIELDS FROM `documents`
2853
- SQL (0.6ms) ROLLBACK
2854
- SQL (0.1ms) BEGIN
2855
- SQL (0.2ms) ROLLBACK
2856
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2857
- SQL (0.7ms) SHOW TABLES
2858
- SQL (0.5ms) SHOW TABLES
2859
- SQL (2.2ms) DROP TABLE `people`
2860
- SQL (136.8ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2861
- SQL (1.0ms) SHOW TABLES
2862
- SQL (1.8ms) DROP TABLE `person_contact_infos`
2863
- SQL (217.4ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2864
- SQL (1.1ms) SHOW TABLES
2865
- SQL (2.6ms) DROP TABLE `posts`
2866
- SQL (116.1ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2867
- SQL (1.1ms) SHOW TABLES
2868
- SQL (1.5ms) DROP TABLE `post_attributes`
2869
- SQL (119.6ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2870
- SQL (1.5ms) SHOW TABLES
2871
- SQL (2.3ms) DROP TABLE `preferences`
2872
- SQL (127.3ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2873
- SQL (1.1ms) SHOW TABLES
2874
- SQL (1.3ms) DROP TABLE `documents`
2875
- SQL (117.2ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2876
- SQL (0.9ms) SHOW TABLES
2877
- SQL (1.4ms) DROP TABLE `document_attributes`
2878
- SQL (118.1ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2879
- SQL (0.9ms) SHOW TABLES
2880
- SQL (0.8ms) SHOW TABLES
2881
- SQL (0.3ms) SELECT version FROM `schema_migrations`
2882
- SQL (3.7ms) SHOW TABLES
2883
- SQL (8.3ms) SHOW TABLES
2884
- SQL (0.7ms) SHOW TABLES
2885
- SQL (0.5ms) BEGIN
2886
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2887
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2888
- SQL (0.2ms) ROLLBACK
2889
- SQL (0.1ms) BEGIN
2890
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2891
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2892
- PostAttribute Load (0.4ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2893
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:42:35', 2, 'new_value', '2008-12-18 00:42:35')
2894
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2895
- SQL (0.8ms) ROLLBACK
2896
- SQL (0.2ms) BEGIN
2897
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2898
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2899
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2900
- PostAttribute Destroy (0.2ms) DELETE FROM `post_attributes` WHERE `id` = 1
2901
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2902
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2903
- SQL (0.7ms) ROLLBACK
2904
- SQL (0.1ms) BEGIN
2905
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2906
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2907
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2908
- PostAttribute Update (0.2ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:42:35' WHERE `id` = 2
2909
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2910
- SQL (0.7ms) ROLLBACK
2911
- SQL (0.1ms) BEGIN
2912
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2913
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2914
- SQL (0.1ms) ROLLBACK
2915
- SQL (0.1ms) BEGIN
2916
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2917
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2918
- SQL (0.1ms) ROLLBACK
2919
- SQL (0.1ms) BEGIN
2920
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2921
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2922
- SQL (0.1ms) ROLLBACK
2923
- SQL (0.1ms) BEGIN
2924
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2925
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2926
- SQL (0.1ms) ROLLBACK
2927
- SQL (0.1ms) BEGIN
2928
- Person Load (0.4ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2929
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2930
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2931
- SQL (0.2ms) ROLLBACK
2932
- SQL (0.1ms) BEGIN
2933
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2934
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
2935
- SQL (0.2ms) ROLLBACK
2936
- SQL (0.1ms) BEGIN
2937
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
2938
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
2939
- SQL (0.1ms) ROLLBACK
2940
- SQL (0.1ms) BEGIN
2941
- Document Columns (2.4ms) SHOW FIELDS FROM `documents`
2942
- SQL (0.2ms) ROLLBACK
2943
- SQL (0.1ms) BEGIN
2944
- SQL (0.1ms) ROLLBACK
2945
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
2946
- SQL (0.7ms) SHOW TABLES
2947
- SQL (0.6ms) SHOW TABLES
2948
- SQL (2.2ms) DROP TABLE `people`
2949
- SQL (133.7ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2950
- SQL (1.1ms) SHOW TABLES
2951
- SQL (1.9ms) DROP TABLE `person_contact_infos`
2952
- SQL (261.3ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2953
- SQL (0.9ms) SHOW TABLES
2954
- SQL (1.7ms) DROP TABLE `posts`
2955
- SQL (120.0ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2956
- SQL (1.1ms) SHOW TABLES
2957
- SQL (3.2ms) DROP TABLE `post_attributes`
2958
- SQL (136.5ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2959
- SQL (1.0ms) SHOW TABLES
2960
- SQL (1.9ms) DROP TABLE `preferences`
2961
- SQL (116.3ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2962
- SQL (1.0ms) SHOW TABLES
2963
- SQL (1.7ms) DROP TABLE `documents`
2964
- SQL (106.4ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
2965
- SQL (0.9ms) SHOW TABLES
2966
- SQL (2.5ms) DROP TABLE `document_attributes`
2967
- SQL (118.4ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
2968
- SQL (1.1ms) SHOW TABLES
2969
- SQL (0.8ms) SHOW TABLES
2970
- SQL (0.3ms) SELECT version FROM `schema_migrations`
2971
- SQL (0.7ms) SHOW TABLES
2972
- SQL (9.6ms) SHOW TABLES
2973
- SQL (0.7ms) SHOW TABLES
2974
- SQL (0.1ms) BEGIN
2975
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2976
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2977
- SQL (0.2ms) ROLLBACK
2978
- SQL (0.1ms) BEGIN
2979
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
2980
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
2981
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2982
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:44:15', 2, 'new_value', '2008-12-18 00:44:15')
2983
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
2984
- SQL (0.7ms) ROLLBACK
2985
- SQL (0.1ms) BEGIN
2986
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2987
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2988
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2989
- PostAttribute Destroy (0.3ms) DELETE FROM `post_attributes` WHERE `id` = 1
2990
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
2991
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
2992
- SQL (0.8ms) ROLLBACK
2993
- SQL (0.2ms) BEGIN
2994
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
2995
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
2996
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2997
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:44:15' WHERE `id` = 2
2998
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
2999
- SQL (0.7ms) ROLLBACK
3000
- SQL (0.2ms) BEGIN
3001
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3002
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3003
- SQL (0.1ms) ROLLBACK
3004
- SQL (0.1ms) BEGIN
3005
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3006
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3007
- SQL (0.1ms) ROLLBACK
3008
- SQL (0.1ms) BEGIN
3009
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3010
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3011
- SQL (0.1ms) ROLLBACK
3012
- SQL (0.1ms) BEGIN
3013
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3014
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3015
- SQL (0.1ms) ROLLBACK
3016
- SQL (0.1ms) BEGIN
3017
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
3018
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
3019
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
3020
- SQL (0.2ms) ROLLBACK
3021
- SQL (0.1ms) BEGIN
3022
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
3023
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
3024
- SQL (0.1ms) ROLLBACK
3025
- SQL (0.1ms) BEGIN
3026
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
3027
- Preference Load (0.1ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
3028
- SQL (0.1ms) ROLLBACK
3029
- SQL (0.1ms) BEGIN
3030
- Document Columns (2.3ms) SHOW FIELDS FROM `documents`
3031
- SQL (0.2ms) ROLLBACK
3032
- SQL (0.1ms) BEGIN
3033
- SQL (0.1ms) ROLLBACK
3034
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
3035
- SQL (0.7ms) SHOW TABLES
3036
- SQL (0.6ms) SHOW TABLES
3037
- SQL (2.3ms) DROP TABLE `people`
3038
- SQL (115.9ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3039
- SQL (1.2ms) SHOW TABLES
3040
- SQL (2.5ms) DROP TABLE `person_contact_infos`
3041
- SQL (173.1ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
3042
- SQL (1.2ms) SHOW TABLES
3043
- SQL (1.9ms) DROP TABLE `posts`
3044
- SQL (115.6ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3045
- SQL (1.3ms) SHOW TABLES
3046
- SQL (2.3ms) DROP TABLE `post_attributes`
3047
- SQL (105.1ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3048
- SQL (0.7ms) SHOW TABLES
3049
- SQL (2.9ms) DROP TABLE `preferences`
3050
- SQL (118.8ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
3051
- SQL (1.2ms) SHOW TABLES
3052
- SQL (2.5ms) DROP TABLE `documents`
3053
- SQL (138.6ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3054
- SQL (1.0ms) SHOW TABLES
3055
- SQL (1.8ms) DROP TABLE `document_attributes`
3056
- SQL (128.7ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
3057
- SQL (1.2ms) SHOW TABLES
3058
- SQL (0.9ms) SHOW TABLES
3059
- SQL (0.3ms) SELECT version FROM `schema_migrations`
3060
- SQL (0.7ms) SHOW TABLES
3061
- SQL (0.7ms) SHOW TABLES
3062
- SQL (0.6ms) SHOW TABLES
3063
- SQL (0.1ms) BEGIN
3064
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3065
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3066
- SQL (0.2ms) ROLLBACK
3067
- SQL (0.1ms) BEGIN
3068
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
3069
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
3070
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
3071
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:46:50', 2, 'new_value', '2008-12-18 00:46:50')
3072
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
3073
- SQL (0.8ms) ROLLBACK
3074
- SQL (0.1ms) BEGIN
3075
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3076
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3077
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
3078
- PostAttribute Destroy (0.2ms) DELETE FROM `post_attributes` WHERE `id` = 1
3079
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
3080
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
3081
- SQL (0.8ms) ROLLBACK
3082
- SQL (0.1ms) BEGIN
3083
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3084
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3085
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
3086
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:46:50' WHERE `id` = 2
3087
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
3088
- SQL (0.9ms) ROLLBACK
3089
- SQL (0.2ms) BEGIN
3090
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3091
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3092
- SQL (0.1ms) ROLLBACK
3093
- SQL (0.1ms) BEGIN
3094
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3095
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3096
- SQL (0.1ms) ROLLBACK
3097
- SQL (0.1ms) BEGIN
3098
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3099
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3100
- SQL (0.1ms) ROLLBACK
3101
- SQL (0.1ms) BEGIN
3102
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3103
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3104
- SQL (0.1ms) ROLLBACK
3105
- SQL (0.2ms) BEGIN
3106
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
3107
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
3108
- PersonContactInfo Load (0.3ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
3109
- SQL (0.2ms) ROLLBACK
3110
- SQL (0.1ms) BEGIN
3111
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
3112
- PersonContactInfo Load (0.4ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
3113
- SQL (0.1ms) ROLLBACK
3114
- SQL (0.1ms) BEGIN
3115
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
3116
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
3117
- SQL (0.1ms) ROLLBACK
3118
- SQL (0.1ms) BEGIN
3119
- Document Columns (2.6ms) SHOW FIELDS FROM `documents`
3120
- SQL (0.2ms) ROLLBACK
3121
- SQL (0.1ms) BEGIN
3122
- SQL (0.1ms) ROLLBACK
3123
- SQL (0.3ms) SET SQL_AUTO_IS_NULL=0
3124
- SQL (0.7ms) SHOW TABLES
3125
- SQL (0.5ms) SHOW TABLES
3126
- SQL (33.5ms) DROP TABLE `people`
3127
- SQL (67.1ms) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255), `email` varchar(255), `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3128
- SQL (0.8ms) SHOW TABLES
3129
- SQL (1.1ms) DROP TABLE `person_contact_infos`
3130
- SQL (118.8ms) CREATE TABLE `person_contact_infos` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `contact_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
3131
- SQL (1.1ms) SHOW TABLES
3132
- SQL (2.7ms) DROP TABLE `posts`
3133
- SQL (104.2ms) CREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3134
- SQL (1.3ms) SHOW TABLES
3135
- SQL (2.1ms) DROP TABLE `post_attributes`
3136
- SQL (116.7ms) CREATE TABLE `post_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `post_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3137
- SQL (1.0ms) SHOW TABLES
3138
- SQL (2.6ms) DROP TABLE `preferences`
3139
- SQL (117.3ms) CREATE TABLE `preferences` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `person_id` int(11) NOT NULL, `key` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
3140
- SQL (1.1ms) SHOW TABLES
3141
- SQL (1.9ms) DROP TABLE `documents`
3142
- SQL (129.0ms) CREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
3143
- SQL (0.9ms) SHOW TABLES
3144
- SQL (1.9ms) DROP TABLE `document_attributes`
3145
- SQL (117.8ms) CREATE TABLE `document_attributes` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `document_id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `value` varchar(255) NOT NULL) ENGINE=InnoDB
3146
- SQL (1.4ms) SHOW TABLES
3147
- SQL (1.1ms) SHOW TABLES
3148
- SQL (0.4ms) SELECT version FROM `schema_migrations`
3149
- SQL (0.8ms) SHOW TABLES
3150
- SQL (0.7ms) SHOW TABLES
3151
- SQL (0.8ms) SHOW TABLES
3152
- SQL (0.1ms) BEGIN
3153
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3154
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3155
- SQL (0.1ms) ROLLBACK
3156
- SQL (0.1ms) BEGIN
3157
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1
3158
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) 
3159
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
3160
- PostAttribute Create (0.2ms) INSERT INTO `post_attributes` (`name`, `updated_at`, `post_id`, `value`, `created_at`) VALUES('new_attribute', '2008-12-18 00:47:02', 2, 'new_value', '2008-12-18 00:47:02')
3161
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1
3162
- SQL (0.9ms) ROLLBACK
3163
- SQL (0.1ms) BEGIN
3164
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3165
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3166
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
3167
- PostAttribute Destroy (0.3ms) DELETE FROM `post_attributes` WHERE `id` = 1
3168
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1
3169
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1
3170
- SQL (0.8ms) ROLLBACK
3171
- SQL (0.2ms) BEGIN
3172
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3173
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3174
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
3175
- PostAttribute Update (0.3ms) UPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:47:02' WHERE `id` = 2
3176
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) 
3177
- SQL (1.0ms) ROLLBACK
3178
- SQL (0.2ms) BEGIN
3179
- Post Load (0.4ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3180
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3181
- SQL (0.1ms) ROLLBACK
3182
- SQL (0.1ms) BEGIN
3183
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3184
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3185
- SQL (0.1ms) ROLLBACK
3186
- SQL (0.1ms) BEGIN
3187
- Post Load (0.3ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3188
- PostAttribute Load (0.2ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3189
- SQL (0.1ms) ROLLBACK
3190
- SQL (0.1ms) BEGIN
3191
- Post Load (0.2ms) SELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1
3192
- PostAttribute Load (0.3ms) SELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) 
3193
- SQL (0.1ms) ROLLBACK
3194
- SQL (0.2ms) BEGIN
3195
- Person Load (0.3ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
3196
- Preference Load (0.3ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
3197
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
3198
- SQL (0.2ms) ROLLBACK
3199
- SQL (0.1ms) BEGIN
3200
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
3201
- PersonContactInfo Load (0.2ms) SELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) 
3202
- SQL (0.1ms) ROLLBACK
3203
- SQL (0.1ms) BEGIN
3204
- Person Load (0.2ms) SELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1
3205
- Preference Load (0.2ms) SELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) 
3206
- SQL (0.1ms) ROLLBACK
3207
- SQL (0.1ms) BEGIN
3208
- Document Columns (2.7ms) SHOW FIELDS FROM `documents`
3209
- SQL (0.2ms) ROLLBACK
3210
- SQL (0.1ms) BEGIN
3211
- SQL (0.1ms) ROLLBACK