has_custom_fields 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +20 -0
- data/README.rdoc +117 -0
- data/Rakefile +121 -0
- data/SPECDOC +23 -0
- data/VERSION +1 -0
- data/has_custom_fields.tmproj +27 -0
- data/lib/custom_fields/custom_field_base.rb +28 -0
- data/lib/has_custom_fields.rb +398 -0
- data/spec/database.yml +12 -0
- data/spec/debug.log +3211 -0
- data/spec/fixtures/document.rb +7 -0
- data/spec/fixtures/people.yml +4 -0
- data/spec/fixtures/person.rb +13 -0
- data/spec/fixtures/person_contact_infos.yml +10 -0
- data/spec/fixtures/post.rb +6 -0
- data/spec/fixtures/post_attributes.yml +15 -0
- data/spec/fixtures/posts.yml +9 -0
- data/spec/fixtures/preference.rb +5 -0
- data/spec/fixtures/preferences.yml +10 -0
- data/spec/models/eav_model_with_no_arguments_spec.rb +82 -0
- data/spec/models/eav_model_with_options_spec.rb +38 -0
- data/spec/models/eav_validation_spec.rb +12 -0
- data/spec/rcov.opts +1 -0
- data/spec/schema.rb +50 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +34 -0
- metadata +98 -0
data/spec/database.yml
ADDED
@@ -0,0 +1,12 @@
|
|
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
|
data/spec/debug.log
ADDED
@@ -0,0 +1,3211 @@
|
|
1
|
+
# Logfile created on Thu Dec 18 11:41:39 +1300 2008 by /
|
2
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
3
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
4
|
+
[4;36;1mSQL (106.6ms)[0m [0;1mCREATE 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[0m
|
5
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
6
|
+
[4;36;1mSQL (216.3ms)[0m [0;1mCREATE 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[0m
|
7
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
8
|
+
[4;36;1mSQL (119.1ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
9
|
+
[4;35;1mSQL (0.4ms)[0m [0mSHOW TABLES[0m
|
10
|
+
[4;36;1mSQL (122.1ms)[0m [0;1mCREATE 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[0m
|
11
|
+
[4;35;1mSQL (0.5ms)[0m [0mSHOW TABLES[0m
|
12
|
+
[4;36;1mSQL (109.2ms)[0m [0;1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
13
|
+
[4;35;1mSQL (105.4ms)[0m [0mCREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)[0m
|
14
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
15
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
16
|
+
[4;36;1mSQL (81.6ms)[0m [0;1mCREATE TABLE `plugin_schema_info` (`plugin_name` varchar(255) NOT NULL, `version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
17
|
+
[4;35;1mSQL (103.3ms)[0m [0mCREATE UNIQUE INDEX `unique_plugin_schema_info` ON `plugin_schema_info` (`version`)[0m
|
18
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSELECT version FROM `schema_migrations`[0m
|
19
|
+
[4;35;1mSQL (0.9ms)[0m [0mINSERT INTO `schema_migrations` (version) VALUES ('0')[0m
|
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
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
272
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
273
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
274
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
275
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
276
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
277
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
278
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
279
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
280
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
281
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `people`[0m
|
282
|
+
[4;35;1mSQL (84.6ms)[0m [0mCREATE 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[0m
|
283
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
284
|
+
[4;35;1mSQL (1.7ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
285
|
+
[4;36;1mSQL (105.2ms)[0m [0;1mCREATE 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[0m
|
286
|
+
[4;35;1mSQL (0.5ms)[0m [0mSHOW TABLES[0m
|
287
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mDROP TABLE `posts`[0m
|
288
|
+
[4;35;1mSQL (120.1ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
289
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
290
|
+
[4;35;1mSQL (2.2ms)[0m [0mDROP TABLE `preferences`[0m
|
291
|
+
[4;36;1mSQL (94.9ms)[0m [0;1mCREATE 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[0m
|
292
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
293
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mSHOW TABLES[0m
|
294
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
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
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
547
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
548
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
549
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
550
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
551
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
552
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
553
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
554
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
555
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
556
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `people`[0m
|
557
|
+
[4;35;1mSQL (127.5ms)[0m [0mCREATE 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[0m
|
558
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
559
|
+
[4;35;1mSQL (80.1ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
560
|
+
[4;36;1mSQL (255.9ms)[0m [0;1mCREATE 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[0m
|
561
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
562
|
+
[4;36;1mSQL (50.4ms)[0m [0;1mDROP TABLE `posts`[0m
|
563
|
+
[4;35;1mSQL (190.4ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
564
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
565
|
+
[4;35;1mSQL (87.3ms)[0m [0mDROP TABLE `preferences`[0m
|
566
|
+
[4;36;1mSQL (168.2ms)[0m [0;1mCREATE 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[0m
|
567
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
568
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
569
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
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
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
822
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
823
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
824
|
+
[4;35;1mSQL (0.6ms)[0m [0mROLLBACK[0m
|
825
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
826
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
827
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
828
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
829
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
830
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
831
|
+
[4;36;1mSQL (58.5ms)[0m [0;1mDROP TABLE `people`[0m
|
832
|
+
[4;35;1mSQL (96.5ms)[0m [0mCREATE 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[0m
|
833
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
834
|
+
[4;35;1mSQL (1.8ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
835
|
+
[4;36;1mSQL (135.9ms)[0m [0;1mCREATE 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[0m
|
836
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
837
|
+
[4;36;1mSQL (57.7ms)[0m [0;1mDROP TABLE `posts`[0m
|
838
|
+
[4;35;1mSQL (141.2ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
839
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
840
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
841
|
+
[4;36;1mSQL (1.3ms)[0m [0;1mDROP TABLE `people`[0m
|
842
|
+
[4;35;1mSQL (104.5ms)[0m [0mCREATE 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[0m
|
843
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
844
|
+
[4;35;1mSQL (2.0ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
845
|
+
[4;36;1mSQL (185.2ms)[0m [0;1mCREATE 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[0m
|
846
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
847
|
+
[4;36;1mSQL (2.7ms)[0m [0;1mDROP TABLE `posts`[0m
|
848
|
+
[4;35;1mSQL (305.5ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
849
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
850
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
851
|
+
[4;36;1mSQL (1.7ms)[0m [0;1mDROP TABLE `people`[0m
|
852
|
+
[4;35;1mSQL (125.2ms)[0m [0mCREATE 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[0m
|
853
|
+
[4;36;1mSQL (1.4ms)[0m [0;1mSHOW TABLES[0m
|
854
|
+
[4;35;1mSQL (2.5ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
855
|
+
[4;36;1mSQL (187.6ms)[0m [0;1mCREATE 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[0m
|
856
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
857
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mDROP TABLE `posts`[0m
|
858
|
+
[4;35;1mSQL (139.9ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
859
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
860
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
861
|
+
[4;36;1mSQL (2.3ms)[0m [0;1mDROP TABLE `people`[0m
|
862
|
+
[4;35;1mSQL (106.5ms)[0m [0mCREATE 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[0m
|
863
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
864
|
+
[4;35;1mSQL (2.0ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
865
|
+
[4;36;1mSQL (149.0ms)[0m [0;1mCREATE 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[0m
|
866
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
867
|
+
[4;36;1mSQL (2.2ms)[0m [0;1mDROP TABLE `posts`[0m
|
868
|
+
[4;35;1mSQL (117.8ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
869
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
870
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
871
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mDROP TABLE `people`[0m
|
872
|
+
[4;35;1mSQL (117.6ms)[0m [0mCREATE 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[0m
|
873
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
874
|
+
[4;35;1mSQL (1.8ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
875
|
+
[4;36;1mSQL (143.0ms)[0m [0;1mCREATE 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[0m
|
876
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
877
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `posts`[0m
|
878
|
+
[4;35;1mSQL (127.8ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
879
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
880
|
+
[4;35;1mSQL (131.2ms)[0m [0mCREATE 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[0m
|
881
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
882
|
+
[4;35;1mSQL (1.8ms)[0m [0mDROP TABLE `preferences`[0m
|
883
|
+
[4;36;1mSQL (130.4ms)[0m [0;1mCREATE 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[0m
|
884
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
885
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
886
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
887
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
888
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
889
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
890
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
891
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
892
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
893
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
894
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
895
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
896
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
897
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
898
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
899
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
900
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
901
|
+
[4;36;1mPostAttribute Destroy (0.4ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
902
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
903
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
904
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
905
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
906
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
907
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
908
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
909
|
+
[4;36;1mPostAttribute Update (0.3ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-17 23:38:30' WHERE `id` = 2[0m
|
910
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
911
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mROLLBACK[0m
|
912
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
913
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
914
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
915
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
916
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
917
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
918
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
919
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
920
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
921
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
922
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
923
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
924
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
925
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
926
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
927
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
928
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
929
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
930
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
931
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
932
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
933
|
+
[4;36;1mPerson Load (59.8ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
934
|
+
[4;35;1mPreference Load (0.4ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
935
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
936
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
937
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
938
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
939
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
940
|
+
[4;35;1mPreference Load (0.2ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
941
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
942
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
943
|
+
[4;36;1mPerson Load (0.2ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
944
|
+
[4;35;1mPreference Load (0.2ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
945
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
946
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
947
|
+
[4;36;1mPerson Load (0.4ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
948
|
+
[4;35;1mPersonContactInfo Load (0.4ms)[0m [0mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
949
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
950
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
951
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
952
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
953
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
954
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
955
|
+
[4;36;1mSQL (2.3ms)[0m [0;1mDROP TABLE `people`[0m
|
956
|
+
[4;35;1mSQL (114.5ms)[0m [0mCREATE 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[0m
|
957
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
958
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
959
|
+
[4;36;1mSQL (131.9ms)[0m [0;1mCREATE 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[0m
|
960
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
961
|
+
[4;36;1mSQL (1.7ms)[0m [0;1mDROP TABLE `posts`[0m
|
962
|
+
[4;35;1mSQL (117.3ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
963
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
964
|
+
[4;35;1mSQL (2.5ms)[0m [0mDROP TABLE `post_attributes`[0m
|
965
|
+
[4;36;1mSQL (115.7ms)[0m [0;1mCREATE 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[0m
|
966
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
967
|
+
[4;36;1mSQL (2.5ms)[0m [0;1mDROP TABLE `preferences`[0m
|
968
|
+
[4;35;1mSQL (140.6ms)[0m [0mCREATE 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[0m
|
969
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
970
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
971
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mSELECT version FROM `schema_migrations`[0m
|
972
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
973
|
+
[4;36;1mSQL (1.3ms)[0m [0;1mSHOW TABLES[0m
|
974
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
975
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
976
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
977
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
978
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
979
|
+
[4;36;1mPostAttribute Create (0.3ms)[0m [0;1mINSERT 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')[0m
|
980
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
981
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mROLLBACK[0m
|
982
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
983
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
984
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
985
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
986
|
+
[4;35;1mPostAttribute Destroy (0.2ms)[0m [0mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
987
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
988
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
989
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mROLLBACK[0m
|
990
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
991
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
992
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
993
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
994
|
+
[4;35;1mPostAttribute Update (0.3ms)[0m [0mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-17 23:39:35' WHERE `id` = 2[0m
|
995
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
996
|
+
[4;35;1mSQL (1.4ms)[0m [0mROLLBACK[0m
|
997
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
998
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
999
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1000
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
1001
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
1002
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1003
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1004
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1005
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1006
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1007
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1008
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1009
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mBEGIN[0m
|
1010
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1011
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1012
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1013
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1014
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1015
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1016
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1017
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
1018
|
+
[4;35;1mPerson Load (55.5ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1019
|
+
[4;36;1mPreference Load (0.4ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
1020
|
+
[4;35;1mPersonContactInfo Load (0.2ms)[0m [0mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
1021
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
1022
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1023
|
+
[4;36;1mPerson Load (0.2ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1024
|
+
[4;35;1mPersonContactInfo Load (0.2ms)[0m [0mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
1025
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
1026
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1027
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1028
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1029
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
1030
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1031
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1032
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1033
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
1034
|
+
[4;35;1mPreference Load (0.2ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
1035
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mROLLBACK[0m
|
1036
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1037
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
1038
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mselect sqlite_version(*)[0m
|
1039
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
1040
|
+
FROM sqlite_master
|
1041
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1042
|
+
[0m
|
1043
|
+
[4;36;1mSQL (3.1ms)[0m [0;1mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1044
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1045
|
+
FROM sqlite_master
|
1046
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1047
|
+
[0m
|
1048
|
+
[4;36;1mSQL (2.5ms)[0m [0;1mCREATE 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) [0m
|
1049
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1050
|
+
FROM sqlite_master
|
1051
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1052
|
+
[0m
|
1053
|
+
[4;36;1mSQL (2.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1054
|
+
[4;35;1mSQL (0.6ms)[0m [0m SELECT name
|
1055
|
+
FROM sqlite_master
|
1056
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1057
|
+
[0m
|
1058
|
+
[4;36;1mSQL (2.2ms)[0m [0;1mCREATE 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) [0m
|
1059
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1060
|
+
FROM sqlite_master
|
1061
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1062
|
+
[0m
|
1063
|
+
[4;36;1mSQL (2.6ms)[0m [0;1mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1064
|
+
[4;35;1mSQL (1.0ms)[0m [0m SELECT name
|
1065
|
+
FROM sqlite_master
|
1066
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1067
|
+
[0m
|
1068
|
+
[4;36;1mSQL (2.1ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1069
|
+
[4;35;1mSQL (1.9ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1070
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
1071
|
+
FROM sqlite_master
|
1072
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1073
|
+
[0m
|
1074
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
1075
|
+
FROM sqlite_master
|
1076
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1077
|
+
[0m
|
1078
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mCREATE TABLE "plugin_schema_info" ("plugin_name" varchar(255) NOT NULL, "version" varchar(255) NOT NULL) [0m
|
1079
|
+
[4;35;1mSQL (1.9ms)[0m [0mCREATE UNIQUE INDEX "unique_plugin_schema_info" ON "plugin_schema_info" ("version")[0m
|
1080
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1081
|
+
[4;35;1mSQL (1.6ms)[0m [0mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1082
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
1083
|
+
FROM sqlite_master
|
1084
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1085
|
+
[0m
|
1086
|
+
[4;35;1mSQL (0.6ms)[0m [0m SELECT name
|
1087
|
+
FROM sqlite_master
|
1088
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1089
|
+
[0m
|
1090
|
+
[4;36;1mSQL (0.4ms)[0m [0;1m SELECT name
|
1091
|
+
FROM sqlite_master
|
1092
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1093
|
+
[0m
|
1094
|
+
[4;35;1mPost Load (0.4ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Following up from my first post.') LIMIT 1[0m
|
1095
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 2) [0m
|
1096
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."post_id" = 2 AND "post_attributes"."name" = 'new_attribute') LIMIT 1[0m
|
1097
|
+
[4;36;1mPostAttribute Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
1098
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."post_id" = 2 AND "post_attributes"."name" = 'new_attribute') LIMIT 1[0m
|
1099
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1100
|
+
[4;35;1mPostAttribute Load (0.6ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1101
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1[0m
|
1102
|
+
[4;35;1mPostAttribute Destroy (0.4ms)[0m [0mDELETE FROM "post_attributes" WHERE "id" = 1[0m
|
1103
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1[0m
|
1104
|
+
[4;35;1mPostAttribute Load (0.1ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 1) LIMIT 1[0m
|
1105
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1106
|
+
[4;35;1mPostAttribute Load (0.7ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1107
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) [0m
|
1108
|
+
[4;35;1mPostAttribute Update (71.9ms)[0m [0mUPDATE "post_attributes" SET "value" = 'Blah Blah Blah', "updated_at" = '2008-12-17 23:41:19' WHERE "id" = 2[0m
|
1109
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) [0m
|
1110
|
+
[4;35;1mPost Load (0.5ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1111
|
+
[4;36;1mPostAttribute Load (0.6ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1112
|
+
[4;35;1mPost Load (0.4ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1113
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1114
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1115
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1116
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1117
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1118
|
+
[4;35;1mPost Load (0.4ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1119
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1120
|
+
[4;35;1mPerson Load (0.3ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1121
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1122
|
+
[4;35;1mPersonContactInfo Load (0.2ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1123
|
+
[4;36;1mPerson Load (0.2ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1124
|
+
[4;35;1mPersonContactInfo Load (0.2ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1125
|
+
[4;36;1mPreference Load (0.3ms)[0m [0;1mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1126
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1127
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1128
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1129
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1130
|
+
[4;35;1mPreference Load (0.2ms)[0m [0mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1131
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mselect sqlite_version(*)[0m
|
1132
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1133
|
+
FROM sqlite_master
|
1134
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1135
|
+
[0m
|
1136
|
+
[4;36;1mSQL (2.5ms)[0m [0;1mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1137
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
1138
|
+
FROM sqlite_master
|
1139
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1140
|
+
[0m
|
1141
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mCREATE 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) [0m
|
1142
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
1143
|
+
FROM sqlite_master
|
1144
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1145
|
+
[0m
|
1146
|
+
[4;36;1mSQL (2.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1147
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1148
|
+
FROM sqlite_master
|
1149
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1150
|
+
[0m
|
1151
|
+
[4;36;1mSQL (2.7ms)[0m [0;1mCREATE 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) [0m
|
1152
|
+
[4;35;1mSQL (0.8ms)[0m [0m SELECT name
|
1153
|
+
FROM sqlite_master
|
1154
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1155
|
+
[0m
|
1156
|
+
[4;36;1mSQL (2.8ms)[0m [0;1mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1157
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1158
|
+
FROM sqlite_master
|
1159
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1160
|
+
[0m
|
1161
|
+
[4;36;1mSQL (4.4ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1162
|
+
[4;35;1mSQL (3.0ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1163
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1164
|
+
FROM sqlite_master
|
1165
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1166
|
+
[0m
|
1167
|
+
[4;35;1mSQL (0.6ms)[0m [0m SELECT name
|
1168
|
+
FROM sqlite_master
|
1169
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1170
|
+
[0m
|
1171
|
+
[4;36;1mSQL (2.6ms)[0m [0;1mCREATE TABLE "plugin_schema_info" ("plugin_name" varchar(255) NOT NULL, "version" varchar(255) NOT NULL) [0m
|
1172
|
+
[4;35;1mSQL (3.4ms)[0m [0mCREATE UNIQUE INDEX "unique_plugin_schema_info" ON "plugin_schema_info" ("version")[0m
|
1173
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1174
|
+
[4;35;1mSQL (2.7ms)[0m [0mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
1175
|
+
[4;36;1mSQL (0.8ms)[0m [0;1m SELECT name
|
1176
|
+
FROM sqlite_master
|
1177
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1178
|
+
[0m
|
1179
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1180
|
+
FROM sqlite_master
|
1181
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1182
|
+
[0m
|
1183
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1184
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1185
|
+
[4;36;1mPersonContactInfo Load (0.4ms)[0m [0;1mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1186
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1187
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1188
|
+
[4;35;1mPreference Load (0.5ms)[0m [0mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1189
|
+
[4;36;1mPerson Load (0.4ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1190
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1191
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1192
|
+
[4;35;1mPersonContactInfo Load (0.3ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1193
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1194
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1195
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1196
|
+
FROM sqlite_master
|
1197
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1198
|
+
[0m
|
1199
|
+
[4;36;1mSQL (3.0ms)[0m [0;1mDROP TABLE "people"[0m
|
1200
|
+
[4;35;1mSQL (2.8ms)[0m [0mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1201
|
+
[4;36;1mSQL (1.5ms)[0m [0;1m SELECT name
|
1202
|
+
FROM sqlite_master
|
1203
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1204
|
+
[0m
|
1205
|
+
[4;35;1mSQL (2.8ms)[0m [0mDROP TABLE "person_contact_infos"[0m
|
1206
|
+
[4;36;1mSQL (3.1ms)[0m [0;1mCREATE 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) [0m
|
1207
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1208
|
+
FROM sqlite_master
|
1209
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1210
|
+
[0m
|
1211
|
+
[4;36;1mSQL (2.6ms)[0m [0;1mDROP TABLE "posts"[0m
|
1212
|
+
[4;35;1mSQL (2.2ms)[0m [0mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1213
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1214
|
+
FROM sqlite_master
|
1215
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1216
|
+
[0m
|
1217
|
+
[4;35;1mSQL (2.8ms)[0m [0mDROP TABLE "post_attributes"[0m
|
1218
|
+
[4;36;1mSQL (3.2ms)[0m [0;1mCREATE 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) [0m
|
1219
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1220
|
+
FROM sqlite_master
|
1221
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1222
|
+
[0m
|
1223
|
+
[4;36;1mSQL (2.5ms)[0m [0;1mDROP TABLE "preferences"[0m
|
1224
|
+
[4;35;1mSQL (2.7ms)[0m [0mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1225
|
+
[4;36;1mSQL (1.0ms)[0m [0;1m SELECT name
|
1226
|
+
FROM sqlite_master
|
1227
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1228
|
+
[0m
|
1229
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1230
|
+
FROM sqlite_master
|
1231
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1232
|
+
[0m
|
1233
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1234
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1235
|
+
FROM sqlite_master
|
1236
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1237
|
+
[0m
|
1238
|
+
[4;36;1mSQL (0.4ms)[0m [0;1m SELECT name
|
1239
|
+
FROM sqlite_master
|
1240
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1241
|
+
[0m
|
1242
|
+
[4;35;1mPerson Load (0.5ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1243
|
+
[4;36;1mPersonContactInfo Load (0.4ms)[0m [0;1mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1244
|
+
[4;35;1mPreference Load (0.5ms)[0m [0mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1245
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1246
|
+
[4;35;1mSQL (0.6ms)[0m [0m SELECT name
|
1247
|
+
FROM sqlite_master
|
1248
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1249
|
+
[0m
|
1250
|
+
[4;36;1mSQL (3.3ms)[0m [0;1mDROP TABLE "people"[0m
|
1251
|
+
[4;35;1mSQL (3.6ms)[0m [0mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1252
|
+
[4;36;1mSQL (0.9ms)[0m [0;1m SELECT name
|
1253
|
+
FROM sqlite_master
|
1254
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1255
|
+
[0m
|
1256
|
+
[4;35;1mSQL (2.6ms)[0m [0mDROP TABLE "person_contact_infos"[0m
|
1257
|
+
[4;36;1mSQL (2.9ms)[0m [0;1mCREATE 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) [0m
|
1258
|
+
[4;35;1mSQL (0.8ms)[0m [0m SELECT name
|
1259
|
+
FROM sqlite_master
|
1260
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1261
|
+
[0m
|
1262
|
+
[4;36;1mSQL (2.4ms)[0m [0;1mDROP TABLE "posts"[0m
|
1263
|
+
[4;35;1mSQL (3.3ms)[0m [0mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1264
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1265
|
+
FROM sqlite_master
|
1266
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1267
|
+
[0m
|
1268
|
+
[4;35;1mSQL (2.7ms)[0m [0mDROP TABLE "post_attributes"[0m
|
1269
|
+
[4;36;1mSQL (2.9ms)[0m [0;1mCREATE 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) [0m
|
1270
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1271
|
+
FROM sqlite_master
|
1272
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1273
|
+
[0m
|
1274
|
+
[4;36;1mSQL (2.3ms)[0m [0;1mDROP TABLE "preferences"[0m
|
1275
|
+
[4;35;1mSQL (2.6ms)[0m [0mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1276
|
+
[4;36;1mSQL (0.9ms)[0m [0;1m SELECT name
|
1277
|
+
FROM sqlite_master
|
1278
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1279
|
+
[0m
|
1280
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1281
|
+
FROM sqlite_master
|
1282
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1283
|
+
[0m
|
1284
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1285
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1286
|
+
FROM sqlite_master
|
1287
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1288
|
+
[0m
|
1289
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
1290
|
+
FROM sqlite_master
|
1291
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1292
|
+
[0m
|
1293
|
+
[4;35;1mPerson Load (0.5ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1294
|
+
[4;36;1mPersonContactInfo Load (0.4ms)[0m [0;1mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1295
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mselect sqlite_version(*)[0m
|
1296
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1297
|
+
FROM sqlite_master
|
1298
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1299
|
+
[0m
|
1300
|
+
[4;36;1mSQL (3.2ms)[0m [0;1mDROP TABLE "people"[0m
|
1301
|
+
[4;35;1mSQL (3.1ms)[0m [0mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1302
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1303
|
+
FROM sqlite_master
|
1304
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1305
|
+
[0m
|
1306
|
+
[4;35;1mSQL (2.2ms)[0m [0mDROP TABLE "person_contact_infos"[0m
|
1307
|
+
[4;36;1mSQL (3.0ms)[0m [0;1mCREATE 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) [0m
|
1308
|
+
[4;35;1mSQL (0.9ms)[0m [0m SELECT name
|
1309
|
+
FROM sqlite_master
|
1310
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1311
|
+
[0m
|
1312
|
+
[4;36;1mSQL (2.9ms)[0m [0;1mDROP TABLE "posts"[0m
|
1313
|
+
[4;35;1mSQL (2.9ms)[0m [0mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1314
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1315
|
+
FROM sqlite_master
|
1316
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1317
|
+
[0m
|
1318
|
+
[4;35;1mSQL (2.7ms)[0m [0mDROP TABLE "post_attributes"[0m
|
1319
|
+
[4;36;1mSQL (3.5ms)[0m [0;1mCREATE 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) [0m
|
1320
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1321
|
+
FROM sqlite_master
|
1322
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1323
|
+
[0m
|
1324
|
+
[4;36;1mSQL (2.8ms)[0m [0;1mDROP TABLE "preferences"[0m
|
1325
|
+
[4;35;1mSQL (2.8ms)[0m [0mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1326
|
+
[4;36;1mSQL (1.0ms)[0m [0;1m SELECT name
|
1327
|
+
FROM sqlite_master
|
1328
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1329
|
+
[0m
|
1330
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1331
|
+
FROM sqlite_master
|
1332
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1333
|
+
[0m
|
1334
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1335
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1336
|
+
FROM sqlite_master
|
1337
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1338
|
+
[0m
|
1339
|
+
[4;36;1mSQL (0.4ms)[0m [0;1m SELECT name
|
1340
|
+
FROM sqlite_master
|
1341
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1342
|
+
[0m
|
1343
|
+
[4;35;1mPerson Load (0.5ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1344
|
+
[4;36;1mPreference Load (0.4ms)[0m [0;1mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1345
|
+
[4;35;1mPersonContactInfo Load (0.4ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1346
|
+
[4;36;1mPerson Load (0.9ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1347
|
+
[4;35;1mPersonContactInfo Load (0.4ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1348
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1349
|
+
[4;35;1mPreference Load (0.4ms)[0m [0mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1350
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1351
|
+
[4;35;1mPersonContactInfo Load (0.5ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1352
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mselect sqlite_version(*)[0m
|
1353
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1354
|
+
FROM sqlite_master
|
1355
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1356
|
+
[0m
|
1357
|
+
[4;36;1mSQL (3.1ms)[0m [0;1mDROP TABLE "people"[0m
|
1358
|
+
[4;35;1mSQL (3.4ms)[0m [0mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1359
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1360
|
+
FROM sqlite_master
|
1361
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1362
|
+
[0m
|
1363
|
+
[4;35;1mSQL (3.8ms)[0m [0mDROP TABLE "person_contact_infos"[0m
|
1364
|
+
[4;36;1mSQL (2.8ms)[0m [0;1mCREATE 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) [0m
|
1365
|
+
[4;35;1mSQL (0.8ms)[0m [0m SELECT name
|
1366
|
+
FROM sqlite_master
|
1367
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1368
|
+
[0m
|
1369
|
+
[4;36;1mSQL (2.9ms)[0m [0;1mDROP TABLE "posts"[0m
|
1370
|
+
[4;35;1mSQL (3.0ms)[0m [0mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1371
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1372
|
+
FROM sqlite_master
|
1373
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1374
|
+
[0m
|
1375
|
+
[4;35;1mSQL (2.8ms)[0m [0mDROP TABLE "post_attributes"[0m
|
1376
|
+
[4;36;1mSQL (3.0ms)[0m [0;1mCREATE 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) [0m
|
1377
|
+
[4;35;1mSQL (0.8ms)[0m [0m SELECT name
|
1378
|
+
FROM sqlite_master
|
1379
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1380
|
+
[0m
|
1381
|
+
[4;36;1mSQL (2.6ms)[0m [0;1mDROP TABLE "preferences"[0m
|
1382
|
+
[4;35;1mSQL (2.7ms)[0m [0mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1383
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1384
|
+
FROM sqlite_master
|
1385
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1386
|
+
[0m
|
1387
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1388
|
+
FROM sqlite_master
|
1389
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1390
|
+
[0m
|
1391
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1392
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1393
|
+
FROM sqlite_master
|
1394
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1395
|
+
[0m
|
1396
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Following up from my first post.') LIMIT 1[0m
|
1397
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 2) [0m
|
1398
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'new_attribute' AND "post_attributes"."post_id" = 2) LIMIT 1[0m
|
1399
|
+
[4;35;1mPostAttribute Create (0.4ms)[0m [0mINSERT 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')[0m
|
1400
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'new_attribute' AND "post_attributes"."post_id" = 2) LIMIT 1[0m
|
1401
|
+
[4;35;1mPost Load (0.6ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1402
|
+
[4;36;1mPostAttribute Load (0.7ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1403
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1[0m
|
1404
|
+
[4;36;1mPostAttribute Destroy (0.3ms)[0m [0;1mDELETE FROM "post_attributes" WHERE "id" = 1[0m
|
1405
|
+
[4;35;1mPostAttribute Load (0.1ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1[0m
|
1406
|
+
[4;36;1mPostAttribute Load (0.1ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 1) LIMIT 1[0m
|
1407
|
+
[4;35;1mPost Load (0.5ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1408
|
+
[4;36;1mPostAttribute Load (0.7ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1409
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) [0m
|
1410
|
+
[4;36;1mPostAttribute Update (0.7ms)[0m [0;1mUPDATE "post_attributes" SET "value" = 'Blah Blah Blah', "updated_at" = '2008-12-17 23:50:34' WHERE "id" = 2[0m
|
1411
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) [0m
|
1412
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1413
|
+
[4;35;1mPostAttribute Load (1.2ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1414
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1415
|
+
[4;35;1mPostAttribute Load (0.6ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1416
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1417
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1418
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1419
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1420
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1421
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1422
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mselect sqlite_version(*)[0m
|
1423
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1424
|
+
FROM sqlite_master
|
1425
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1426
|
+
[0m
|
1427
|
+
[4;36;1mSQL (3.0ms)[0m [0;1mDROP TABLE "people"[0m
|
1428
|
+
[4;35;1mSQL (2.9ms)[0m [0mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1429
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1430
|
+
FROM sqlite_master
|
1431
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1432
|
+
[0m
|
1433
|
+
[4;35;1mSQL (2.8ms)[0m [0mDROP TABLE "person_contact_infos"[0m
|
1434
|
+
[4;36;1mSQL (2.9ms)[0m [0;1mCREATE 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) [0m
|
1435
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1436
|
+
FROM sqlite_master
|
1437
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1438
|
+
[0m
|
1439
|
+
[4;36;1mSQL (2.7ms)[0m [0;1mDROP TABLE "posts"[0m
|
1440
|
+
[4;35;1mSQL (2.7ms)[0m [0mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1441
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1442
|
+
FROM sqlite_master
|
1443
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1444
|
+
[0m
|
1445
|
+
[4;35;1mSQL (2.5ms)[0m [0mDROP TABLE "post_attributes"[0m
|
1446
|
+
[4;36;1mSQL (3.2ms)[0m [0;1mCREATE 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) [0m
|
1447
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1448
|
+
FROM sqlite_master
|
1449
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1450
|
+
[0m
|
1451
|
+
[4;36;1mSQL (2.5ms)[0m [0;1mDROP TABLE "preferences"[0m
|
1452
|
+
[4;35;1mSQL (3.2ms)[0m [0mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1453
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1454
|
+
FROM sqlite_master
|
1455
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1456
|
+
[0m
|
1457
|
+
[4;35;1mSQL (0.6ms)[0m [0m SELECT name
|
1458
|
+
FROM sqlite_master
|
1459
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1460
|
+
[0m
|
1461
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1462
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1463
|
+
FROM sqlite_master
|
1464
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1465
|
+
[0m
|
1466
|
+
[4;36;1mSQL (0.4ms)[0m [0;1m SELECT name
|
1467
|
+
FROM sqlite_master
|
1468
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1469
|
+
[0m
|
1470
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1471
|
+
[4;36;1mPreference Load (0.3ms)[0m [0;1mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1472
|
+
[4;35;1mPersonContactInfo Load (0.3ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1473
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1474
|
+
[4;35;1mPersonContactInfo Load (0.3ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1475
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1476
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1477
|
+
[4;36;1mPerson Load (0.2ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1478
|
+
[4;35;1mPersonContactInfo Load (0.4ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1479
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mselect sqlite_version(*)[0m
|
1480
|
+
[4;35;1mSQL (0.6ms)[0m [0m SELECT name
|
1481
|
+
FROM sqlite_master
|
1482
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1483
|
+
[0m
|
1484
|
+
[4;36;1mSQL (3.2ms)[0m [0;1mDROP TABLE "people"[0m
|
1485
|
+
[4;35;1mSQL (3.3ms)[0m [0mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1486
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1487
|
+
FROM sqlite_master
|
1488
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1489
|
+
[0m
|
1490
|
+
[4;35;1mSQL (2.9ms)[0m [0mDROP TABLE "person_contact_infos"[0m
|
1491
|
+
[4;36;1mSQL (3.0ms)[0m [0;1mCREATE 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) [0m
|
1492
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1493
|
+
FROM sqlite_master
|
1494
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1495
|
+
[0m
|
1496
|
+
[4;36;1mSQL (2.5ms)[0m [0;1mDROP TABLE "posts"[0m
|
1497
|
+
[4;35;1mSQL (2.5ms)[0m [0mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1498
|
+
[4;36;1mSQL (0.6ms)[0m [0;1m SELECT name
|
1499
|
+
FROM sqlite_master
|
1500
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1501
|
+
[0m
|
1502
|
+
[4;35;1mSQL (2.7ms)[0m [0mDROP TABLE "post_attributes"[0m
|
1503
|
+
[4;36;1mSQL (3.1ms)[0m [0;1mCREATE 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) [0m
|
1504
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1505
|
+
FROM sqlite_master
|
1506
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1507
|
+
[0m
|
1508
|
+
[4;36;1mSQL (2.8ms)[0m [0;1mDROP TABLE "preferences"[0m
|
1509
|
+
[4;35;1mSQL (2.7ms)[0m [0mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1510
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1511
|
+
FROM sqlite_master
|
1512
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1513
|
+
[0m
|
1514
|
+
[4;35;1mSQL (0.6ms)[0m [0m SELECT name
|
1515
|
+
FROM sqlite_master
|
1516
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1517
|
+
[0m
|
1518
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1519
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1520
|
+
FROM sqlite_master
|
1521
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1522
|
+
[0m
|
1523
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mselect sqlite_version(*)[0m
|
1524
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1525
|
+
FROM sqlite_master
|
1526
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1527
|
+
[0m
|
1528
|
+
[4;36;1mSQL (3.2ms)[0m [0;1mDROP TABLE "people"[0m
|
1529
|
+
[4;35;1mSQL (3.0ms)[0m [0mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1530
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1531
|
+
FROM sqlite_master
|
1532
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1533
|
+
[0m
|
1534
|
+
[4;35;1mSQL (3.5ms)[0m [0mDROP TABLE "person_contact_infos"[0m
|
1535
|
+
[4;36;1mSQL (3.5ms)[0m [0;1mCREATE 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) [0m
|
1536
|
+
[4;35;1mSQL (1.2ms)[0m [0m SELECT name
|
1537
|
+
FROM sqlite_master
|
1538
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1539
|
+
[0m
|
1540
|
+
[4;36;1mSQL (3.0ms)[0m [0;1mDROP TABLE "posts"[0m
|
1541
|
+
[4;35;1mSQL (2.6ms)[0m [0mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1542
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1543
|
+
FROM sqlite_master
|
1544
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1545
|
+
[0m
|
1546
|
+
[4;35;1mSQL (2.2ms)[0m [0mDROP TABLE "post_attributes"[0m
|
1547
|
+
[4;36;1mSQL (2.0ms)[0m [0;1mCREATE 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) [0m
|
1548
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1549
|
+
FROM sqlite_master
|
1550
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1551
|
+
[0m
|
1552
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE "preferences"[0m
|
1553
|
+
[4;35;1mSQL (1.9ms)[0m [0mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1554
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
1555
|
+
FROM sqlite_master
|
1556
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1557
|
+
[0m
|
1558
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1559
|
+
FROM sqlite_master
|
1560
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1561
|
+
[0m
|
1562
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1563
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1564
|
+
FROM sqlite_master
|
1565
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1566
|
+
[0m
|
1567
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
1568
|
+
FROM sqlite_master
|
1569
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1570
|
+
[0m
|
1571
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1572
|
+
FROM sqlite_master
|
1573
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1574
|
+
[0m
|
1575
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Following up from my first post.') LIMIT 1[0m
|
1576
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 2) [0m
|
1577
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."post_id" = 2 AND "post_attributes"."name" = 'new_attribute') LIMIT 1[0m
|
1578
|
+
[4;35;1mPostAttribute Create (0.4ms)[0m [0mINSERT 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')[0m
|
1579
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."post_id" = 2 AND "post_attributes"."name" = 'new_attribute') LIMIT 1[0m
|
1580
|
+
[4;35;1mPost Load (0.5ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1581
|
+
[4;36;1mPostAttribute Load (0.6ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1582
|
+
[4;35;1mPostAttribute Load (0.5ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1[0m
|
1583
|
+
[4;36;1mPostAttribute Destroy (0.4ms)[0m [0;1mDELETE FROM "post_attributes" WHERE "id" = 1[0m
|
1584
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1[0m
|
1585
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 1) LIMIT 1[0m
|
1586
|
+
[4;35;1mPost Load (0.5ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1587
|
+
[4;36;1mPostAttribute Load (0.7ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1588
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) [0m
|
1589
|
+
[4;36;1mPostAttribute Update (0.7ms)[0m [0;1mUPDATE "post_attributes" SET "value" = 'Blah Blah Blah', "updated_at" = '2008-12-17 23:51:36' WHERE "id" = 2[0m
|
1590
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) [0m
|
1591
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1592
|
+
[4;35;1mPostAttribute Load (0.7ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1593
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1594
|
+
[4;35;1mPostAttribute Load (0.6ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1595
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1596
|
+
[4;35;1mPostAttribute Load (0.6ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1597
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1598
|
+
[4;35;1mPostAttribute Load (0.6ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1599
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1600
|
+
[4;35;1mPostAttribute Load (0.6ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1601
|
+
[4;36;1mPerson Load (0.5ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1602
|
+
[4;35;1mPreference Load (0.5ms)[0m [0mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1603
|
+
[4;36;1mPersonContactInfo Load (0.5ms)[0m [0;1mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1604
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1605
|
+
[4;36;1mPersonContactInfo Load (0.4ms)[0m [0;1mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1606
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1607
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1608
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1609
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1610
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mselect sqlite_version(*)[0m
|
1611
|
+
[4;35;1mSQL (0.6ms)[0m [0m SELECT name
|
1612
|
+
FROM sqlite_master
|
1613
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1614
|
+
[0m
|
1615
|
+
[4;36;1mSQL (3.0ms)[0m [0;1mDROP TABLE "people"[0m
|
1616
|
+
[4;35;1mSQL (3.3ms)[0m [0mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1617
|
+
[4;36;1mSQL (0.8ms)[0m [0;1m SELECT name
|
1618
|
+
FROM sqlite_master
|
1619
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1620
|
+
[0m
|
1621
|
+
[4;35;1mSQL (2.4ms)[0m [0mDROP TABLE "person_contact_infos"[0m
|
1622
|
+
[4;36;1mSQL (2.8ms)[0m [0;1mCREATE 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) [0m
|
1623
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1624
|
+
FROM sqlite_master
|
1625
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1626
|
+
[0m
|
1627
|
+
[4;36;1mSQL (2.7ms)[0m [0;1mDROP TABLE "posts"[0m
|
1628
|
+
[4;35;1mSQL (3.1ms)[0m [0mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1629
|
+
[4;36;1mSQL (0.9ms)[0m [0;1m SELECT name
|
1630
|
+
FROM sqlite_master
|
1631
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1632
|
+
[0m
|
1633
|
+
[4;35;1mSQL (3.1ms)[0m [0mDROP TABLE "post_attributes"[0m
|
1634
|
+
[4;36;1mSQL (3.1ms)[0m [0;1mCREATE 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) [0m
|
1635
|
+
[4;35;1mSQL (0.9ms)[0m [0m SELECT name
|
1636
|
+
FROM sqlite_master
|
1637
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1638
|
+
[0m
|
1639
|
+
[4;36;1mSQL (2.8ms)[0m [0;1mDROP TABLE "preferences"[0m
|
1640
|
+
[4;35;1mSQL (3.0ms)[0m [0mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1641
|
+
[4;36;1mSQL (0.7ms)[0m [0;1m SELECT name
|
1642
|
+
FROM sqlite_master
|
1643
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1644
|
+
[0m
|
1645
|
+
[4;35;1mSQL (3.2ms)[0m [0mCREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
1646
|
+
[4;36;1mSQL (0.8ms)[0m [0;1m SELECT name
|
1647
|
+
FROM sqlite_master
|
1648
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1649
|
+
[0m
|
1650
|
+
[4;35;1mSQL (3.3ms)[0m [0mCREATE 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) [0m
|
1651
|
+
[4;36;1mSQL (0.9ms)[0m [0;1m SELECT name
|
1652
|
+
FROM sqlite_master
|
1653
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1654
|
+
[0m
|
1655
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1656
|
+
FROM sqlite_master
|
1657
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1658
|
+
[0m
|
1659
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1660
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1661
|
+
FROM sqlite_master
|
1662
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1663
|
+
[0m
|
1664
|
+
[4;36;1mSQL (0.4ms)[0m [0;1m SELECT name
|
1665
|
+
FROM sqlite_master
|
1666
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1667
|
+
[0m
|
1668
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1669
|
+
[4;36;1mPreference Load (0.3ms)[0m [0;1mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1670
|
+
[4;35;1mPersonContactInfo Load (0.3ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1671
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1672
|
+
[4;35;1mPersonContactInfo Load (0.3ms)[0m [0mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1673
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1674
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1675
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mselect sqlite_version(*)[0m
|
1676
|
+
[4;35;1mSQL (0.7ms)[0m [0m SELECT name
|
1677
|
+
FROM sqlite_master
|
1678
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1679
|
+
[0m
|
1680
|
+
[4;36;1mSQL (2.8ms)[0m [0;1mDROP TABLE "people"[0m
|
1681
|
+
[4;35;1mSQL (2.9ms)[0m [0mCREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1682
|
+
[4;36;1mSQL (1.3ms)[0m [0;1m SELECT name
|
1683
|
+
FROM sqlite_master
|
1684
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1685
|
+
[0m
|
1686
|
+
[4;35;1mSQL (3.5ms)[0m [0mDROP TABLE "person_contact_infos"[0m
|
1687
|
+
[4;36;1mSQL (3.5ms)[0m [0;1mCREATE 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) [0m
|
1688
|
+
[4;35;1mSQL (1.0ms)[0m [0m SELECT name
|
1689
|
+
FROM sqlite_master
|
1690
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1691
|
+
[0m
|
1692
|
+
[4;36;1mSQL (2.7ms)[0m [0;1mDROP TABLE "posts"[0m
|
1693
|
+
[4;35;1mSQL (3.1ms)[0m [0mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime) [0m
|
1694
|
+
[4;36;1mSQL (0.9ms)[0m [0;1m SELECT name
|
1695
|
+
FROM sqlite_master
|
1696
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1697
|
+
[0m
|
1698
|
+
[4;35;1mSQL (2.0ms)[0m [0mDROP TABLE "post_attributes"[0m
|
1699
|
+
[4;36;1mSQL (2.3ms)[0m [0;1mCREATE 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) [0m
|
1700
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1701
|
+
FROM sqlite_master
|
1702
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1703
|
+
[0m
|
1704
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mDROP TABLE "preferences"[0m
|
1705
|
+
[4;35;1mSQL (1.7ms)[0m [0mCREATE TABLE "preferences" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "person_id" integer NOT NULL, "key" varchar(255) NOT NULL, "value" varchar(255) NOT NULL) [0m
|
1706
|
+
[4;36;1mSQL (0.4ms)[0m [0;1m SELECT name
|
1707
|
+
FROM sqlite_master
|
1708
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1709
|
+
[0m
|
1710
|
+
[4;35;1mSQL (2.4ms)[0m [0mDROP TABLE "documents"[0m
|
1711
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mCREATE TABLE "documents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "version" integer NOT NULL, "created_at" datetime, "updated_at" datetime) [0m
|
1712
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1713
|
+
FROM sqlite_master
|
1714
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1715
|
+
[0m
|
1716
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE "document_attributes"[0m
|
1717
|
+
[4;35;1mSQL (2.1ms)[0m [0mCREATE 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) [0m
|
1718
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
1719
|
+
FROM sqlite_master
|
1720
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1721
|
+
[0m
|
1722
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1723
|
+
FROM sqlite_master
|
1724
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1725
|
+
[0m
|
1726
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mSELECT version FROM "schema_migrations"[0m
|
1727
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1728
|
+
FROM sqlite_master
|
1729
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1730
|
+
[0m
|
1731
|
+
[4;36;1mSQL (0.5ms)[0m [0;1m SELECT name
|
1732
|
+
FROM sqlite_master
|
1733
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1734
|
+
[0m
|
1735
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
1736
|
+
FROM sqlite_master
|
1737
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1738
|
+
[0m
|
1739
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1740
|
+
[4;35;1mPostAttribute Load (0.6ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1741
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Following up from my first post.') LIMIT 1[0m
|
1742
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 2) [0m
|
1743
|
+
[4;36;1mPostAttribute Load (0.1ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'new_attribute' AND "post_attributes"."post_id" = 2) LIMIT 1[0m
|
1744
|
+
[4;35;1mPostAttribute Create (0.3ms)[0m [0mINSERT 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')[0m
|
1745
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'new_attribute' AND "post_attributes"."post_id" = 2) LIMIT 1[0m
|
1746
|
+
[4;35;1mPost Load (0.5ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1747
|
+
[4;36;1mPostAttribute Load (0.6ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1748
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1[0m
|
1749
|
+
[4;36;1mPostAttribute Destroy (0.4ms)[0m [0;1mDELETE FROM "post_attributes" WHERE "id" = 1[0m
|
1750
|
+
[4;35;1mPostAttribute Load (0.1ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."name" = 'comment') AND ("post_attributes".post_id = 1) LIMIT 1[0m
|
1751
|
+
[4;36;1mPostAttribute Load (0.1ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 1) LIMIT 1[0m
|
1752
|
+
[4;35;1mPost Load (0.4ms)[0m [0mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1753
|
+
[4;36;1mPostAttribute Load (0.7ms)[0m [0;1mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1754
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) [0m
|
1755
|
+
[4;36;1mPostAttribute Update (0.9ms)[0m [0;1mUPDATE "post_attributes" SET "value" = 'Blah Blah Blah', "updated_at" = '2008-12-18 00:10:06' WHERE "id" = 2[0m
|
1756
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes"."id" = 2) [0m
|
1757
|
+
[4;36;1mPost Load (0.8ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1758
|
+
[4;35;1mPostAttribute Load (0.7ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1759
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1760
|
+
[4;35;1mPostAttribute Load (0.5ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1761
|
+
[4;36;1mPost Load (0.8ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1762
|
+
[4;35;1mPostAttribute Load (0.5ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1763
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM "posts" WHERE ("posts"."title" = 'Hello World') LIMIT 1[0m
|
1764
|
+
[4;35;1mPostAttribute Load (0.5ms)[0m [0mSELECT * FROM "post_attributes" WHERE ("post_attributes".post_id = 1) [0m
|
1765
|
+
[4;36;1mPerson Load (0.5ms)[0m [0;1mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1766
|
+
[4;35;1mPreference Load (0.4ms)[0m [0mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1767
|
+
[4;36;1mPersonContactInfo Load (0.5ms)[0m [0;1mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1768
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1769
|
+
[4;36;1mPersonContactInfo Load (0.5ms)[0m [0;1mSELECT * FROM "person_contact_infos" WHERE ("person_contact_infos".contact_id = 1) [0m
|
1770
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM "people" WHERE ("people"."name" = 'Marcus Wyatt') LIMIT 1[0m
|
1771
|
+
[4;36;1mPreference Load (0.4ms)[0m [0;1mSELECT * FROM "preferences" WHERE ("preferences".person_id = 1) [0m
|
1772
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
1773
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
1774
|
+
[4;36;1mSQL (2.2ms)[0m [0;1mDROP TABLE `people`[0m
|
1775
|
+
[4;35;1mSQL (105.5ms)[0m [0mCREATE 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[0m
|
1776
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
1777
|
+
[4;35;1mSQL (2.0ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
1778
|
+
[4;36;1mSQL (209.9ms)[0m [0;1mCREATE 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[0m
|
1779
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
1780
|
+
[4;36;1mSQL (2.3ms)[0m [0;1mDROP TABLE `posts`[0m
|
1781
|
+
[4;35;1mSQL (116.2ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
1782
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
1783
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `post_attributes`[0m
|
1784
|
+
[4;36;1mSQL (119.6ms)[0m [0;1mCREATE 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[0m
|
1785
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
1786
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE `preferences`[0m
|
1787
|
+
[4;35;1mSQL (116.4ms)[0m [0mCREATE 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[0m
|
1788
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
1789
|
+
[4;35;1mSQL (107.5ms)[0m [0mCREATE 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[0m
|
1790
|
+
[4;36;1mSQL (1.2ms)[0m [0;1mSHOW TABLES[0m
|
1791
|
+
[4;35;1mSQL (107.6ms)[0m [0mCREATE 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[0m
|
1792
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
1793
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
1794
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSELECT version FROM `schema_migrations`[0m
|
1795
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
1796
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
1797
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
1798
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
1799
|
+
[4;35;1mPost Load (0.4ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1800
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1801
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
1802
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1803
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
1804
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
1805
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1[0m
|
1806
|
+
[4;36;1mPostAttribute Create (0.3ms)[0m [0;1mINSERT 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')[0m
|
1807
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1[0m
|
1808
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mROLLBACK[0m
|
1809
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1810
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1811
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1812
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
1813
|
+
[4;35;1mPostAttribute Destroy (0.3ms)[0m [0mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
1814
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
1815
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
1816
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mROLLBACK[0m
|
1817
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1818
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1819
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1820
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
1821
|
+
[4;35;1mPostAttribute Update (0.3ms)[0m [0mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:11:30' WHERE `id` = 2[0m
|
1822
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
1823
|
+
[4;35;1mSQL (1.0ms)[0m [0mROLLBACK[0m
|
1824
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
1825
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1826
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1827
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
1828
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1829
|
+
[4;35;1mPost Load (0.4ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1830
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1831
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
1832
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1833
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1834
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1835
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1836
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1837
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1838
|
+
[4;36;1mPostAttribute Load (0.1ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1839
|
+
[4;35;1mSQL (0.5ms)[0m [0mROLLBACK[0m
|
1840
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1841
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1842
|
+
[4;36;1mPreference Load (0.3ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
1843
|
+
[4;35;1mPersonContactInfo Load (0.4ms)[0m [0mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
1844
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
1845
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1846
|
+
[4;36;1mPerson Load (0.2ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1847
|
+
[4;35;1mPersonContactInfo Load (0.2ms)[0m [0mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
1848
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
1849
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1850
|
+
[4;36;1mPerson Load (0.2ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1851
|
+
[4;35;1mPreference Load (0.2ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
1852
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
1853
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1854
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
1855
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1856
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
1857
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
1858
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
1859
|
+
[4;36;1mSQL (30.3ms)[0m [0;1mDROP TABLE `people`[0m
|
1860
|
+
[4;35;1mSQL (104.0ms)[0m [0mCREATE 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[0m
|
1861
|
+
[4;36;1mSQL (1.5ms)[0m [0;1mSHOW TABLES[0m
|
1862
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
1863
|
+
[4;36;1mSQL (237.4ms)[0m [0;1mCREATE 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[0m
|
1864
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
1865
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE `posts`[0m
|
1866
|
+
[4;35;1mSQL (127.1ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
1867
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
1868
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `post_attributes`[0m
|
1869
|
+
[4;36;1mSQL (118.4ms)[0m [0;1mCREATE 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[0m
|
1870
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
1871
|
+
[4;36;1mSQL (2.8ms)[0m [0;1mDROP TABLE `preferences`[0m
|
1872
|
+
[4;35;1mSQL (116.0ms)[0m [0mCREATE 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[0m
|
1873
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
1874
|
+
[4;35;1mSQL (1.7ms)[0m [0mDROP TABLE `documents`[0m
|
1875
|
+
[4;36;1mSQL (106.3ms)[0m [0;1mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
1876
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
1877
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mDROP TABLE `document_attributes`[0m
|
1878
|
+
[4;35;1mSQL (107.6ms)[0m [0mCREATE 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[0m
|
1879
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
1880
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
1881
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSELECT version FROM `schema_migrations`[0m
|
1882
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
1883
|
+
[4;36;1mSQL (3.7ms)[0m [0;1mSHOW TABLES[0m
|
1884
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
1885
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mBEGIN[0m
|
1886
|
+
[4;35;1mPost Load (0.4ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1887
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1888
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
1889
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1890
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
1891
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
1892
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
1893
|
+
[4;36;1mPostAttribute Create (0.2ms)[0m [0;1mINSERT 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')[0m
|
1894
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
1895
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mROLLBACK[0m
|
1896
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1897
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1898
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1899
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
1900
|
+
[4;35;1mPostAttribute Destroy (0.2ms)[0m [0mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
1901
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
1902
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
1903
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mROLLBACK[0m
|
1904
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1905
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1906
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1907
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
1908
|
+
[4;35;1mPostAttribute Update (0.2ms)[0m [0mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:12:36' WHERE `id` = 2[0m
|
1909
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
1910
|
+
[4;35;1mSQL (0.7ms)[0m [0mROLLBACK[0m
|
1911
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
1912
|
+
[4;35;1mPost Load (0.5ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1913
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1914
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
1915
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1916
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1917
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1918
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1919
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1920
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1921
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1922
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1923
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1924
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
1925
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
1926
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1927
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1928
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1929
|
+
[4;36;1mPreference Load (0.3ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
1930
|
+
[4;35;1mPersonContactInfo Load (0.3ms)[0m [0mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
1931
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mROLLBACK[0m
|
1932
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
1933
|
+
[4;36;1mPerson Load (0.2ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1934
|
+
[4;35;1mPersonContactInfo Load (0.2ms)[0m [0mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
1935
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
1936
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1937
|
+
[4;36;1mPerson Load (0.2ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1938
|
+
[4;35;1mPreference Load (0.2ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
1939
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
1940
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1941
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
1942
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1943
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
1944
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
1945
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
1946
|
+
[4;36;1mSQL (2.1ms)[0m [0;1mDROP TABLE `people`[0m
|
1947
|
+
[4;35;1mSQL (104.0ms)[0m [0mCREATE 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[0m
|
1948
|
+
[4;36;1mSQL (1.2ms)[0m [0;1mSHOW TABLES[0m
|
1949
|
+
[4;35;1mSQL (2.2ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
1950
|
+
[4;36;1mSQL (253.0ms)[0m [0;1mCREATE 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[0m
|
1951
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
1952
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE `posts`[0m
|
1953
|
+
[4;35;1mSQL (93.8ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
1954
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
1955
|
+
[4;35;1mSQL (1.8ms)[0m [0mDROP TABLE `post_attributes`[0m
|
1956
|
+
[4;36;1mSQL (118.9ms)[0m [0;1mCREATE 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[0m
|
1957
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
1958
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `preferences`[0m
|
1959
|
+
[4;35;1mSQL (116.3ms)[0m [0mCREATE 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[0m
|
1960
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
1961
|
+
[4;35;1mSQL (2.5ms)[0m [0mDROP TABLE `documents`[0m
|
1962
|
+
[4;36;1mSQL (104.6ms)[0m [0;1mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
1963
|
+
[4;35;1mSQL (1.2ms)[0m [0mSHOW TABLES[0m
|
1964
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE `document_attributes`[0m
|
1965
|
+
[4;35;1mSQL (117.1ms)[0m [0mCREATE 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[0m
|
1966
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
1967
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
1968
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSELECT version FROM `schema_migrations`[0m
|
1969
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
1970
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
1971
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
1972
|
+
[4;36;1mPerson Load (0.4ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1973
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
1974
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
1975
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
1976
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1977
|
+
[4;35;1mPerson Load (0.5ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1978
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
1979
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
1980
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1981
|
+
[4;35;1mPerson Load (0.3ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
1982
|
+
[4;36;1mPreference Load (0.3ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
1983
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1984
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
1985
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
1986
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
1987
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
1988
|
+
[4;36;1mSQL (2.3ms)[0m [0;1mDROP TABLE `people`[0m
|
1989
|
+
[4;35;1mSQL (114.8ms)[0m [0mCREATE 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[0m
|
1990
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
1991
|
+
[4;35;1mSQL (2.1ms)[0m [0mDROP TABLE `person_contact_infos`[0m
|
1992
|
+
[4;36;1mSQL (152.8ms)[0m [0;1mCREATE 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[0m
|
1993
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
1994
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE `posts`[0m
|
1995
|
+
[4;35;1mSQL (105.1ms)[0m [0mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
1996
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
1997
|
+
[4;35;1mSQL (2.5ms)[0m [0mDROP TABLE `post_attributes`[0m
|
1998
|
+
[4;36;1mSQL (115.2ms)[0m [0;1mCREATE 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[0m
|
1999
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
2000
|
+
[4;36;1mSQL (1.7ms)[0m [0;1mDROP TABLE `preferences`[0m
|
2001
|
+
[4;35;1mSQL (119.1ms)[0m [0mCREATE 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[0m
|
2002
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
2003
|
+
[4;35;1mSQL (1.8ms)[0m [0mDROP TABLE `documents`[0m
|
2004
|
+
[4;36;1mSQL (127.8ms)[0m [0;1mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2005
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2006
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mDROP TABLE `document_attributes`[0m
|
2007
|
+
[4;35;1mSQL (117.5ms)[0m [0mCREATE 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[0m
|
2008
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
2009
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
2010
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSELECT version FROM `schema_migrations`[0m
|
2011
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2012
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2013
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2014
|
+
[4;35;1mSQL (2.0ms)[0m [0mDROP TABLE `people`[0m
|
2015
|
+
[4;36;1mSQL (94.9ms)[0m [0;1mCREATE 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[0m
|
2016
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
2017
|
+
[4;36;1mSQL (21.8ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2018
|
+
[4;35;1mSQL (200.2ms)[0m [0mCREATE 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[0m
|
2019
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
2020
|
+
[4;35;1mSQL (1.3ms)[0m [0mDROP TABLE `posts`[0m
|
2021
|
+
[4;36;1mSQL (118.4ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2022
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2023
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2024
|
+
[4;35;1mSQL (118.9ms)[0m [0mCREATE 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[0m
|
2025
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2026
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `preferences`[0m
|
2027
|
+
[4;36;1mSQL (142.8ms)[0m [0;1mCREATE 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[0m
|
2028
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2029
|
+
[4;36;1mSQL (2.0ms)[0m [0;1mDROP TABLE `documents`[0m
|
2030
|
+
[4;35;1mSQL (111.5ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2031
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2032
|
+
[4;35;1mSQL (2.0ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2033
|
+
[4;36;1mSQL (106.0ms)[0m [0;1mCREATE 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[0m
|
2034
|
+
[4;35;1mSQL (1.3ms)[0m [0mSHOW TABLES[0m
|
2035
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2036
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2037
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2038
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
2039
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2040
|
+
[4;35;1mPerson Load (0.3ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2041
|
+
[4;36;1mPreference Load (0.3ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2042
|
+
[4;35;1mPersonContactInfo Load (0.3ms)[0m [0mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2043
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2044
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2045
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2046
|
+
[4;35;1mPersonContactInfo Load (0.3ms)[0m [0mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2047
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2048
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2049
|
+
[4;36;1mPerson Load (0.2ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2050
|
+
[4;35;1mPreference Load (0.2ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2051
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2052
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2053
|
+
[4;36;1mDocument Columns (2.0ms)[0m [0;1mSHOW FIELDS FROM `documents`[0m
|
2054
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2055
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2056
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
2057
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2058
|
+
[4;35;1mSQL (2.1ms)[0m [0mDROP TABLE `people`[0m
|
2059
|
+
[4;36;1mSQL (107.3ms)[0m [0;1mCREATE 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[0m
|
2060
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2061
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2062
|
+
[4;35;1mSQL (252.4ms)[0m [0mCREATE 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[0m
|
2063
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
2064
|
+
[4;35;1mSQL (2.6ms)[0m [0mDROP TABLE `posts`[0m
|
2065
|
+
[4;36;1mSQL (115.5ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2066
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2067
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2068
|
+
[4;35;1mSQL (130.5ms)[0m [0mCREATE 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[0m
|
2069
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
2070
|
+
[4;35;1mSQL (2.1ms)[0m [0mDROP TABLE `preferences`[0m
|
2071
|
+
[4;36;1mSQL (122.0ms)[0m [0;1mCREATE 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[0m
|
2072
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2073
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `documents`[0m
|
2074
|
+
[4;35;1mSQL (133.4ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2075
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
2076
|
+
[4;35;1mSQL (1.8ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2077
|
+
[4;36;1mSQL (106.1ms)[0m [0;1mCREATE 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[0m
|
2078
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2079
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
2080
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2081
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
2082
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2083
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2084
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2085
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2086
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2087
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mROLLBACK[0m
|
2088
|
+
[4;35;1mSQL (0.8ms)[0m [0mBEGIN[0m
|
2089
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2090
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2091
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2092
|
+
[4;35;1mPostAttribute Create (0.3ms)[0m [0mINSERT 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')[0m
|
2093
|
+
[4;36;1mPostAttribute Load (0.5ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2094
|
+
[4;35;1mSQL (1.0ms)[0m [0mROLLBACK[0m
|
2095
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2096
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2097
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2098
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2099
|
+
[4;36;1mPostAttribute Destroy (0.3ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2100
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2101
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2102
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
2103
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2104
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2105
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2106
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2107
|
+
[4;36;1mPostAttribute Update (0.3ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:15:40' WHERE `id` = 2[0m
|
2108
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2109
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mROLLBACK[0m
|
2110
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2111
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2112
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2113
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2114
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2115
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2116
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2117
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2118
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2119
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2120
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2121
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2122
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2123
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2124
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2125
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2126
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
2127
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2128
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2129
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2130
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
2131
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2132
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2133
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2134
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2135
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2136
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2137
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2138
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2139
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2140
|
+
[4;35;1mDocument Columns (2.9ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
2141
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2142
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2143
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2144
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2145
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2146
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2147
|
+
[4;35;1mSQL (2.3ms)[0m [0mDROP TABLE `people`[0m
|
2148
|
+
[4;36;1mSQL (120.9ms)[0m [0;1mCREATE 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[0m
|
2149
|
+
[4;35;1mSQL (1.4ms)[0m [0mSHOW TABLES[0m
|
2150
|
+
[4;36;1mSQL (1.5ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2151
|
+
[4;35;1mSQL (177.3ms)[0m [0mCREATE 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[0m
|
2152
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2153
|
+
[4;35;1mSQL (1.7ms)[0m [0mDROP TABLE `posts`[0m
|
2154
|
+
[4;36;1mSQL (93.7ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2155
|
+
[4;35;1mSQL (1.6ms)[0m [0mSHOW TABLES[0m
|
2156
|
+
[4;36;1mSQL (2.3ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2157
|
+
[4;35;1mSQL (143.9ms)[0m [0mCREATE 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[0m
|
2158
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2159
|
+
[4;35;1mSQL (1.4ms)[0m [0mDROP TABLE `preferences`[0m
|
2160
|
+
[4;36;1mSQL (113.2ms)[0m [0;1mCREATE 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[0m
|
2161
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
2162
|
+
[4;36;1mSQL (1.3ms)[0m [0;1mDROP TABLE `documents`[0m
|
2163
|
+
[4;35;1mSQL (119.3ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2164
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
2165
|
+
[4;35;1mSQL (3.0ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2166
|
+
[4;36;1mSQL (118.5ms)[0m [0;1mCREATE 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[0m
|
2167
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2168
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2169
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2170
|
+
[4;36;1mSQL (3.1ms)[0m [0;1mSHOW TABLES[0m
|
2171
|
+
[4;35;1mSQL (4.7ms)[0m [0mSHOW TABLES[0m
|
2172
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2173
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2174
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2175
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2176
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2177
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2178
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2179
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2180
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2181
|
+
[4;35;1mPostAttribute Create (0.3ms)[0m [0mINSERT 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')[0m
|
2182
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2183
|
+
[4;35;1mSQL (0.7ms)[0m [0mROLLBACK[0m
|
2184
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2185
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2186
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2187
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2188
|
+
[4;36;1mPostAttribute Destroy (0.2ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2189
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2190
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2191
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
2192
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2193
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2194
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2195
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2196
|
+
[4;36;1mPostAttribute Update (0.2ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:16:07' WHERE `id` = 2[0m
|
2197
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2198
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mROLLBACK[0m
|
2199
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2200
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2201
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2202
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2203
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2204
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2205
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2206
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2207
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2208
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2209
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2210
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2211
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2212
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2213
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2214
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2215
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2216
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2217
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2218
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2219
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2220
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2221
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2222
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2223
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2224
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2225
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2226
|
+
[4;36;1mPreference Load (0.3ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2227
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2228
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2229
|
+
[4;35;1mDocument Columns (2.7ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
2230
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2231
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
2232
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2233
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2234
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2235
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2236
|
+
[4;35;1mSQL (2.2ms)[0m [0mDROP TABLE `people`[0m
|
2237
|
+
[4;36;1mSQL (119.7ms)[0m [0;1mCREATE 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[0m
|
2238
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2239
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2240
|
+
[4;35;1mSQL (166.9ms)[0m [0mCREATE 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[0m
|
2241
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2242
|
+
[4;35;1mSQL (2.1ms)[0m [0mDROP TABLE `posts`[0m
|
2243
|
+
[4;36;1mSQL (138.0ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2244
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2245
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2246
|
+
[4;35;1mSQL (118.8ms)[0m [0mCREATE 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[0m
|
2247
|
+
[4;36;1mSQL (1.2ms)[0m [0;1mSHOW TABLES[0m
|
2248
|
+
[4;35;1mSQL (2.7ms)[0m [0mDROP TABLE `preferences`[0m
|
2249
|
+
[4;36;1mSQL (137.2ms)[0m [0;1mCREATE 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[0m
|
2250
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2251
|
+
[4;36;1mSQL (1.7ms)[0m [0;1mDROP TABLE `documents`[0m
|
2252
|
+
[4;35;1mSQL (129.7ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2253
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
2254
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2255
|
+
[4;36;1mSQL (139.8ms)[0m [0;1mCREATE 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[0m
|
2256
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2257
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
2258
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2259
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2260
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2261
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2262
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
2263
|
+
[4;36;1mPost Load (0.5ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2264
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2265
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2266
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2267
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2268
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2269
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2270
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
2271
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2272
|
+
[4;35;1mSQL (0.7ms)[0m [0mROLLBACK[0m
|
2273
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2274
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2275
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2276
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2277
|
+
[4;36;1mPostAttribute Destroy (0.3ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2278
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2279
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2280
|
+
[4;35;1mSQL (0.9ms)[0m [0mROLLBACK[0m
|
2281
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2282
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2283
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2284
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2285
|
+
[4;36;1mPostAttribute Update (0.3ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:19:52' WHERE `id` = 2[0m
|
2286
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2287
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mROLLBACK[0m
|
2288
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2289
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2290
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2291
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2292
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2293
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2294
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2295
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2296
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2297
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2298
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2299
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2300
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2301
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2302
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2303
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2304
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
2305
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2306
|
+
[4;35;1mPreference Load (0.4ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2307
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2308
|
+
[4;35;1mSQL (0.3ms)[0m [0mROLLBACK[0m
|
2309
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2310
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2311
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2312
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2313
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2314
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2315
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2316
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2317
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2318
|
+
[4;35;1mDocument Columns (2.3ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
2319
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2320
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2321
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2322
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2323
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
2324
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2325
|
+
[4;35;1mSQL (1.3ms)[0m [0mDROP TABLE `people`[0m
|
2326
|
+
[4;36;1mSQL (93.1ms)[0m [0;1mCREATE 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[0m
|
2327
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
2328
|
+
[4;36;1mSQL (1.2ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2329
|
+
[4;35;1mSQL (187.6ms)[0m [0mCREATE 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[0m
|
2330
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2331
|
+
[4;35;1mSQL (1.1ms)[0m [0mDROP TABLE `posts`[0m
|
2332
|
+
[4;36;1mSQL (107.9ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2333
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
2334
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2335
|
+
[4;35;1mSQL (119.1ms)[0m [0mCREATE 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[0m
|
2336
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2337
|
+
[4;35;1mSQL (18.5ms)[0m [0mDROP TABLE `preferences`[0m
|
2338
|
+
[4;36;1mSQL (135.4ms)[0m [0;1mCREATE 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[0m
|
2339
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
2340
|
+
[4;36;1mSQL (1.2ms)[0m [0;1mDROP TABLE `documents`[0m
|
2341
|
+
[4;35;1mSQL (136.2ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2342
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2343
|
+
[4;35;1mSQL (1.1ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2344
|
+
[4;36;1mSQL (136.7ms)[0m [0;1mCREATE 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[0m
|
2345
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2346
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2347
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2348
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2349
|
+
[4;35;1mSQL (1.2ms)[0m [0mSHOW TABLES[0m
|
2350
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2351
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2352
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2353
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2354
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2355
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2356
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2357
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2358
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2359
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
2360
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2361
|
+
[4;35;1mSQL (0.5ms)[0m [0mROLLBACK[0m
|
2362
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2363
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2364
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2365
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2366
|
+
[4;36;1mPostAttribute Destroy (0.2ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2367
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2368
|
+
[4;36;1mPostAttribute Load (0.1ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2369
|
+
[4;35;1mSQL (0.6ms)[0m [0mROLLBACK[0m
|
2370
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2371
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2372
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2373
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2374
|
+
[4;36;1mPostAttribute Update (0.2ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:19:58' WHERE `id` = 2[0m
|
2375
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2376
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mROLLBACK[0m
|
2377
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2378
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2379
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2380
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2381
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2382
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2383
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2384
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2385
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2386
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2387
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2388
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2389
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2390
|
+
[4;36;1mPost Load (0.1ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2391
|
+
[4;35;1mPostAttribute Load (0.1ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2392
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2393
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2394
|
+
[4;36;1mPerson Load (0.2ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2395
|
+
[4;35;1mPreference Load (0.2ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2396
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2397
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2398
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2399
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2400
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2401
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2402
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2403
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2404
|
+
[4;36;1mPreference Load (0.1ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2405
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2406
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2407
|
+
[4;35;1mDocument Columns (1.6ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
2408
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2409
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2410
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2411
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2412
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2413
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2414
|
+
[4;35;1mSQL (2.6ms)[0m [0mDROP TABLE `people`[0m
|
2415
|
+
[4;36;1mSQL (103.0ms)[0m [0;1mCREATE 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[0m
|
2416
|
+
[4;35;1mSQL (1.3ms)[0m [0mSHOW TABLES[0m
|
2417
|
+
[4;36;1mSQL (2.3ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2418
|
+
[4;35;1mSQL (167.5ms)[0m [0mCREATE 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[0m
|
2419
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
2420
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `posts`[0m
|
2421
|
+
[4;36;1mSQL (116.6ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2422
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2423
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2424
|
+
[4;35;1mSQL (118.8ms)[0m [0mCREATE 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[0m
|
2425
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2426
|
+
[4;35;1mSQL (1.6ms)[0m [0mDROP TABLE `preferences`[0m
|
2427
|
+
[4;36;1mSQL (150.2ms)[0m [0;1mCREATE 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[0m
|
2428
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2429
|
+
[4;36;1mSQL (16.4ms)[0m [0;1mDROP TABLE `documents`[0m
|
2430
|
+
[4;35;1mSQL (135.4ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2431
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
2432
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2433
|
+
[4;36;1mSQL (118.4ms)[0m [0;1mCREATE 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[0m
|
2434
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2435
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
2436
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2437
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
2438
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2439
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2440
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2441
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2442
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2443
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2444
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2445
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2446
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2447
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2448
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
2449
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2450
|
+
[4;35;1mSQL (0.6ms)[0m [0mROLLBACK[0m
|
2451
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2452
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2453
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2454
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2455
|
+
[4;36;1mPostAttribute Destroy (0.2ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2456
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2457
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2458
|
+
[4;35;1mSQL (0.7ms)[0m [0mROLLBACK[0m
|
2459
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2460
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2461
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2462
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2463
|
+
[4;36;1mPostAttribute Update (0.2ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:20:04' WHERE `id` = 2[0m
|
2464
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2465
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mROLLBACK[0m
|
2466
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2467
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2468
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2469
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2470
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2471
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2472
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2473
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2474
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2475
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2476
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2477
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2478
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2479
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2480
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2481
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2482
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
2483
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2484
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2485
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2486
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
2487
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2488
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2489
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2490
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2491
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2492
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2493
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2494
|
+
[4;35;1mSQL (0.3ms)[0m [0mROLLBACK[0m
|
2495
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2496
|
+
[4;35;1mDocument Columns (2.4ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
2497
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2498
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2499
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2500
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2501
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
2502
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2503
|
+
[4;35;1mSQL (25.6ms)[0m [0mDROP TABLE `people`[0m
|
2504
|
+
[4;36;1mSQL (114.3ms)[0m [0;1mCREATE 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[0m
|
2505
|
+
[4;35;1mSQL (1.4ms)[0m [0mSHOW TABLES[0m
|
2506
|
+
[4;36;1mSQL (2.0ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2507
|
+
[4;35;1mSQL (184.7ms)[0m [0mCREATE 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[0m
|
2508
|
+
[4;36;1mSQL (1.2ms)[0m [0;1mSHOW TABLES[0m
|
2509
|
+
[4;35;1mSQL (2.0ms)[0m [0mDROP TABLE `posts`[0m
|
2510
|
+
[4;36;1mSQL (105.0ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2511
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2512
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2513
|
+
[4;35;1mSQL (129.6ms)[0m [0mCREATE 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[0m
|
2514
|
+
[4;36;1mSQL (1.5ms)[0m [0;1mSHOW TABLES[0m
|
2515
|
+
[4;35;1mSQL (2.5ms)[0m [0mDROP TABLE `preferences`[0m
|
2516
|
+
[4;36;1mSQL (136.7ms)[0m [0;1mCREATE 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[0m
|
2517
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
2518
|
+
[4;36;1mSQL (1.4ms)[0m [0;1mDROP TABLE `documents`[0m
|
2519
|
+
[4;35;1mSQL (130.1ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2520
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mSHOW TABLES[0m
|
2521
|
+
[4;35;1mSQL (1.5ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2522
|
+
[4;36;1mSQL (141.7ms)[0m [0;1mCREATE 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[0m
|
2523
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2524
|
+
[4;36;1mSQL (1.2ms)[0m [0;1mSHOW TABLES[0m
|
2525
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2526
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
2527
|
+
[4;35;1mSQL (0.6ms)[0m [0mSHOW TABLES[0m
|
2528
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2529
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2530
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2531
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2532
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2533
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2534
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2535
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2536
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1[0m
|
2537
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
2538
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1[0m
|
2539
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
2540
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2541
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2542
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2543
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2544
|
+
[4;36;1mPostAttribute Destroy (0.3ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2545
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2546
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2547
|
+
[4;35;1mSQL (0.7ms)[0m [0mROLLBACK[0m
|
2548
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2549
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2550
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2551
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2552
|
+
[4;36;1mPostAttribute Update (0.3ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:31:16' WHERE `id` = 2[0m
|
2553
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2554
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mROLLBACK[0m
|
2555
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
2556
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2557
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2558
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2559
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2560
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2561
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2562
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2563
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2564
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2565
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2566
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2567
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2568
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2569
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2570
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2571
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2572
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2573
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2574
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2575
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2576
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2577
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2578
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2579
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
2580
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2581
|
+
[4;35;1mPerson Load (0.3ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2582
|
+
[4;36;1mPreference Load (0.3ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2583
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
2584
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2585
|
+
[4;35;1mDocument Columns (2.0ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
2586
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2587
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2588
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2589
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2590
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2591
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2592
|
+
[4;35;1mSQL (2.3ms)[0m [0mDROP TABLE `people`[0m
|
2593
|
+
[4;36;1mSQL (84.7ms)[0m [0;1mCREATE 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[0m
|
2594
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2595
|
+
[4;36;1mSQL (2.6ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2596
|
+
[4;35;1mSQL (116.4ms)[0m [0mCREATE 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[0m
|
2597
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2598
|
+
[4;35;1mSQL (1.8ms)[0m [0mDROP TABLE `posts`[0m
|
2599
|
+
[4;36;1mSQL (117.5ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2600
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2601
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2602
|
+
[4;35;1mSQL (126.6ms)[0m [0mCREATE 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[0m
|
2603
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
2604
|
+
[4;35;1mSQL (1.8ms)[0m [0mDROP TABLE `preferences`[0m
|
2605
|
+
[4;36;1mSQL (130.7ms)[0m [0;1mCREATE 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[0m
|
2606
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2607
|
+
[4;36;1mSQL (2.5ms)[0m [0;1mDROP TABLE `documents`[0m
|
2608
|
+
[4;35;1mSQL (127.1ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2609
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2610
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2611
|
+
[4;36;1mSQL (117.1ms)[0m [0;1mCREATE 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[0m
|
2612
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2613
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
2614
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2615
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2616
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2617
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2618
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2619
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2620
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2621
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2622
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2623
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2624
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2625
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1[0m
|
2626
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
2627
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1[0m
|
2628
|
+
[4;35;1mSQL (0.9ms)[0m [0mROLLBACK[0m
|
2629
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2630
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2631
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2632
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2633
|
+
[4;36;1mPostAttribute Destroy (0.5ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2634
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2635
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2636
|
+
[4;35;1mSQL (0.7ms)[0m [0mROLLBACK[0m
|
2637
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2638
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2639
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2640
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2641
|
+
[4;36;1mPostAttribute Update (0.3ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:32:24' WHERE `id` = 2[0m
|
2642
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2643
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mROLLBACK[0m
|
2644
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
2645
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2646
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2647
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2648
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2649
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2650
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2651
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2652
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2653
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2654
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2655
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2656
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2657
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2658
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2659
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2660
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2661
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2662
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2663
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2664
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2665
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2666
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2667
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2668
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
2669
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2670
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2671
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2672
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2673
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2674
|
+
[4;35;1mDocument Columns (1.8ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
2675
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2676
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2677
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2678
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2679
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2680
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2681
|
+
[4;35;1mSQL (2.3ms)[0m [0mDROP TABLE `people`[0m
|
2682
|
+
[4;36;1mSQL (94.8ms)[0m [0;1mCREATE 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[0m
|
2683
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2684
|
+
[4;36;1mSQL (16.7ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2685
|
+
[4;35;1mSQL (135.1ms)[0m [0mCREATE 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[0m
|
2686
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2687
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `posts`[0m
|
2688
|
+
[4;36;1mSQL (118.4ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2689
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2690
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2691
|
+
[4;35;1mSQL (94.0ms)[0m [0mCREATE 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[0m
|
2692
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
2693
|
+
[4;35;1mSQL (1.8ms)[0m [0mDROP TABLE `preferences`[0m
|
2694
|
+
[4;36;1mSQL (96.4ms)[0m [0;1mCREATE 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[0m
|
2695
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2696
|
+
[4;36;1mSQL (3.1ms)[0m [0;1mDROP TABLE `documents`[0m
|
2697
|
+
[4;35;1mSQL (103.5ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2698
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2699
|
+
[4;35;1mSQL (2.6ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2700
|
+
[4;36;1mSQL (105.5ms)[0m [0;1mCREATE 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[0m
|
2701
|
+
[4;35;1mSQL (1.3ms)[0m [0mSHOW TABLES[0m
|
2702
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
2703
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2704
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2705
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2706
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2707
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2708
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2709
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2710
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2711
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2712
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2713
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2714
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1[0m
|
2715
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
2716
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1[0m
|
2717
|
+
[4;35;1mSQL (0.7ms)[0m [0mROLLBACK[0m
|
2718
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2719
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2720
|
+
[4;36;1mPostAttribute Load (0.5ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2721
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2722
|
+
[4;36;1mPostAttribute Destroy (0.2ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2723
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2724
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2725
|
+
[4;35;1mSQL (0.9ms)[0m [0mROLLBACK[0m
|
2726
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2727
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2728
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2729
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2730
|
+
[4;36;1mPostAttribute Update (0.3ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:35:40' WHERE `id` = 2[0m
|
2731
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2732
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mROLLBACK[0m
|
2733
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
2734
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2735
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2736
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2737
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2738
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2739
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2740
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2741
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2742
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2743
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2744
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2745
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2746
|
+
[4;36;1mPost Load (0.1ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2747
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2748
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2749
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2750
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2751
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2752
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2753
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
2754
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2755
|
+
[4;35;1mPerson Load (0.3ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2756
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2757
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
2758
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2759
|
+
[4;35;1mPerson Load (0.3ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2760
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2761
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2762
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2763
|
+
[4;35;1mDocument Columns (2.6ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
2764
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2765
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2766
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2767
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2768
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
2769
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2770
|
+
[4;35;1mSQL (2.1ms)[0m [0mDROP TABLE `people`[0m
|
2771
|
+
[4;36;1mSQL (116.8ms)[0m [0;1mCREATE 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[0m
|
2772
|
+
[4;35;1mSQL (1.2ms)[0m [0mSHOW TABLES[0m
|
2773
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2774
|
+
[4;35;1mSQL (238.4ms)[0m [0mCREATE 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[0m
|
2775
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2776
|
+
[4;35;1mSQL (31.0ms)[0m [0mDROP TABLE `posts`[0m
|
2777
|
+
[4;36;1mSQL (136.1ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2778
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2779
|
+
[4;36;1mSQL (14.7ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2780
|
+
[4;35;1mSQL (101.2ms)[0m [0mCREATE 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[0m
|
2781
|
+
[4;36;1mSQL (1.2ms)[0m [0;1mSHOW TABLES[0m
|
2782
|
+
[4;35;1mSQL (1.7ms)[0m [0mDROP TABLE `preferences`[0m
|
2783
|
+
[4;36;1mSQL (116.4ms)[0m [0;1mCREATE 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[0m
|
2784
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
2785
|
+
[4;36;1mSQL (1.5ms)[0m [0;1mDROP TABLE `documents`[0m
|
2786
|
+
[4;35;1mSQL (108.7ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2787
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2788
|
+
[4;35;1mSQL (1.6ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2789
|
+
[4;36;1mSQL (106.9ms)[0m [0;1mCREATE 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[0m
|
2790
|
+
[4;35;1mSQL (1.2ms)[0m [0mSHOW TABLES[0m
|
2791
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2792
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2793
|
+
[4;36;1mSQL (1.6ms)[0m [0;1mSHOW TABLES[0m
|
2794
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
2795
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2796
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2797
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2798
|
+
[4;35;1mPostAttribute Load (1.1ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2799
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2800
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2801
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2802
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2803
|
+
[4;36;1mPostAttribute Load (1.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1[0m
|
2804
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
2805
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'new_attribute' AND `post_attributes`.`post_id` = 2) LIMIT 1[0m
|
2806
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
2807
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2808
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2809
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2810
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2811
|
+
[4;36;1mPostAttribute Destroy (0.2ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2812
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2813
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2814
|
+
[4;35;1mSQL (0.9ms)[0m [0mROLLBACK[0m
|
2815
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2816
|
+
[4;35;1mPost Load (0.5ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2817
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2818
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2819
|
+
[4;36;1mPostAttribute Update (0.3ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:36:10' WHERE `id` = 2[0m
|
2820
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2821
|
+
[4;36;1mSQL (1.5ms)[0m [0;1mROLLBACK[0m
|
2822
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
2823
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2824
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2825
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2826
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2827
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2828
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2829
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2830
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2831
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2832
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2833
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2834
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2835
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2836
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2837
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2838
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2839
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2840
|
+
[4;35;1mPreference Load (0.2ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2841
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2842
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
2843
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2844
|
+
[4;35;1mPerson Load (0.4ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2845
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2846
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2847
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2848
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2849
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2850
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2851
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2852
|
+
[4;35;1mDocument Columns (2.5ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
2853
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mROLLBACK[0m
|
2854
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2855
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2856
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2857
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2858
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
2859
|
+
[4;35;1mSQL (2.2ms)[0m [0mDROP TABLE `people`[0m
|
2860
|
+
[4;36;1mSQL (136.8ms)[0m [0;1mCREATE 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[0m
|
2861
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2862
|
+
[4;36;1mSQL (1.8ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2863
|
+
[4;35;1mSQL (217.4ms)[0m [0mCREATE 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[0m
|
2864
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
2865
|
+
[4;35;1mSQL (2.6ms)[0m [0mDROP TABLE `posts`[0m
|
2866
|
+
[4;36;1mSQL (116.1ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2867
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2868
|
+
[4;36;1mSQL (1.5ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2869
|
+
[4;35;1mSQL (119.6ms)[0m [0mCREATE 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[0m
|
2870
|
+
[4;36;1mSQL (1.5ms)[0m [0;1mSHOW TABLES[0m
|
2871
|
+
[4;35;1mSQL (2.3ms)[0m [0mDROP TABLE `preferences`[0m
|
2872
|
+
[4;36;1mSQL (127.3ms)[0m [0;1mCREATE 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[0m
|
2873
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2874
|
+
[4;36;1mSQL (1.3ms)[0m [0;1mDROP TABLE `documents`[0m
|
2875
|
+
[4;35;1mSQL (117.2ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2876
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
2877
|
+
[4;35;1mSQL (1.4ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2878
|
+
[4;36;1mSQL (118.1ms)[0m [0;1mCREATE 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[0m
|
2879
|
+
[4;35;1mSQL (0.9ms)[0m [0mSHOW TABLES[0m
|
2880
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
2881
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2882
|
+
[4;36;1mSQL (3.7ms)[0m [0;1mSHOW TABLES[0m
|
2883
|
+
[4;35;1mSQL (8.3ms)[0m [0mSHOW TABLES[0m
|
2884
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2885
|
+
[4;35;1mSQL (0.5ms)[0m [0mBEGIN[0m
|
2886
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2887
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2888
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2889
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2890
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2891
|
+
[4;35;1mPostAttribute Load (0.4ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2892
|
+
[4;36;1mPostAttribute Load (0.4ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2893
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
2894
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2895
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
2896
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2897
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2898
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2899
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2900
|
+
[4;36;1mPostAttribute Destroy (0.2ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2901
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2902
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2903
|
+
[4;35;1mSQL (0.7ms)[0m [0mROLLBACK[0m
|
2904
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2905
|
+
[4;35;1mPost Load (0.2ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2906
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2907
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2908
|
+
[4;36;1mPostAttribute Update (0.2ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:42:35' WHERE `id` = 2[0m
|
2909
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2910
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mROLLBACK[0m
|
2911
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2912
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2913
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2914
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2915
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2916
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2917
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2918
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2919
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2920
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2921
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2922
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2923
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2924
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2925
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2926
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2927
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2928
|
+
[4;36;1mPerson Load (0.4ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2929
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2930
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2931
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
2932
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2933
|
+
[4;35;1mPerson Load (0.3ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2934
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
2935
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
2936
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2937
|
+
[4;35;1mPerson Load (0.3ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
2938
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
2939
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
2940
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2941
|
+
[4;35;1mDocument Columns (2.4ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
2942
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2943
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2944
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
2945
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2946
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
2947
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
2948
|
+
[4;35;1mSQL (2.2ms)[0m [0mDROP TABLE `people`[0m
|
2949
|
+
[4;36;1mSQL (133.7ms)[0m [0;1mCREATE 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[0m
|
2950
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2951
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
2952
|
+
[4;35;1mSQL (261.3ms)[0m [0mCREATE 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[0m
|
2953
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
2954
|
+
[4;35;1mSQL (1.7ms)[0m [0mDROP TABLE `posts`[0m
|
2955
|
+
[4;36;1mSQL (120.0ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2956
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2957
|
+
[4;36;1mSQL (3.2ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
2958
|
+
[4;35;1mSQL (136.5ms)[0m [0mCREATE 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[0m
|
2959
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
2960
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `preferences`[0m
|
2961
|
+
[4;36;1mSQL (116.3ms)[0m [0;1mCREATE 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[0m
|
2962
|
+
[4;35;1mSQL (1.0ms)[0m [0mSHOW TABLES[0m
|
2963
|
+
[4;36;1mSQL (1.7ms)[0m [0;1mDROP TABLE `documents`[0m
|
2964
|
+
[4;35;1mSQL (106.4ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
2965
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
2966
|
+
[4;35;1mSQL (2.5ms)[0m [0mDROP TABLE `document_attributes`[0m
|
2967
|
+
[4;36;1mSQL (118.4ms)[0m [0;1mCREATE 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[0m
|
2968
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
2969
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
2970
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
2971
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2972
|
+
[4;35;1mSQL (9.6ms)[0m [0mSHOW TABLES[0m
|
2973
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
2974
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2975
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2976
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2977
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
2978
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
2979
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
2980
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
2981
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2982
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
2983
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
2984
|
+
[4;35;1mSQL (0.7ms)[0m [0mROLLBACK[0m
|
2985
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
2986
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2987
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2988
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2989
|
+
[4;36;1mPostAttribute Destroy (0.3ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
2990
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
2991
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
2992
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
2993
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
2994
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
2995
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
2996
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2997
|
+
[4;36;1mPostAttribute Update (0.3ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:44:15' WHERE `id` = 2[0m
|
2998
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
2999
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mROLLBACK[0m
|
3000
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
3001
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3002
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3003
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3004
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3005
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3006
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3007
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3008
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3009
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3010
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3011
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3012
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3013
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3014
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3015
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3016
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3017
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
3018
|
+
[4;35;1mPreference Load (0.2ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
3019
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
3020
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
3021
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3022
|
+
[4;35;1mPerson Load (0.3ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
3023
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
3024
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
3025
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3026
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
3027
|
+
[4;36;1mPreference Load (0.1ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
3028
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
3029
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3030
|
+
[4;35;1mDocument Columns (2.3ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
3031
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
3032
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3033
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3034
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
3035
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
3036
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
3037
|
+
[4;35;1mSQL (2.3ms)[0m [0mDROP TABLE `people`[0m
|
3038
|
+
[4;36;1mSQL (115.9ms)[0m [0;1mCREATE 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[0m
|
3039
|
+
[4;35;1mSQL (1.2ms)[0m [0mSHOW TABLES[0m
|
3040
|
+
[4;36;1mSQL (2.5ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
3041
|
+
[4;35;1mSQL (173.1ms)[0m [0mCREATE 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[0m
|
3042
|
+
[4;36;1mSQL (1.2ms)[0m [0;1mSHOW TABLES[0m
|
3043
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `posts`[0m
|
3044
|
+
[4;36;1mSQL (115.6ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
3045
|
+
[4;35;1mSQL (1.3ms)[0m [0mSHOW TABLES[0m
|
3046
|
+
[4;36;1mSQL (2.3ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
3047
|
+
[4;35;1mSQL (105.1ms)[0m [0mCREATE 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[0m
|
3048
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
3049
|
+
[4;35;1mSQL (2.9ms)[0m [0mDROP TABLE `preferences`[0m
|
3050
|
+
[4;36;1mSQL (118.8ms)[0m [0;1mCREATE 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[0m
|
3051
|
+
[4;35;1mSQL (1.2ms)[0m [0mSHOW TABLES[0m
|
3052
|
+
[4;36;1mSQL (2.5ms)[0m [0;1mDROP TABLE `documents`[0m
|
3053
|
+
[4;35;1mSQL (138.6ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
3054
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
3055
|
+
[4;35;1mSQL (1.8ms)[0m [0mDROP TABLE `document_attributes`[0m
|
3056
|
+
[4;36;1mSQL (128.7ms)[0m [0;1mCREATE 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[0m
|
3057
|
+
[4;35;1mSQL (1.2ms)[0m [0mSHOW TABLES[0m
|
3058
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
3059
|
+
[4;35;1mSQL (0.3ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
3060
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mSHOW TABLES[0m
|
3061
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
3062
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mSHOW TABLES[0m
|
3063
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3064
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3065
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3066
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
3067
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3068
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
3069
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
3070
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
3071
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
3072
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
3073
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
3074
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3075
|
+
[4;35;1mPost Load (0.4ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3076
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3077
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
3078
|
+
[4;36;1mPostAttribute Destroy (0.2ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
3079
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
3080
|
+
[4;36;1mPostAttribute Load (0.2ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
3081
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
3082
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3083
|
+
[4;35;1mPost Load (0.4ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3084
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3085
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
3086
|
+
[4;36;1mPostAttribute Update (0.3ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:46:50' WHERE `id` = 2[0m
|
3087
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
3088
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mROLLBACK[0m
|
3089
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
3090
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3091
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3092
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3093
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3094
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3095
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3096
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3097
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3098
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3099
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3100
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3101
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3102
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3103
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3104
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3105
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
3106
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
3107
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
3108
|
+
[4;36;1mPersonContactInfo Load (0.3ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
3109
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
3110
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3111
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
3112
|
+
[4;36;1mPersonContactInfo Load (0.4ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
3113
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
3114
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3115
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
3116
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
3117
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
3118
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3119
|
+
[4;35;1mDocument Columns (2.6ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
3120
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
3121
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3122
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3123
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
3124
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
3125
|
+
[4;36;1mSQL (0.5ms)[0m [0;1mSHOW TABLES[0m
|
3126
|
+
[4;35;1mSQL (33.5ms)[0m [0mDROP TABLE `people`[0m
|
3127
|
+
[4;36;1mSQL (67.1ms)[0m [0;1mCREATE 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[0m
|
3128
|
+
[4;35;1mSQL (0.8ms)[0m [0mSHOW TABLES[0m
|
3129
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mDROP TABLE `person_contact_infos`[0m
|
3130
|
+
[4;35;1mSQL (118.8ms)[0m [0mCREATE 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[0m
|
3131
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
3132
|
+
[4;35;1mSQL (2.7ms)[0m [0mDROP TABLE `posts`[0m
|
3133
|
+
[4;36;1mSQL (104.2ms)[0m [0;1mCREATE TABLE `posts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255), `body` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
3134
|
+
[4;35;1mSQL (1.3ms)[0m [0mSHOW TABLES[0m
|
3135
|
+
[4;36;1mSQL (2.1ms)[0m [0;1mDROP TABLE `post_attributes`[0m
|
3136
|
+
[4;35;1mSQL (116.7ms)[0m [0mCREATE 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[0m
|
3137
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mSHOW TABLES[0m
|
3138
|
+
[4;35;1mSQL (2.6ms)[0m [0mDROP TABLE `preferences`[0m
|
3139
|
+
[4;36;1mSQL (117.3ms)[0m [0;1mCREATE 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[0m
|
3140
|
+
[4;35;1mSQL (1.1ms)[0m [0mSHOW TABLES[0m
|
3141
|
+
[4;36;1mSQL (1.9ms)[0m [0;1mDROP TABLE `documents`[0m
|
3142
|
+
[4;35;1mSQL (129.0ms)[0m [0mCREATE TABLE `documents` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) NOT NULL, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB[0m
|
3143
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mSHOW TABLES[0m
|
3144
|
+
[4;35;1mSQL (1.9ms)[0m [0mDROP TABLE `document_attributes`[0m
|
3145
|
+
[4;36;1mSQL (117.8ms)[0m [0;1mCREATE 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[0m
|
3146
|
+
[4;35;1mSQL (1.4ms)[0m [0mSHOW TABLES[0m
|
3147
|
+
[4;36;1mSQL (1.1ms)[0m [0;1mSHOW TABLES[0m
|
3148
|
+
[4;35;1mSQL (0.4ms)[0m [0mSELECT version FROM `schema_migrations`[0m
|
3149
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
3150
|
+
[4;35;1mSQL (0.7ms)[0m [0mSHOW TABLES[0m
|
3151
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mSHOW TABLES[0m
|
3152
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3153
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3154
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3155
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3156
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3157
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Following up from my first post.') LIMIT 1[0m
|
3158
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 2) [0m
|
3159
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
3160
|
+
[4;35;1mPostAttribute Create (0.2ms)[0m [0mINSERT 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')[0m
|
3161
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`post_id` = 2 AND `post_attributes`.`name` = 'new_attribute') LIMIT 1[0m
|
3162
|
+
[4;35;1mSQL (0.9ms)[0m [0mROLLBACK[0m
|
3163
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3164
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3165
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3166
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
3167
|
+
[4;36;1mPostAttribute Destroy (0.3ms)[0m [0;1mDELETE FROM `post_attributes` WHERE `id` = 1[0m
|
3168
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`name` = 'comment') AND (`post_attributes`.post_id = 1) LIMIT 1[0m
|
3169
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 1) LIMIT 1[0m
|
3170
|
+
[4;35;1mSQL (0.8ms)[0m [0mROLLBACK[0m
|
3171
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mBEGIN[0m
|
3172
|
+
[4;35;1mPost Load (0.3ms)[0m [0mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3173
|
+
[4;36;1mPostAttribute Load (0.3ms)[0m [0;1mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3174
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
3175
|
+
[4;36;1mPostAttribute Update (0.3ms)[0m [0;1mUPDATE `post_attributes` SET `value` = 'Blah Blah Blah', `updated_at` = '2008-12-18 00:47:02' WHERE `id` = 2[0m
|
3176
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.`id` = 2) [0m
|
3177
|
+
[4;36;1mSQL (1.0ms)[0m [0;1mROLLBACK[0m
|
3178
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
3179
|
+
[4;36;1mPost Load (0.4ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3180
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3181
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3182
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3183
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3184
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3185
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3186
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3187
|
+
[4;36;1mPost Load (0.3ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3188
|
+
[4;35;1mPostAttribute Load (0.2ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3189
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3190
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3191
|
+
[4;36;1mPost Load (0.2ms)[0m [0;1mSELECT * FROM `posts` WHERE (`posts`.`title` = 'Hello World') LIMIT 1[0m
|
3192
|
+
[4;35;1mPostAttribute Load (0.3ms)[0m [0mSELECT * FROM `post_attributes` WHERE (`post_attributes`.post_id = 1) [0m
|
3193
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|
3194
|
+
[4;35;1mSQL (0.2ms)[0m [0mBEGIN[0m
|
3195
|
+
[4;36;1mPerson Load (0.3ms)[0m [0;1mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
3196
|
+
[4;35;1mPreference Load (0.3ms)[0m [0mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
3197
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
3198
|
+
[4;35;1mSQL (0.2ms)[0m [0mROLLBACK[0m
|
3199
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3200
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
3201
|
+
[4;36;1mPersonContactInfo Load (0.2ms)[0m [0;1mSELECT * FROM `person_contact_infos` WHERE (`person_contact_infos`.contact_id = 1) [0m
|
3202
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
3203
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3204
|
+
[4;35;1mPerson Load (0.2ms)[0m [0mSELECT * FROM `people` WHERE (`people`.`name` = 'Marcus Wyatt') LIMIT 1[0m
|
3205
|
+
[4;36;1mPreference Load (0.2ms)[0m [0;1mSELECT * FROM `preferences` WHERE (`preferences`.person_id = 1) [0m
|
3206
|
+
[4;35;1mSQL (0.1ms)[0m [0mROLLBACK[0m
|
3207
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mBEGIN[0m
|
3208
|
+
[4;35;1mDocument Columns (2.7ms)[0m [0mSHOW FIELDS FROM `documents`[0m
|
3209
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mROLLBACK[0m
|
3210
|
+
[4;35;1mSQL (0.1ms)[0m [0mBEGIN[0m
|
3211
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mROLLBACK[0m
|