numeric_type_column 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. data/Rakefile +2 -0
  2. data/lib/numeric_type_column/active_record/{base_extension.rb → base_patch.rb} +3 -3
  3. data/lib/numeric_type_column/active_record/{belongs_to_polymorphic_association_extension.rb → belongs_to_polymorphic_association_patch.rb} +4 -4
  4. data/lib/numeric_type_column/active_record/{column_definition_extension.rb → column_definition_patch.rb} +4 -4
  5. data/lib/numeric_type_column/active_record/mysql_adapter_patch.rb +102 -0
  6. data/lib/numeric_type_column/active_record/schema_dumper_patch.rb +102 -0
  7. data/lib/numeric_type_column/active_record/{table_definition_extension.rb → table_definition_patch.rb} +3 -3
  8. data/lib/numeric_type_column/active_record.rb +8 -5
  9. data/lib/numeric_type_column/railtie.rb +11 -5
  10. data/lib/numeric_type_column/version.rb +1 -1
  11. data/test/dummy/README.rdoc +261 -0
  12. data/test/dummy/Rakefile +7 -0
  13. data/test/dummy/app/assets/javascripts/application.js +15 -0
  14. data/test/dummy/app/assets/javascripts/unsigned_columns_tests.js +2 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  16. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  17. data/test/dummy/app/assets/stylesheets/unsigned_columns_tests.css +4 -0
  18. data/test/dummy/app/controllers/application_controller.rb +3 -0
  19. data/test/dummy/app/controllers/unsigned_columns_tests_controller.rb +83 -0
  20. data/test/dummy/app/helpers/application_helper.rb +2 -0
  21. data/test/dummy/app/helpers/unsigned_columns_tests_helper.rb +2 -0
  22. data/test/dummy/app/models/unsigned_columns_test.rb +4 -0
  23. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  24. data/test/dummy/app/views/unsigned_columns_tests/_form.html.erb +37 -0
  25. data/test/dummy/app/views/unsigned_columns_tests/edit.html.erb +6 -0
  26. data/test/dummy/app/views/unsigned_columns_tests/index.html.erb +31 -0
  27. data/test/dummy/app/views/unsigned_columns_tests/new.html.erb +5 -0
  28. data/test/dummy/app/views/unsigned_columns_tests/show.html.erb +30 -0
  29. data/test/dummy/config/application.rb +59 -0
  30. data/test/dummy/config/boot.rb +10 -0
  31. data/test/dummy/config/database.yml +30 -0
  32. data/test/dummy/config/environment.rb +5 -0
  33. data/test/dummy/config/environments/development.rb +37 -0
  34. data/test/dummy/config/environments/mayhem.rb +37 -0
  35. data/test/dummy/config/environments/production.rb +67 -0
  36. data/test/dummy/config/environments/test.rb +37 -0
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/inflections.rb +15 -0
  39. data/test/dummy/config/initializers/mime_types.rb +5 -0
  40. data/test/dummy/config/initializers/secret_token.rb +7 -0
  41. data/test/dummy/config/initializers/session_store.rb +8 -0
  42. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  43. data/test/dummy/config/locales/en.yml +5 -0
  44. data/test/dummy/config/routes.rb +60 -0
  45. data/test/dummy/config.ru +4 -0
  46. data/test/dummy/db/migrate/20121024034824_create_unsigned_columns_tests.rb +40 -0
  47. data/test/dummy/db/migrate/20121024090232_create_join_table_test.rb +19 -0
  48. data/test/dummy/db/schema.rb +38 -0
  49. data/test/dummy/db/seeds.rb +20 -0
  50. data/test/dummy/log/mayhem.log +1513 -0
  51. data/test/dummy/public/404.html +26 -0
  52. data/test/dummy/public/422.html +26 -0
  53. data/test/dummy/public/500.html +25 -0
  54. data/test/dummy/public/favicon.ico +0 -0
  55. data/test/dummy/script/rails +6 -0
  56. data/test/dummy/test/fixtures/unsigned_columns_tests.yml +15 -0
  57. data/test/dummy/test/functional/unsigned_columns_tests_controller_test.rb +49 -0
  58. data/test/dummy/test/unit/helpers/unsigned_columns_tests_helper_test.rb +4 -0
  59. data/test/dummy/test/unit/unsigned_columns_test_test.rb +7 -0
  60. data/test/numeric_type_column_test.rb +7 -0
  61. data/test/test_helper.rb +15 -0
  62. metadata +130 -10
  63. data/lib/numeric_type_column/active_record/abstract_mysql_adapter_extension.rb +0 -69
@@ -0,0 +1,1513 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+ Connecting to database specified by database.yml
5
+  (0.5ms) SELECT version FROM schema_migrations
6
+
7
+
8
+ Started GET "/" for 127.0.0.1 at 2012-07-10 23:53:31 -0500
9
+ Connecting to database specified by database.yml
10
+
11
+ ActionController::RoutingError (No route matches [GET] "/"):
12
+ actionpack (3.2.6) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13
+ actionpack (3.2.6) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
14
+ railties (3.2.6) lib/rails/rack/logger.rb:26:in `call_app'
15
+ railties (3.2.6) lib/rails/rack/logger.rb:16:in `call'
16
+ actionpack (3.2.6) lib/action_dispatch/middleware/request_id.rb:22:in `call'
17
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
18
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
19
+ activesupport (3.2.6) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
20
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
21
+ actionpack (3.2.6) lib/action_dispatch/middleware/static.rb:62:in `call'
22
+ railties (3.2.6) lib/rails/engine.rb:479:in `call'
23
+ railties (3.2.6) lib/rails/application.rb:220:in `call'
24
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
25
+ railties (3.2.6) lib/rails/rack/log_tailer.rb:17:in `call'
26
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
27
+ /Users/Vov/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
28
+ /Users/Vov/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
29
+ /Users/Vov/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
30
+
31
+
32
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.0ms)
33
+
34
+
35
+ Started GET "/locations" for 127.0.0.1 at 2012-07-10 23:53:36 -0500
36
+ Processing by LocationsController#index as HTML
37
+ Location Load (3.9ms) SELECT `locations`.* FROM `locations` 
38
+ Rendered locations/index.html.erb within layouts/application (12.4ms)
39
+ Completed 500 Internal Server Error in 306ms
40
+
41
+ ActionView::Template::Error (uninitialized constant Location::Type):
42
+ 11:
43
+ 12: <% @locations.each do |location| %>
44
+ 13: <tr>
45
+ 14: <td><%= location.type %></td>
46
+ 15: <td><%= location.name %></td>
47
+ 16: <td><%= link_to 'Show', location %></td>
48
+ 17: <td><%= link_to 'Edit', edit_location_path(location) %></td>
49
+ app/views/locations/index.html.erb:14:in `block in _app_views_locations_index_html_erb__3043834808340359809_2162134160'
50
+ app/views/locations/index.html.erb:12:in `each'
51
+ app/views/locations/index.html.erb:12:in `_app_views_locations_index_html_erb__3043834808340359809_2162134160'
52
+ app/controllers/locations_controller.rb:7:in `index'
53
+
54
+
55
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.7ms)
56
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
57
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.7ms)
58
+
59
+
60
+ Started GET "/locations" for 127.0.0.1 at 2012-07-10 23:54:37 -0500
61
+ Processing by LocationsController#index as HTML
62
+ Location Load (2.4ms) SELECT `locations`.* FROM `locations`
63
+ Rendered locations/index.html.erb within layouts/application (3.3ms)
64
+ Completed 500 Internal Server Error in 192ms
65
+
66
+ ActionView::Template::Error (uninitialized constant Location::Type):
67
+ 11:
68
+ 12: <% @locations.each do |location| %>
69
+ 13: <tr>
70
+ 14: <td><%= location.type.name %></td>
71
+ 15: <td><%= location.name %></td>
72
+ 16: <td><%= link_to 'Show', location %></td>
73
+ 17: <td><%= link_to 'Edit', edit_location_path(location) %></td>
74
+ app/views/locations/index.html.erb:14:in `block in _app_views_locations_index_html_erb__3043834808340359809_2172548020'
75
+ app/views/locations/index.html.erb:12:in `each'
76
+ app/views/locations/index.html.erb:12:in `_app_views_locations_index_html_erb__3043834808340359809_2172548020'
77
+ app/controllers/locations_controller.rb:7:in `index'
78
+
79
+
80
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.4ms)
81
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
82
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.4ms)
83
+
84
+
85
+ Started GET "/locations" for 127.0.0.1 at 2012-07-10 23:55:06 -0500
86
+ Processing by LocationsController#index as HTML
87
+ Location Load (2.7ms) SELECT `locations`.* FROM `locations` 
88
+ LocationType Load (0.6ms) SELECT `location_types`.* FROM `location_types` WHERE `location_types`.`id` = 5 LIMIT 1
89
+ Rendered locations/index.html.erb within layouts/application (17.8ms)
90
+ Completed 500 Internal Server Error in 216ms
91
+
92
+ ActionView::Template::Error (undefined method `name' for nil:NilClass):
93
+ 11:
94
+ 12: <% @locations.each do |location| %>
95
+ 13: <tr>
96
+ 14: <td><%= location.type.name %></td>
97
+ 15: <td><%= location.name %></td>
98
+ 16: <td><%= link_to 'Show', location %></td>
99
+ 17: <td><%= link_to 'Edit', edit_location_path(location) %></td>
100
+ app/views/locations/index.html.erb:14:in `block in _app_views_locations_index_html_erb__3043834808340359809_2172548020'
101
+ app/views/locations/index.html.erb:12:in `each'
102
+ app/views/locations/index.html.erb:12:in `_app_views_locations_index_html_erb__3043834808340359809_2172548020'
103
+ app/controllers/locations_controller.rb:7:in `index'
104
+
105
+
106
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.6ms)
107
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
108
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.5ms)
109
+
110
+
111
+ Started GET "/locations" for 127.0.0.1 at 2012-07-10 23:55:31 -0500
112
+ Processing by LocationsController#index as HTML
113
+ Location Load (1.9ms) SELECT `locations`.* FROM `locations` 
114
+ Rendered locations/index.html.erb within layouts/application (1.0ms)
115
+ Completed 500 Internal Server Error in 212ms
116
+
117
+ ActionView::Template::Error (undefined method `type' for #<Location id: 1, type_id: 5, name: "Afganistán">):
118
+ 11:
119
+ 12: <% @locations.each do |location| %>
120
+ 13: <tr>
121
+ 14: <td><%= location.type.name %></td>
122
+ 15: <td><%= location.name %></td>
123
+ 16: <td><%= link_to 'Show', location %></td>
124
+ 17: <td><%= link_to 'Edit', edit_location_path(location) %></td>
125
+ app/views/locations/index.html.erb:14:in `block in _app_views_locations_index_html_erb__3043834808340359809_2172548020'
126
+ app/views/locations/index.html.erb:12:in `each'
127
+ app/views/locations/index.html.erb:12:in `_app_views_locations_index_html_erb__3043834808340359809_2172548020'
128
+ app/controllers/locations_controller.rb:7:in `index'
129
+
130
+
131
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
132
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
133
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.4ms)
134
+
135
+
136
+ Started GET "/locations" for 127.0.0.1 at 2012-07-11 00:00:43 -0500
137
+ Processing by LocationsController#index as HTML
138
+ Location Load (1.6ms) SELECT `locations`.* FROM `locations`
139
+ EXPLAIN (0.8ms) EXPLAIN SELECT `locations`.* FROM `locations` 
140
+ EXPLAIN for: SELECT `locations`.* FROM `locations`
141
+ +----+-------------+-----------+------+---------------+------+---------+------+------+-------+
142
+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
143
+ +----+-------------+-----------+------+---------------+------+---------+------+------+-------+
144
+ | 1 | SIMPLE | locations | ALL | NULL | NULL | NULL | NULL | 3197 | |
145
+ +----+-------------+-----------+------+---------------+------+---------+------+------+-------+
146
+ 1 row in set (0.00 sec)
147
+
148
+ Rendered locations/index.html.erb within layouts/application (1.8ms)
149
+ Completed 500 Internal Server Error in 1915ms
150
+
151
+ ActionView::Template::Error (undefined method `type' for #<Country id: 1, type_id: 5, name: "Afganistán">):
152
+ 11:
153
+ 12: <% @locations.each do |location| %>
154
+ 13: <tr>
155
+ 14: <td><%= location.type.name %></td>
156
+ 15: <td><%= location.name %></td>
157
+ 16: <td><%= link_to 'Show', location %></td>
158
+ 17: <td><%= link_to 'Edit', edit_location_path(location) %></td>
159
+ app/views/locations/index.html.erb:14:in `block in _app_views_locations_index_html_erb__3043834808340359809_2172548020'
160
+ app/views/locations/index.html.erb:12:in `each'
161
+ app/views/locations/index.html.erb:12:in `_app_views_locations_index_html_erb__3043834808340359809_2172548020'
162
+ app/controllers/locations_controller.rb:7:in `index'
163
+
164
+
165
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.1ms)
166
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
167
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
168
+
169
+
170
+ Started GET "/locations" for 127.0.0.1 at 2012-07-11 00:02:43 -0500
171
+ Processing by LocationsController#index as HTML
172
+ Location Load (2.0ms) SELECT `locations`.* FROM `locations`
173
+ EXPLAIN (0.7ms) EXPLAIN SELECT `locations`.* FROM `locations` 
174
+ EXPLAIN for: SELECT `locations`.* FROM `locations`
175
+ +----+-------------+-----------+------+---------------+------+---------+------+------+-------+
176
+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
177
+ +----+-------------+-----------+------+---------------+------+---------+------+------+-------+
178
+ | 1 | SIMPLE | locations | ALL | NULL | NULL | NULL | NULL | 3197 | |
179
+ +----+-------------+-----------+------+---------------+------+---------+------+------+-------+
180
+ 1 row in set (0.00 sec)
181
+
182
+ Rendered locations/index.html.erb within layouts/application (335.1ms)
183
+ Completed 500 Internal Server Error in 1407ms
184
+
185
+ ActionView::Template::Error (undefined method `country_path' for #<#<Class:0x00000100e58520>:0x00000100fb70d8>):
186
+ 13: <tr>
187
+ 14: <td><%= location.type_string %></td>
188
+ 15: <td><%= location.name %></td>
189
+ 16: <td><%= link_to 'Show', location %></td>
190
+ 17: <td><%= link_to 'Edit', edit_location_path(location) %></td>
191
+ 18: <td><%= link_to 'Destroy', location, method: :delete, data: { confirm: 'Are you sure?' } %></td>
192
+ 19: </tr>
193
+ app/views/locations/index.html.erb:16:in `block in _app_views_locations_index_html_erb__3043834808340359809_2169029140'
194
+ app/views/locations/index.html.erb:12:in `each'
195
+ app/views/locations/index.html.erb:12:in `_app_views_locations_index_html_erb__3043834808340359809_2169029140'
196
+ app/controllers/locations_controller.rb:7:in `index'
197
+
198
+
199
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.3ms)
200
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
201
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.7ms)
202
+
203
+
204
+ Started GET "/locations" for 127.0.0.1 at 2012-07-11 00:03:06 -0500
205
+ Processing by LocationsController#index as HTML
206
+ Location Load (1.8ms) SELECT `locations`.* FROM `locations`
207
+ EXPLAIN (0.7ms) EXPLAIN SELECT `locations`.* FROM `locations` 
208
+ EXPLAIN for: SELECT `locations`.* FROM `locations`
209
+ +----+-------------+-----------+------+---------------+------+---------+------+------+-------+
210
+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
211
+ +----+-------------+-----------+------+---------------+------+---------+------+------+-------+
212
+ | 1 | SIMPLE | locations | ALL | NULL | NULL | NULL | NULL | 3197 | |
213
+ +----+-------------+-----------+------+---------------+------+---------+------+------+-------+
214
+ 1 row in set (0.00 sec)
215
+
216
+ Rendered locations/index.html.erb within layouts/application (5032.1ms)
217
+ Compiled location_types.css (0ms) (pid 14199)
218
+ Compiled locations.css (0ms) (pid 14199)
219
+ Compiled scaffold.css (0ms) (pid 14199)
220
+ Compiled application.css (39ms) (pid 14199)
221
+ Compiled jquery.js (2ms) (pid 14199)
222
+ Compiled jquery_ujs.js (1ms) (pid 14199)
223
+ Compiled location_types.js (0ms) (pid 14199)
224
+ Compiled locations.js (0ms) (pid 14199)
225
+ Compiled application.js (168ms) (pid 14199)
226
+ Completed 200 OK in 6487ms (Views: 5310.7ms | ActiveRecord: 2.5ms)
227
+
228
+
229
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-07-11 00:03:12 -0500
230
+ Served asset /application.css - 200 OK (18ms)
231
+
232
+
233
+ Started GET "/assets/location_types.css?body=1" for 127.0.0.1 at 2012-07-11 00:03:12 -0500
234
+ Served asset /location_types.css - 200 OK (2ms)
235
+
236
+
237
+ Started GET "/assets/locations.css?body=1" for 127.0.0.1 at 2012-07-11 00:03:12 -0500
238
+ Served asset /locations.css - 200 OK (2ms)
239
+
240
+
241
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-07-11 00:03:12 -0500
242
+ Served asset /scaffold.css - 200 OK (2ms)
243
+
244
+
245
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-07-11 00:03:12 -0500
246
+ Served asset /jquery.js - 200 OK (49ms)
247
+
248
+
249
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-07-11 00:03:13 -0500
250
+ Served asset /jquery_ujs.js - 200 OK (4ms)
251
+
252
+
253
+ Started GET "/assets/locations.js?body=1" for 127.0.0.1 at 2012-07-11 00:03:13 -0500
254
+ Served asset /locations.js - 200 OK (4ms)
255
+
256
+
257
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-07-11 00:03:13 -0500
258
+ Served asset /application.js - 200 OK (18ms)
259
+
260
+
261
+ Started GET "/assets/location_types.js?body=1" for 127.0.0.1 at 2012-07-11 00:03:13 -0500
262
+ Served asset /location_types.js - 200 OK (6ms)
263
+
264
+
265
+ Started GET "/locations" for 127.0.0.1 at 2012-07-11 00:06:29 -0500
266
+ Connecting to database specified by database.yml
267
+ Processing by LocationsController#index as HTML
268
+ Location Load (6.6ms) SELECT `locations`.* FROM `locations` ORDER BY id ASC
269
+ EXPLAIN (0.9ms) EXPLAIN SELECT `locations`.* FROM `locations` ORDER BY id ASC
270
+ EXPLAIN for: SELECT `locations`.* FROM `locations` ORDER BY id ASC
271
+ +----+-------------+-----------+------+---------------+------+---------+------+------+----------------+
272
+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
273
+ +----+-------------+-----------+------+---------------+------+---------+------+------+----------------+
274
+ | 1 | SIMPLE | locations | ALL | NULL | NULL | NULL | NULL | 3197 | Using filesort |
275
+ +----+-------------+-----------+------+---------------+------+---------+------+------+----------------+
276
+ 1 row in set (0.00 sec)
277
+
278
+ Completed 500 Internal Server Error in 2514ms
279
+
280
+ NoMethodError (undefined method `page' for #<ActiveRecord::Relation:0x00000102be1998>):
281
+ app/controllers/locations_controller.rb:5:in `index'
282
+
283
+
284
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
285
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
286
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.2ms)
287
+
288
+
289
+ Started GET "/locations" for 127.0.0.1 at 2012-07-11 00:07:46 -0500
290
+ Processing by LocationsController#index as HTML
291
+ Completed 500 Internal Server Error in 4ms
292
+
293
+ NoMethodError (undefined method `page' for Location(id: integer, type_id: integer, name: string):Class):
294
+ app/controllers/locations_controller.rb:5:in `index'
295
+
296
+
297
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms)
298
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
299
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.6ms)
300
+
301
+
302
+ Started GET "/locations" for 127.0.0.1 at 2012-07-11 00:07:48 -0500
303
+ Processing by LocationsController#index as HTML
304
+ Completed 500 Internal Server Error in 0ms
305
+
306
+ NoMethodError (undefined method `page' for Location(id: integer, type_id: integer, name: string):Class):
307
+ app/controllers/locations_controller.rb:5:in `index'
308
+
309
+
310
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
311
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
312
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.0ms)
313
+
314
+
315
+ Started GET "/locations" for 127.0.0.1 at 2012-07-11 00:08:01 -0500
316
+ Processing by LocationsController#index as HTML
317
+ Completed 500 Internal Server Error in 126ms
318
+
319
+ NoMethodError (undefined method `page' for Location(id: integer, type_id: integer, name: string):Class):
320
+ app/controllers/locations_controller.rb:6:in `index'
321
+
322
+
323
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.6ms)
324
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
325
+ Rendered /Users/Vov/.rvm/gems/ruby-1.9.3-p194@yapp/gems/actionpack-3.2.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)
326
+
327
+
328
+ Started GET "/locations" for 127.0.0.1 at 2012-07-11 00:08:58 -0500
329
+ Connecting to database specified by database.yml
330
+ Processing by LocationsController#index as HTML
331
+ Location Load (0.8ms) SELECT `locations`.* FROM `locations` LIMIT 30 OFFSET 0
332
+ Rendered locations/index.html.erb within layouts/application (92.6ms)
333
+ Completed 200 OK in 156ms (Views: 132.5ms | ActiveRecord: 3.4ms)
334
+
335
+
336
+ Started GET "/assets/location_types.css?body=1" for 127.0.0.1 at 2012-07-11 00:08:59 -0500
337
+ Served asset /location_types.css - 304 Not Modified (4ms)
338
+
339
+
340
+ Started GET "/assets/locations.css?body=1" for 127.0.0.1 at 2012-07-11 00:08:59 -0500
341
+ Served asset /locations.css - 304 Not Modified (2ms)
342
+
343
+
344
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2012-07-11 00:08:59 -0500
345
+ Served asset /scaffold.css - 304 Not Modified (2ms)
346
+
347
+
348
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-07-11 00:08:59 -0500
349
+ Served asset /application.css - 304 Not Modified (5ms)
350
+
351
+
352
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-07-11 00:08:59 -0500
353
+ Served asset /jquery.js - 304 Not Modified (5ms)
354
+
355
+
356
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-07-11 00:08:59 -0500
357
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
358
+
359
+
360
+ Started GET "/assets/location_types.js?body=1" for 127.0.0.1 at 2012-07-11 00:08:59 -0500
361
+ Served asset /location_types.js - 304 Not Modified (6ms)
362
+
363
+
364
+ Started GET "/assets/locations.js?body=1" for 127.0.0.1 at 2012-07-11 00:08:59 -0500
365
+ Served asset /locations.js - 304 Not Modified (4ms)
366
+
367
+
368
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-07-11 00:08:59 -0500
369
+ Served asset /application.js - 304 Not Modified (8ms)
370
+ Connecting to database specified by database.yml
371
+ Connecting to database specified by database.yml
372
+ Connecting to database specified by database.yml
373
+ Connecting to database specified by database.yml
374
+ Connecting to database specified by database.yml
375
+  (4.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
376
+  (5.1ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
377
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
378
+ Migrating to CreateLocationTypes (20120705034511)
379
+  (2.9ms) CREATE TABLE `location_types` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(45) COMMENT 'Nombre del tipo.') ENGINE=InnoDB
380
+  (0.9ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120705034511')
381
+ Migrating to CreateLocations (20120705041521)
382
+  (2.6ms) CREATE TABLE `locations` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `type_id` int(11) UNSIGNED COMMENT 'llave foranea a location_type', `name` varchar(45) COMMENT 'Nombre de la locacion.') ENGINE=InnoDB
383
+  (4.5ms) CREATE INDEX `FK_location_type` ON `locations` (`type_id`)
384
+  (0.7ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20120705041521')
385
+  (0.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
386
+ Connecting to database specified by database.yml
387
+ Connecting to database specified by database.yml
388
+ Connecting to database specified by database.yml
389
+ Connecting to database specified by database.yml
390
+ Connecting to database specified by database.yml
391
+ Connecting to database specified by database.yml
392
+ Connecting to database specified by database.yml
393
+ Connecting to database specified by database.yml
394
+  (5.8ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
395
+  (4.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
396
+  (17.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
397
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
398
+  (2.8ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer.', `decimal_unsigned_column` decimal(4,2) COMMENT 'Prueba con columna tipo Decimal.', `unsigned_float_column` float COMMENT 'Prueba con columna tipo Float.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
399
+  (4.1ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
400
+  (1.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
401
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
402
+ Connecting to database specified by database.yml
403
+  (2.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
404
+  (3.8ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
405
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
406
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
407
+  (2.7ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer.', `decimal_unsigned_column` decimal(4,2) COMMENT 'Prueba con columna tipo Decimal.', `unsigned_float_column` float COMMENT 'Prueba con columna tipo Float.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
408
+  (5.9ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
409
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
410
+  (0.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
411
+ Connecting to database specified by database.yml
412
+ Connecting to database specified by database.yml
413
+ Connecting to database specified by database.yml
414
+  (3.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
415
+  (3.9ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
416
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
417
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
418
+  (3.9ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer.', `decimal_unsigned_column` decimal(4,2) COMMENT 'Prueba con columna tipo Decimal.', `unsigned_float_column` float COMMENT 'Prueba con columna tipo Float.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
419
+  (4.4ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
420
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
421
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
422
+ Connecting to database specified by database.yml
423
+ Connecting to database specified by database.yml
424
+  (3.5ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
425
+  (3.7ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
426
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
427
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
428
+  (2.5ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer.', `decimal_unsigned_column` decimal(4,2) COMMENT 'Prueba con columna tipo Decimal.', `unsigned_float_column` float COMMENT 'Prueba con columna tipo Float.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
429
+  (3.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
430
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
431
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
432
+ Connecting to database specified by database.yml
433
+  (4.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
434
+  (3.7ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
435
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
436
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
437
+  (3.6ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer.', `decimal_unsigned_column` decimal(4,2) COMMENT 'Prueba con columna tipo Decimal.', `unsigned_float_column` float COMMENT 'Prueba con columna tipo Float.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
438
+  (4.3ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
439
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
440
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
441
+ Connecting to database specified by database.yml
442
+  (3.5ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
443
+  (4.2ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
444
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
445
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
446
+  (2.9ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer.', `decimal_unsigned_column` decimal(4,2) COMMENT 'Prueba con columna tipo Decimal.', `unsigned_float_column` float COMMENT 'Prueba con columna tipo Float.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
447
+  (4.0ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
448
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
449
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
450
+ Connecting to database specified by database.yml
451
+  (3.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
452
+  (3.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
453
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
454
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
455
+  (3.1ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer.', `decimal_unsigned_column` decimal(4,2) COMMENT 'Prueba con columna tipo Decimal.', `unsigned_float_column` float COMMENT 'Prueba con columna tipo Float.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
456
+  (3.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
457
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
458
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
459
+ Connecting to database specified by database.yml
460
+  (3.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
461
+  (3.9ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
462
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
463
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
464
+  (3.3ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
465
+  (3.9ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
466
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
467
+  (0.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
468
+ Connecting to database specified by database.yml
469
+  (3.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
470
+  (4.0ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
471
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
472
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
473
+  (2.8ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
474
+  (4.5ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
475
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
476
+  (0.8ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
477
+ Connecting to database specified by database.yml
478
+  (6.6ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
479
+  (3.7ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
480
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
481
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
482
+  (2.7ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
483
+  (5.4ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
484
+  (0.9ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
485
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
486
+ Connecting to database specified by database.yml
487
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
488
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
489
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
490
+ Connecting to database specified by database.yml
491
+  (4.0ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
492
+  (3.8ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
493
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
494
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
495
+  (2.8ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
496
+  (4.2ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
497
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
498
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
499
+ Connecting to database specified by database.yml
500
+  (4.0ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
501
+  (3.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
502
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
503
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
504
+  (3.2ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
505
+  (4.0ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
506
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
507
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
508
+ Connecting to database specified by database.yml
509
+  (2.1ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
510
+  (0.4ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
511
+  (3.6ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED, `integer_signed_column` smallint, `string_column` varchar(24), `decimal_unsigned_column` decimal(4,2) UNSIGNED, `unsigned_float_column` float UNSIGNED, `boolean_unsigned_column` tinyint(1) UNSIGNED, `references_unsigned_column_id` int(11) UNSIGNED, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
512
+  (3.9ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
513
+  (1.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
514
+  (9.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
515
+  (0.8ms) SELECT version FROM `schema_migrations`
516
+  (0.7ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
517
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
518
+ Connecting to database specified by database.yml
519
+  (2.7ms) DROP TABLE `unsigned_columns_tests`
520
+  (3.5ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED, `integer_signed_column` smallint, `string_column` varchar(24), `decimal_unsigned_column` decimal(4,2) UNSIGNED, `unsigned_float_column` float UNSIGNED, `boolean_unsigned_column` tinyint(1) UNSIGNED, `references_unsigned_column_id` int(11) UNSIGNED, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
521
+  (3.7ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
522
+  (1.3ms) SELECT version FROM `schema_migrations`
523
+  (1.8ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
524
+ Connecting to database specified by database.yml
525
+  (3.2ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
526
+  (0.4ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
527
+  (4.1ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED, `integer_signed_column` smallint, `string_column` varchar(24), `decimal_unsigned_column` decimal(4,2) UNSIGNED, `unsigned_float_column` float UNSIGNED, `boolean_unsigned_column` tinyint(1) UNSIGNED, `references_unsigned_column_id` int(11) UNSIGNED, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
528
+  (4.5ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
529
+  (2.0ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
530
+  (3.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
531
+  (1.6ms) SELECT version FROM `schema_migrations`
532
+  (1.7ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
533
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
534
+ Connecting to database specified by database.yml
535
+  (3.6ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
536
+  (0.4ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
537
+  (3.7ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED, `integer_signed_column` smallint, `string_column` varchar(24), `decimal_unsigned_column` decimal(4,2) UNSIGNED, `unsigned_float_column` float UNSIGNED, `boolean_unsigned_column` tinyint(1) UNSIGNED, `references_unsigned_column_id` int(11) UNSIGNED, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
538
+  (4.0ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
539
+  (2.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
540
+  (3.3ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
541
+  (0.5ms) SELECT version FROM `schema_migrations`
542
+  (1.1ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
543
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
544
+ Connecting to database specified by database.yml
545
+  (3.5ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
546
+  (0.3ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
547
+  (3.7ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED, `integer_signed_column` smallint, `string_column` varchar(24), `decimal_unsigned_column` decimal(4,2) UNSIGNED, `unsigned_float_column` float UNSIGNED, `boolean_unsigned_column` tinyint(1) UNSIGNED, `references_unsigned_column_id` int(11) UNSIGNED, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
548
+  (3.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
549
+  (2.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
550
+  (3.9ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
551
+  (0.7ms) SELECT version FROM `schema_migrations`
552
+  (1.2ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
553
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
554
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
555
+  (0.6ms) BEGIN
556
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 05:38:11', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 05:38:11')
557
+  (1.4ms) COMMIT
558
+ Connecting to database specified by database.yml
559
+  (3.1ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
560
+  (0.4ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
561
+  (3.8ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED, `integer_signed_column` smallint, `string_column` varchar(24), `decimal_unsigned_column` decimal(4,2) UNSIGNED, `unsigned_float_column` float UNSIGNED, `boolean_unsigned_column` tinyint(1) UNSIGNED, `references_unsigned_column_id` int(11) UNSIGNED, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
562
+  (4.2ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
563
+  (3.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
564
+  (3.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
565
+  (0.7ms) SELECT version FROM `schema_migrations`
566
+  (0.9ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
567
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
568
+ UnsignedColumnsTest Load (1.3ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
569
+  (0.6ms) BEGIN
570
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 05:39:30', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 05:39:30')
571
+  (0.7ms) COMMIT
572
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
573
+  (0.5ms) BEGIN
574
+ SQL (0.9ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 05:39:30', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 05:39:30')
575
+  (0.7ms) COMMIT
576
+ Connecting to database specified by database.yml
577
+  (3.1ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
578
+  (0.3ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
579
+  (3.7ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED, `integer_signed_column` smallint, `string_column` varchar(24), `decimal_unsigned_column` decimal(4,2) UNSIGNED, `unsigned_float_column` float UNSIGNED, `boolean_unsigned_column` tinyint(1) UNSIGNED, `references_unsigned_column_id` int(11) UNSIGNED, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
580
+  (3.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
581
+  (2.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
582
+  (4.1ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
583
+  (0.8ms) SELECT version FROM `schema_migrations`
584
+  (0.8ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
585
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
586
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
587
+  (0.6ms) BEGIN
588
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 05:40:07', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 05:40:07')
589
+  (0.8ms) COMMIT
590
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
591
+  (0.3ms) BEGIN
592
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 05:40:07', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 05:40:07')
593
+  (0.6ms) COMMIT
594
+ Connecting to database specified by database.yml
595
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
596
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
597
+  (0.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
598
+ Connecting to database specified by database.yml
599
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
600
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
601
+  (0.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
602
+ Connecting to database specified by database.yml
603
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
604
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
605
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
606
+ Connecting to database specified by database.yml
607
+ Connecting to database specified by database.yml
608
+ Connecting to database specified by database.yml
609
+ Connecting to database specified by database.yml
610
+  (2.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
611
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
612
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
613
+ Connecting to database specified by database.yml
614
+  (4.6ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
615
+  (3.7ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
616
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
617
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
618
+  (2.6ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
619
+  (4.6ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
620
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
621
+  (0.8ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
622
+ Connecting to database specified by database.yml
623
+ Connecting to database specified by database.yml
624
+ Connecting to database specified by database.yml
625
+ Connecting to database specified by database.yml
626
+ Connecting to database specified by database.yml
627
+ Connecting to database specified by database.yml
628
+ Connecting to database specified by database.yml
629
+ Connecting to database specified by database.yml
630
+ Connecting to database specified by database.yml
631
+ Connecting to database specified by database.yml
632
+ Connecting to database specified by database.yml
633
+ Connecting to database specified by database.yml
634
+ Connecting to database specified by database.yml
635
+ Connecting to database specified by database.yml
636
+ Connecting to database specified by database.yml
637
+ Connecting to database specified by database.yml
638
+ Connecting to database specified by database.yml
639
+ Connecting to database specified by database.yml
640
+ Connecting to database specified by database.yml
641
+ Connecting to database specified by database.yml
642
+ Connecting to database specified by database.yml
643
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
644
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
645
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
646
+ Connecting to database specified by database.yml
647
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
648
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
649
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
650
+ Connecting to database specified by database.yml
651
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
652
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
653
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
654
+ Connecting to database specified by database.yml
655
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
656
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
657
+  (0.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
658
+ Connecting to database specified by database.yml
659
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
660
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
661
+  (0.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
662
+ Connecting to database specified by database.yml
663
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
664
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
665
+  (0.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
666
+ Connecting to database specified by database.yml
667
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
668
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
669
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
670
+ Connecting to database specified by database.yml
671
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
672
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
673
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
674
+ Connecting to database specified by database.yml
675
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
676
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
677
+  (0.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
678
+ Connecting to database specified by database.yml
679
+  (4.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
680
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
681
+  (0.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
682
+ Connecting to database specified by database.yml
683
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
684
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
685
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
686
+ Connecting to database specified by database.yml
687
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
688
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
689
+  (0.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
690
+ Connecting to database specified by database.yml
691
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
692
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
693
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
694
+ Connecting to database specified by database.yml
695
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
696
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
697
+  (0.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
698
+ Connecting to database specified by database.yml
699
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
700
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
701
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
702
+ Connecting to database specified by database.yml
703
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
704
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
705
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
706
+ Connecting to database specified by database.yml
707
+ Connecting to database specified by database.yml
708
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
709
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
710
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
711
+ Connecting to database specified by database.yml
712
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
713
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
714
+  (0.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
715
+ Connecting to database specified by database.yml
716
+  (2.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
717
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
718
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
719
+ Connecting to database specified by database.yml
720
+  (3.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
721
+  (4.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
722
+  (2.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
723
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
724
+  (3.0ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
725
+  (5.5ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
726
+  (1.2ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
727
+  (0.7ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
728
+ Connecting to database specified by database.yml
729
+  (1.8ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
730
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
731
+  (0.6ms) BEGIN
732
+ SQL (1.2ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:08:49', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:08:49')
733
+  (1.9ms) COMMIT
734
+ UnsignedColumnsTest Load (1.4ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
735
+  (0.5ms) BEGIN
736
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:08:49', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:08:49')
737
+  (0.8ms) COMMIT
738
+ Connecting to database specified by database.yml
739
+  (49.2ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint NOT NULL COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
740
+  (5.3ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
741
+  (2.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
742
+  (4.2ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
743
+  (0.5ms) SELECT version FROM `schema_migrations`
744
+  (0.7ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
745
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
746
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
747
+  (0.5ms) BEGIN
748
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:09:51', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:09:51')
749
+  (0.7ms) COMMIT
750
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
751
+  (0.3ms) BEGIN
752
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:09:51', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:09:51')
753
+  (0.6ms) COMMIT
754
+ Connecting to database specified by database.yml
755
+  (4.5ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
756
+  (0.5ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
757
+  (7.5ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint NOT NULL COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
758
+  (3.9ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
759
+  (3.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
760
+  (3.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
761
+  (0.5ms) SELECT version FROM `schema_migrations`
762
+  (0.7ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
763
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
764
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
765
+  (0.5ms) BEGIN
766
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:12:16', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:12:16')
767
+  (0.8ms) COMMIT
768
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
769
+  (0.3ms) BEGIN
770
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:12:16', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:12:16')
771
+  (0.6ms) COMMIT
772
+ Connecting to database specified by database.yml
773
+  (4.0ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
774
+  (3.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
775
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
776
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
777
+  (3.8ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
778
+  (4.1ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
779
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
780
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
781
+ Connecting to database specified by database.yml
782
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
783
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
784
+  (0.6ms) BEGIN
785
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:22:13', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:22:13')
786
+  (1.4ms) COMMIT
787
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
788
+  (0.3ms) BEGIN
789
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:22:13', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:22:13')
790
+  (0.7ms) COMMIT
791
+ Connecting to database specified by database.yml
792
+  (3.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
793
+  (4.3ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
794
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
795
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
796
+  (2.5ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
797
+  (4.0ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
798
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
799
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
800
+ Connecting to database specified by database.yml
801
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
802
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
803
+  (0.7ms) BEGIN
804
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:32:46', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:32:46')
805
+  (1.5ms) COMMIT
806
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
807
+  (0.3ms) BEGIN
808
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:32:46', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:32:46')
809
+  (0.6ms) COMMIT
810
+ Connecting to database specified by database.yml
811
+  (3.4ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
812
+  (0.4ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
813
+  (3.9ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint NOT NULL COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
814
+  (3.9ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
815
+  (2.5ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
816
+  (3.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
817
+  (0.6ms) SELECT version FROM `schema_migrations`
818
+  (1.1ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
819
+  (2.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
820
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
821
+  (0.6ms) BEGIN
822
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:33:00', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:33:00')
823
+  (0.7ms) COMMIT
824
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
825
+  (0.4ms) BEGIN
826
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:33:00', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:33:00')
827
+  (2.7ms) COMMIT
828
+ Connecting to database specified by database.yml
829
+  (7.0ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
830
+  (3.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
831
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
832
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
833
+  (3.0ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
834
+  (4.9ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
835
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
836
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
837
+ Connecting to database specified by database.yml
838
+  (3.0ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
839
+  (0.3ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
840
+  (4.1ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint NOT NULL COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
841
+  (5.0ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
842
+  (1.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
843
+  (3.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
844
+  (0.8ms) SELECT version FROM `schema_migrations`
845
+  (0.9ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
846
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
847
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
848
+  (0.5ms) BEGIN
849
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:33:59', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:33:59')
850
+  (0.6ms) COMMIT
851
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
852
+  (0.3ms) BEGIN
853
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:33:59', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:33:59')
854
+  (0.5ms) COMMIT
855
+ Connecting to database specified by database.yml
856
+  (4.0ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
857
+  (3.3ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
858
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
859
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
860
+  (3.6ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
861
+  (3.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
862
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
863
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
864
+ Connecting to database specified by database.yml
865
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
866
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
867
+  (0.8ms) BEGIN
868
+ SQL (1.2ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:35:06', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:35:06')
869
+  (2.7ms) COMMIT
870
+ UnsignedColumnsTest Load (1.5ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
871
+  (1.0ms) BEGIN
872
+ SQL (0.9ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:35:06', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:35:06')
873
+  (1.1ms) COMMIT
874
+ Connecting to database specified by database.yml
875
+ Connecting to database specified by database.yml
876
+ Connecting to database specified by database.yml
877
+  (4.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
878
+  (3.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
879
+  (2.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
880
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
881
+  (2.8ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
882
+  (3.7ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
883
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
884
+  (0.8ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
885
+ Connecting to database specified by database.yml
886
+  (4.0ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
887
+  (3.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
888
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
889
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
890
+  (2.6ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
891
+  (3.9ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
892
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
893
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
894
+ Connecting to database specified by database.yml
895
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
896
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
897
+  (0.7ms) BEGIN
898
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:45:30', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:45:30')
899
+  (1.3ms) COMMIT
900
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
901
+  (0.3ms) BEGIN
902
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:45:30', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:45:30')
903
+  (0.5ms) COMMIT
904
+ Connecting to database specified by database.yml
905
+  (5.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
906
+  (3.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
907
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
908
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
909
+  (3.3ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
910
+  (4.0ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
911
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
912
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
913
+ Connecting to database specified by database.yml
914
+  (1.8ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
915
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
916
+  (0.6ms) BEGIN
917
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:46:31', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:46:31')
918
+  (1.4ms) COMMIT
919
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
920
+  (0.3ms) BEGIN
921
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:46:31', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:46:31')
922
+  (0.6ms) COMMIT
923
+ Connecting to database specified by database.yml
924
+  (2.7ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
925
+  (3.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
926
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
927
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
928
+  (2.7ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
929
+  (3.7ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
930
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
931
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
932
+ Connecting to database specified by database.yml
933
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
934
+ UnsignedColumnsTest Load (2.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
935
+  (1.1ms) BEGIN
936
+ SQL (3.3ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:46:55', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:46:55')
937
+  (1.9ms) COMMIT
938
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
939
+  (0.5ms) BEGIN
940
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:46:55', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:46:55')
941
+  (0.7ms) COMMIT
942
+ Connecting to database specified by database.yml
943
+  (4.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
944
+  (3.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
945
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
946
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
947
+  (3.9ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
948
+  (3.9ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
949
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
950
+  (0.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
951
+ Connecting to database specified by database.yml
952
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
953
+ UnsignedColumnsTest Load (1.3ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
954
+  (0.6ms) BEGIN
955
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:48:38', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:48:38')
956
+  (1.8ms) COMMIT
957
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
958
+  (0.4ms) BEGIN
959
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:48:38', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:48:38')
960
+  (0.6ms) COMMIT
961
+ Connecting to database specified by database.yml
962
+  (4.1ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
963
+  (0.4ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
964
+  (4.3ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint NOT NULL COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED NOT NULL COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
965
+  (6.3ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
966
+  (22.8ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
967
+  (11.8ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
968
+  (2.4ms) SELECT version FROM `schema_migrations`
969
+  (0.7ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
970
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
971
+ UnsignedColumnsTest Load (1.2ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
972
+  (0.7ms) BEGIN
973
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:49:04', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:49:04')
974
+  (0.9ms) COMMIT
975
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
976
+  (0.6ms) BEGIN
977
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:49:04', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:49:04')
978
+  (0.6ms) COMMIT
979
+ Connecting to database specified by database.yml
980
+  (4.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
981
+  (4.3ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
982
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
983
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
984
+  (2.8ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
985
+  (3.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
986
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
987
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
988
+ Connecting to database specified by database.yml
989
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
990
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
991
+  (0.5ms) BEGIN
992
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:49:42', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:49:42')
993
+  (1.4ms) COMMIT
994
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
995
+  (0.3ms) BEGIN
996
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:49:42', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:49:42')
997
+  (0.6ms) COMMIT
998
+ Connecting to database specified by database.yml
999
+  (2.8ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1000
+  (3.5ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1001
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1002
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1003
+  (2.7ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1004
+  (3.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1005
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1006
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1007
+ Connecting to database specified by database.yml
1008
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1009
+ UnsignedColumnsTest Load (1.2ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1010
+  (0.7ms) BEGIN
1011
+ SQL (0.9ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:50:12', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:50:12')
1012
+  (27.1ms) COMMIT
1013
+ UnsignedColumnsTest Load (1.2ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1014
+  (0.5ms) BEGIN
1015
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:50:12', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:50:12')
1016
+  (1.5ms) COMMIT
1017
+ Connecting to database specified by database.yml
1018
+  (4.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1019
+  (3.5ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1020
+  (2.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1021
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1022
+  (3.1ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1023
+  (4.6ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1024
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1025
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1026
+ Connecting to database specified by database.yml
1027
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1028
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1029
+  (0.5ms) BEGIN
1030
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:55:11', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:55:11')
1031
+  (1.4ms) COMMIT
1032
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1033
+  (0.3ms) BEGIN
1034
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:55:11', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:55:11')
1035
+  (0.9ms) COMMIT
1036
+ Connecting to database specified by database.yml
1037
+  (3.1ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
1038
+  (0.3ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
1039
+  (3.7ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
1040
+  (3.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1041
+  (2.6ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1042
+  (3.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1043
+  (0.5ms) SELECT version FROM `schema_migrations`
1044
+  (1.2ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
1045
+  (2.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1046
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1047
+  (0.7ms) BEGIN
1048
+ SQL (0.9ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:55:44', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:55:44')
1049
+  (0.7ms) COMMIT
1050
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1051
+  (0.3ms) BEGIN
1052
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:55:44', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:55:44')
1053
+  (0.6ms) COMMIT
1054
+ Connecting to database specified by database.yml
1055
+  (5.7ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1056
+  (3.8ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1057
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1058
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1059
+  (3.1ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1060
+  (5.4ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1061
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1062
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1063
+ Connecting to database specified by database.yml
1064
+  (2.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1065
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1066
+  (0.8ms) BEGIN
1067
+ SQL (4.9ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:56:01', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:56:01')
1068
+  (2.1ms) COMMIT
1069
+ UnsignedColumnsTest Load (1.2ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1070
+  (0.6ms) BEGIN
1071
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:56:01', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:56:01')
1072
+  (0.8ms) COMMIT
1073
+ Connecting to database specified by database.yml
1074
+  (4.4ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
1075
+  (0.3ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
1076
+  (3.8ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB
1077
+  (5.6ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1078
+  (2.0ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1079
+  (3.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1080
+  (1.0ms) SELECT version FROM `schema_migrations`
1081
+  (0.8ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
1082
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1083
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1084
+  (0.5ms) BEGIN
1085
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:58:03', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 07:58:03')
1086
+  (0.6ms) COMMIT
1087
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1088
+  (0.3ms) BEGIN
1089
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 07:58:03', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 07:58:03')
1090
+  (0.5ms) COMMIT
1091
+ Connecting to database specified by database.yml
1092
+  (5.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1093
+  (4.9ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1094
+  (2.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1095
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1096
+  (3.3ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1097
+  (4.1ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1098
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1099
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1100
+ Connecting to database specified by database.yml
1101
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1102
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1103
+  (0.6ms) BEGIN
1104
+ SQL (1.3ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:03:52', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:03:52')
1105
+  (1.3ms) COMMIT
1106
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1107
+  (0.3ms) BEGIN
1108
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:03:52', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:03:52')
1109
+  (0.6ms) COMMIT
1110
+ Connecting to database specified by database.yml
1111
+  (5.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1112
+  (4.0ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1113
+  (2.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1114
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1115
+  (2.7ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1116
+  (4.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1117
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1118
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1119
+ Connecting to database specified by database.yml
1120
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1121
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1122
+  (0.5ms) BEGIN
1123
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:05:26', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:05:26')
1124
+  (1.4ms) COMMIT
1125
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1126
+  (0.3ms) BEGIN
1127
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:05:26', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:05:26')
1128
+  (0.6ms) COMMIT
1129
+ Connecting to database specified by database.yml
1130
+  (7.3ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1131
+  (3.5ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1132
+  (2.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1133
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1134
+  (3.1ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1135
+  (4.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1136
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1137
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1138
+ Connecting to database specified by database.yml
1139
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1140
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1141
+  (0.5ms) BEGIN
1142
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:05:45', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:05:45')
1143
+  (1.5ms) COMMIT
1144
+ UnsignedColumnsTest Load (1.3ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1145
+  (2.8ms) BEGIN
1146
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:05:45', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:05:45')
1147
+  (0.7ms) COMMIT
1148
+ Connecting to database specified by database.yml
1149
+  (17.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1150
+  (4.7ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1151
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1152
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1153
+  (4.4ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1154
+  (4.3ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1155
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1156
+  (0.7ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1157
+ Connecting to database specified by database.yml
1158
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1159
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1160
+  (0.8ms) BEGIN
1161
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:15:10', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:15:10')
1162
+  (1.4ms) COMMIT
1163
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1164
+  (0.3ms) BEGIN
1165
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:15:10', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:15:10')
1166
+  (0.5ms) COMMIT
1167
+ Connecting to database specified by database.yml
1168
+  (3.7ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1169
+  (3.9ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1170
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1171
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1172
+  (4.3ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1173
+  (3.6ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1174
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1175
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1176
+ Connecting to database specified by database.yml
1177
+  (2.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1178
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1179
+  (0.5ms) BEGIN
1180
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:16:18', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:16:18')
1181
+  (1.5ms) COMMIT
1182
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1183
+  (0.3ms) BEGIN
1184
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:16:18', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:16:18')
1185
+  (0.6ms) COMMIT
1186
+ Connecting to database specified by database.yml
1187
+  (8.3ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1188
+  (3.7ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1189
+  (2.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1190
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1191
+  (4.1ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1192
+  (5.0ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1193
+  (1.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1194
+  (0.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1195
+ Connecting to database specified by database.yml
1196
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1197
+ UnsignedColumnsTest Load (1.3ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1198
+  (0.6ms) BEGIN
1199
+ SQL (1.0ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:36:38', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:36:38')
1200
+  (50.4ms) COMMIT
1201
+ UnsignedColumnsTest Load (3.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1202
+  (0.5ms) BEGIN
1203
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:36:39', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:36:39')
1204
+  (0.8ms) COMMIT
1205
+ Connecting to database specified by database.yml
1206
+  (4.1ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1207
+  (3.7ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1208
+  (2.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1209
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1210
+  (3.0ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1211
+  (4.3ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1212
+  (0.9ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1213
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1214
+ Connecting to database specified by database.yml
1215
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1216
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1217
+  (0.5ms) BEGIN
1218
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:38:05', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:38:05')
1219
+  (1.4ms) COMMIT
1220
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1221
+  (0.3ms) BEGIN
1222
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:38:05', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:38:05')
1223
+  (0.6ms) COMMIT
1224
+ Connecting to database specified by database.yml
1225
+  (2.7ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1226
+  (4.0ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1227
+  (2.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1228
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1229
+  (3.1ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1230
+  (5.3ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1231
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1232
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1233
+  (0.6ms) SELECT DATABASE() as db
1234
+ Connecting to database specified by database.yml
1235
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1236
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1237
+  (0.5ms) BEGIN
1238
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:39:57', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:39:57')
1239
+  (1.4ms) COMMIT
1240
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1241
+  (0.3ms) BEGIN
1242
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:39:57', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:39:57')
1243
+  (0.6ms) COMMIT
1244
+ Connecting to database specified by database.yml
1245
+  (7.7ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1246
+  (3.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1247
+  (2.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1248
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1249
+  (2.8ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1250
+  (4.6ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1251
+  (1.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1252
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1253
+  (0.5ms) SELECT DATABASE() as db
1254
+ Connecting to database specified by database.yml
1255
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1256
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1257
+  (0.5ms) BEGIN
1258
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:40:37', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:40:37')
1259
+  (1.4ms) COMMIT
1260
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1261
+  (0.3ms) BEGIN
1262
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:40:37', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:40:37')
1263
+  (0.6ms) COMMIT
1264
+ Connecting to database specified by database.yml
1265
+  (5.6ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1266
+  (3.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1267
+  (2.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1268
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1269
+  (4.1ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1270
+  (5.1ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1271
+  (1.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1272
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1273
+  (0.3ms) SELECT DATABASE() as db
1274
+ Connecting to database specified by database.yml
1275
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1276
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1277
+  (0.7ms) BEGIN
1278
+ SQL (0.9ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:41:29', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:41:29')
1279
+  (1.5ms) COMMIT
1280
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1281
+  (0.3ms) BEGIN
1282
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:41:29', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:41:29')
1283
+  (0.6ms) COMMIT
1284
+ Connecting to database specified by database.yml
1285
+  (4.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1286
+  (3.5ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1287
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1288
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1289
+  (3.5ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1290
+  (44.6ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1291
+  (0.9ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1292
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1293
+  (0.3ms) SELECT DATABASE() as db
1294
+ Connecting to database specified by database.yml
1295
+  (2.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1296
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1297
+  (0.5ms) BEGIN
1298
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:42:09', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:42:09')
1299
+  (1.6ms) COMMIT
1300
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1301
+  (0.3ms) BEGIN
1302
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:42:09', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:42:09')
1303
+  (0.6ms) COMMIT
1304
+ Connecting to database specified by database.yml
1305
+  (5.7ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1306
+  (5.9ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1307
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1308
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1309
+  (3.6ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1310
+  (4.0ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1311
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1312
+  (0.4ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1313
+  (0.3ms) SELECT DATABASE() as db
1314
+ Connecting to database specified by database.yml
1315
+  (6.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1316
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1317
+  (0.7ms) BEGIN
1318
+ SQL (0.9ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:48:41', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:48:41')
1319
+  (2.7ms) COMMIT
1320
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1321
+  (0.5ms) BEGIN
1322
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:48:41', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:48:41')
1323
+  (0.7ms) COMMIT
1324
+ Connecting to database specified by database.yml
1325
+  (6.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1326
+  (4.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1327
+  (2.8ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1328
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1329
+  (3.6ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1330
+  (4.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1331
+  (0.9ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1332
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1333
+  (0.3ms) SELECT DATABASE() as db
1334
+ Connecting to database specified by database.yml
1335
+  (1.8ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1336
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1337
+  (0.5ms) BEGIN
1338
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:49:44', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:49:44')
1339
+  (1.4ms) COMMIT
1340
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1341
+  (0.3ms) BEGIN
1342
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:49:44', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:49:44')
1343
+  (0.7ms) COMMIT
1344
+ Connecting to database specified by database.yml
1345
+  (3.9ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1346
+  (3.5ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1347
+  (2.3ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1348
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1349
+  (3.3ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1350
+  (3.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1351
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1352
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1353
+  (0.3ms) SELECT DATABASE() as db
1354
+ Connecting to database specified by database.yml
1355
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1356
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1357
+  (0.6ms) BEGIN
1358
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:50:58', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:50:58')
1359
+  (1.5ms) COMMIT
1360
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1361
+  (0.3ms) BEGIN
1362
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:50:58', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:50:58')
1363
+  (0.7ms) COMMIT
1364
+ Connecting to database specified by database.yml
1365
+  (3.1ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
1366
+  (0.4ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
1367
+  (3.5ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB COLLATE=utf8_unicode_ci COMMENT='Pruebas de unsigned columns.'
1368
+  (4.3ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1369
+  (2.3ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1370
+  (3.5ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1371
+  (0.7ms) SELECT version FROM `schema_migrations`
1372
+  (1.0ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
1373
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1374
+ UnsignedColumnsTest Load (1.3ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1375
+  (0.5ms) BEGIN
1376
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:51:45', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:51:45')
1377
+  (1.4ms) COMMIT
1378
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1379
+  (0.5ms) BEGIN
1380
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:51:45', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:51:45')
1381
+  (0.6ms) COMMIT
1382
+ Connecting to database specified by database.yml
1383
+  (4.6ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1384
+  (3.6ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1385
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1386
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1387
+  (2.7ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1388
+  (4.5ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1389
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1390
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1391
+  (0.3ms) SELECT DATABASE() as db
1392
+ Connecting to database specified by database.yml
1393
+  (1.8ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1394
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1395
+  (0.5ms) BEGIN
1396
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:52:22', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:52:22')
1397
+  (1.5ms) COMMIT
1398
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1399
+  (0.3ms) BEGIN
1400
+ SQL (0.6ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:52:22', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:52:22')
1401
+  (0.6ms) COMMIT
1402
+ Connecting to database specified by database.yml
1403
+  (45.2ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
1404
+  (0.4ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
1405
+  (2.6ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB COLLATE=utf8_unicode_ci COMMENT='Pruebas de unsigned columns.'
1406
+  (4.5ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1407
+  (2.7ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1408
+  (3.2ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1409
+  (0.5ms) SELECT version FROM `schema_migrations`
1410
+  (0.7ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
1411
+  (2.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1412
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1413
+  (0.5ms) BEGIN
1414
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:52:36', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:52:36')
1415
+  (0.6ms) COMMIT
1416
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1417
+  (0.3ms) BEGIN
1418
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:52:36', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:52:36')
1419
+  (0.6ms) COMMIT
1420
+ Connecting to database specified by database.yml
1421
+  (3.8ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1422
+  (4.0ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1423
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1424
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1425
+  (3.4ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) COMMENT='Pruebas de unsigned columns.'
1426
+  (3.9ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1427
+  (0.8ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024034824')
1428
+  (0.5ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1429
+  (0.3ms) SELECT DATABASE() as db
1430
+ Connecting to database specified by database.yml
1431
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1432
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1433
+  (0.5ms) BEGIN
1434
+ SQL (0.8ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:59:46', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 08:59:46')
1435
+  (1.4ms) COMMIT
1436
+ UnsignedColumnsTest Load (0.8ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1437
+  (0.3ms) BEGIN
1438
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 08:59:46', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 08:59:46')
1439
+  (0.6ms) COMMIT
1440
+ Connecting to database specified by database.yml
1441
+  (3.1ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
1442
+  (0.4ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
1443
+  (3.6ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB COLLATE=utf8_unicode_ci COMMENT='Pruebas de unsigned columns.'
1444
+  (3.8ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1445
+  (2.2ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1446
+  (3.5ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1447
+  (0.7ms) SELECT version FROM `schema_migrations`
1448
+  (1.1ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
1449
+  (3.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1450
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1451
+  (0.5ms) BEGIN
1452
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 09:00:10', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 09:00:10')
1453
+  (5.3ms) COMMIT
1454
+ UnsignedColumnsTest Load (1.0ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1455
+  (0.3ms) BEGIN
1456
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 09:00:10', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 09:00:10')
1457
+  (0.6ms) COMMIT
1458
+ Connecting to database specified by database.yml
1459
+ Connecting to database specified by database.yml
1460
+  (1.9ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1461
+ Migrating to CreateUnsignedColumnsTests (20121024034824)
1462
+ Migrating to CreateJoinTableTest (20121024090232)
1463
+  (5.7ms) CREATE TABLE `join_table_tests` (`object_a_id` smallint UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned (A).', `object_b_id` smallint UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned (B).') COMMENT='Pruebas de join_table (:id => false).'
1464
+  (4.1ms) CREATE INDEX `FK_join_table_test_a` ON `join_table_tests` (`object_a_id`)
1465
+  (4.0ms) CREATE INDEX `FK_join_table_test_b` ON `join_table_tests` (`object_b_id`)
1466
+  (0.9ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20121024090232')
1467
+  (0.6ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
1468
+  (0.6ms) SELECT DATABASE() as db
1469
+  (0.7ms) SELECT DATABASE() as db
1470
+ Connecting to database specified by database.yml
1471
+  (4.6ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
1472
+  (0.5ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
1473
+  (26.7ms) CREATE TABLE `join_table_tests` (`object_a_id` smallint UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned (A).', `object_b_id` smallint UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned (B).') ENGINE=InnoDB COLLATE=utf8_unicode_ci COMMENT='Pruebas de join_table (:id => false).'
1474
+  (7.5ms) CREATE INDEX `FK_join_table_test_a` ON `join_table_tests` (`object_a_id`)
1475
+  (14.6ms) CREATE INDEX `FK_join_table_test_b` ON `join_table_tests` (`object_b_id`)
1476
+  (7.8ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB COLLATE=utf8_unicode_ci COMMENT='Pruebas de unsigned columns.'
1477
+  (7.0ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1478
+  (6.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1479
+  (5.4ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1480
+  (0.6ms) SELECT version FROM `schema_migrations`
1481
+  (0.8ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024090232')
1482
+  (0.5ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
1483
+  (2.0ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1484
+ UnsignedColumnsTest Load (3.6ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1485
+  (0.6ms) BEGIN
1486
+ SQL (1.1ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 09:08:11', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 09:08:11')
1487
+  (1.8ms) COMMIT
1488
+ UnsignedColumnsTest Load (1.1ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1489
+  (0.4ms) BEGIN
1490
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 09:08:11', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 09:08:11')
1491
+  (0.8ms) COMMIT
1492
+ Connecting to database specified by database.yml
1493
+  (4.2ms) DROP DATABASE IF EXISTS `numeric_type_column_test`
1494
+  (0.4ms) CREATE DATABASE `numeric_type_column_test` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`
1495
+  (3.9ms) CREATE TABLE `join_table_tests` (`object_a_id` smallint UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned (A).', `object_b_id` smallint UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned (B).') ENGINE=InnoDB COLLATE=utf8_unicode_ci COMMENT='Pruebas de join_table (:id => false).'
1496
+  (3.7ms) CREATE INDEX `FK_join_table_test_a` ON `join_table_tests` (`object_a_id`)
1497
+  (4.1ms) CREATE INDEX `FK_join_table_test_b` ON `join_table_tests` (`object_b_id`)
1498
+  (2.4ms) CREATE TABLE `unsigned_columns_tests` (`id` INT UNSIGNED DEFAULT NULL auto_increment PRIMARY KEY, `integer_unsigned_column` smallint UNSIGNED COMMENT 'Prueba con columna tipo Integer Unsigned.', `integer_signed_column` smallint COMMENT 'Prueba con columna tipo Integer.', `string_column` varchar(24) COMMENT 'Prueba con columna tipo String.', `decimal_unsigned_column` decimal(4,2) UNSIGNED COMMENT 'Prueba con columna tipo Decimal Unsigned.', `unsigned_float_column` float UNSIGNED COMMENT 'Prueba con columna tipo Float Unsigned.', `boolean_unsigned_column` tinyint(1) UNSIGNED COMMENT 'Prueba con columna tipo Boolean Unsigned.', `references_unsigned_column_id` int(11) UNSIGNED COMMENT 'Prueba con columna tipo References Unsigned.', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL) ENGINE=InnoDB COLLATE=utf8_unicode_ci COMMENT='Pruebas de unsigned columns.'
1499
+  (5.9ms) CREATE INDEX `FK_unsigned_references_column_test` ON `unsigned_columns_tests` (`references_unsigned_column_id`)
1500
+  (8.4ms) CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB
1501
+  (3.2ms) CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
1502
+  (1.0ms) SELECT version FROM `schema_migrations`
1503
+  (0.9ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024090232')
1504
+  (0.5ms) INSERT INTO `schema_migrations` (version) VALUES ('20121024034824')
1505
+  (2.2ms) SELECT `schema_migrations`.`version` FROM `schema_migrations` 
1506
+ UnsignedColumnsTest Load (0.9ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = 1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 1' AND `unsigned_columns_tests`.`decimal_unsigned_column` = 66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = 33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = 23 LIMIT 1
1507
+  (0.6ms) BEGIN
1508
+ SQL (0.7ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 09:12:39', 66.669, -1, 1, 23, 'Prueba 1', 33.334, '2012-10-24 09:12:39')
1509
+  (0.6ms) COMMIT
1510
+ UnsignedColumnsTest Load (0.7ms) SELECT `unsigned_columns_tests`.* FROM `unsigned_columns_tests` WHERE `unsigned_columns_tests`.`integer_unsigned_column` = -1 AND `unsigned_columns_tests`.`integer_signed_column` = -1 AND `unsigned_columns_tests`.`string_column` = 'Prueba 2' AND `unsigned_columns_tests`.`decimal_unsigned_column` = -66.669 AND `unsigned_columns_tests`.`unsigned_float_column` = -33.334 AND `unsigned_columns_tests`.`boolean_unsigned_column` = 0 AND `unsigned_columns_tests`.`references_unsigned_column_id` = -23 LIMIT 1
1511
+  (0.3ms) BEGIN
1512
+ SQL (0.5ms) INSERT INTO `unsigned_columns_tests` (`boolean_unsigned_column`, `created_at`, `decimal_unsigned_column`, `integer_signed_column`, `integer_unsigned_column`, `references_unsigned_column_id`, `string_column`, `unsigned_float_column`, `updated_at`) VALUES (0, '2012-10-24 09:12:39', -66.669, -1, -1, -23, 'Prueba 2', -33.334, '2012-10-24 09:12:39')
1513
+  (0.5ms) COMMIT