visual_migrate 4.0.1.3 → 4.0.1.4
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.
- checksums.yaml +4 -4
- data/app/views/layouts/visual_migrate/_columns.html.erb +18 -18
- data/lib/visual_migrate/version.rb +1 -1
- data/test/dummy/log/development.log +462 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2102c79117491138e9c986a9216973cd23d8859f
|
4
|
+
data.tar.gz: e3cb2a19a95d480d6523931a42f3e9ad3526b199
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7670b483673cbe9d03b748fd7e6b2bfd2f46e70f0d2c9bbb29846c91a528dcfe72890fec26b860d73cf91341e44a4022ac33f8914b5c1c320fca8d8ce36c8b1b
|
7
|
+
data.tar.gz: e713e1d7178ceffc4f64df1179693b22542070e4d4ef7f843c0665c37f49b57c0cf5d75a040290652188825913632944e0bb2bfda24ec188ba8b481a55b39d51
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<table id=
|
1
|
+
<table id="<%= "_columns_#{@migration_method.name}_#{@migration_func.name}" %>" border="0" style="margin-left:2em;">
|
2
2
|
<tr>
|
3
3
|
<th>delete</th>
|
4
4
|
<th>Type</th>
|
@@ -9,18 +9,18 @@
|
|
9
9
|
</tr>
|
10
10
|
<% @columns.each do |col| %>
|
11
11
|
<tr>
|
12
|
-
<td><%= check_box_tag
|
13
|
-
<td><%= type_select
|
14
|
-
<td><%= text_field_tag
|
15
|
-
<td><%= text_field_tag
|
16
|
-
<td><%= text_field_tag
|
17
|
-
<td><%= check_box_tag
|
18
|
-
<td><%= text_field_tag
|
19
|
-
<td><%= text_field_tag
|
12
|
+
<td><%= check_box_tag "[methods][#{@migration_method.name}][funcs][#{@migration_func.name}][columns][" + (col.name.blank? ? 'timestamps' : col.name) + '][delete]', true, false %></td>
|
13
|
+
<td><%= type_select "[methods][#{@migration_method.name}][funcs][#{@migration_func.name}][columns][" + (col.name.blank? ? 'timestamps' : col.name) + '][type]', col.type %></td>
|
14
|
+
<td><%= text_field_tag "[methods][#{@migration_method.name}][funcs][#{@migration_func.name}][columns][" + (col.name.blank? ? 'timestamps' : col.name) + '][name]', col.name, :readonly => true %></td>
|
15
|
+
<td><%= text_field_tag "[methods][#{@migration_method.name}][funcs][#{@migration_func.name}][columns][" + (col.name.blank? ? 'timestamps' : col.name) + '][limit]', col.option.limit if !col.option.nil? %></td>
|
16
|
+
<td><%= text_field_tag "[methods][#{@migration_method.name}][funcs][#{@migration_func.name}][columns][" + (col.name.blank? ? 'timestamps' : col.name) + '][default]', col.option.default if !col.option.nil? %></td>
|
17
|
+
<td><%= check_box_tag "[methods][#{@migration_method.name}][funcs][#{@migration_func.name}][columns][" + (col.name.blank? ? 'timestamps' : col.name) + '][null]', true, col.option.null if !col.option.nil? %></td>
|
18
|
+
<td><%= text_field_tag "[methods][#{@migration_method.name}][funcs][#{@migration_func.name}][columns][" + (col.name.blank? ? 'timestamps' : col.name) + '][precision]', col.option.precision if !col.option.nil? %></td>
|
19
|
+
<td><%= text_field_tag "[methods][#{@migration_method.name}][funcs][#{@migration_func.name}][columns][" + (col.name.blank? ? 'timestamps' : col.name) + '][scale]', col.option.scale if !col.option.nil? %></td>
|
20
20
|
</tr>
|
21
21
|
<% end %>
|
22
22
|
</table>
|
23
|
-
<input onclick="<%= "deleteTableRow(
|
23
|
+
<input onclick="<%= "deleteTableRow('_columns_#{@migration_method.name}_#{@migration_func.name}')" %>" type="button" value="delete_column">
|
24
24
|
<br /><br />
|
25
25
|
<table id=[new_column][<%= @migration_method.name %>][table] border="0" style="margin-left:2em;">
|
26
26
|
<tr>
|
@@ -31,16 +31,16 @@
|
|
31
31
|
<% end %>
|
32
32
|
</tr>
|
33
33
|
<tr>
|
34
|
-
<td><%= type_select
|
35
|
-
<td><%= text_field_tag
|
36
|
-
<td><%= text_field_tag
|
37
|
-
<td><%= text_field_tag
|
38
|
-
<td><%= check_box_tag
|
39
|
-
<td><%= text_field_tag
|
40
|
-
<td><%= text_field_tag
|
34
|
+
<td><%= type_select "[new_column][#{@migration_method.name}][#{@migration_func.name}][type]" %></td>
|
35
|
+
<td><%= text_field_tag "[new_column][#{@migration_method.name}][#{@migration_func.name}][name]" %></td>
|
36
|
+
<td><%= text_field_tag "[new_column][#{@migration_method.name}][#{@migration_func.name}][limit]" %></td>
|
37
|
+
<td><%= text_field_tag "[new_column][#{@migration_method.name}][#{@migration_func.name}][default]", "''" %></td>
|
38
|
+
<td><%= check_box_tag "[new_column][#{@migration_method.name}][#{@migration_func.name}][null]", true, true %></td>
|
39
|
+
<td><%= text_field_tag "[new_column][#{@migration_method.name}][#{@migration_func.name}][precision]" %></td>
|
40
|
+
<td><%= text_field_tag "[new_column][#{@migration_method.name}][#{@migration_func.name}][scale]" %></td>
|
41
41
|
</tr>
|
42
42
|
</table>
|
43
|
-
<input onclick="<%= "addColumn_
|
43
|
+
<input onclick="<%= "addColumn_#{@migration_method.name}_#{@migration_func.name}('_columns_#{@migration_method.name}_#{@migration_func.name}');" %>" type="button" value="add_column">
|
44
44
|
<%#= button_to_function :add_column, 'addColumn_' + @migration_method.name + '_("_columns_' + @migration_method.name + '_");' %>
|
45
45
|
|
46
46
|
<script type="text/javascript">
|
@@ -242,3 +242,465 @@ on_nl2-----false / false / true-----
|
|
242
242
|
[1m[36mSchemaMigration Load (0.3ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1[0m
|
243
243
|
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (54.9ms)
|
244
244
|
Completed 200 OK in 143ms (Views: 109.5ms | ActiveRecord: 7.8ms)
|
245
|
+
|
246
|
+
|
247
|
+
Started GET "/" for 127.0.0.1 at 2013-11-16 19:14:25 +0900
|
248
|
+
Processing by IndexController#index as HTML
|
249
|
+
Rendered index/index.html.erb within layouts/application (3.0ms)
|
250
|
+
Completed 200 OK in 185ms (Views: 166.5ms | ActiveRecord: 17.8ms)
|
251
|
+
|
252
|
+
|
253
|
+
Started GET "/assets/common.css?body=1" for 127.0.0.1 at 2013-11-16 19:14:26 +0900
|
254
|
+
|
255
|
+
ActionController::RoutingError (No route matches [GET] "/assets/common.css"):
|
256
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
257
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
258
|
+
railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
|
259
|
+
railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
|
260
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
261
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
262
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
263
|
+
railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
|
264
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
265
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
266
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
267
|
+
activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
268
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
269
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
270
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
271
|
+
railties (4.0.1) lib/rails/engine.rb:511:in `call'
|
272
|
+
railties (4.0.1) lib/rails/application.rb:97:in `call'
|
273
|
+
/Users/js/Library/Application Support/Pow/Versions/0.4.1/node_modules/nack/lib/nack/server.rb:145:in `handle'
|
274
|
+
/Users/js/Library/Application Support/Pow/Versions/0.4.1/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start'
|
275
|
+
/Users/js/Library/Application Support/Pow/Versions/0.4.1/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start'
|
276
|
+
/Users/js/Library/Application Support/Pow/Versions/0.4.1/node_modules/nack/lib/nack/server.rb:86:in `each'
|
277
|
+
/Users/js/Library/Application Support/Pow/Versions/0.4.1/node_modules/nack/lib/nack/server.rb:86:in `block in start'
|
278
|
+
/Users/js/Library/Application Support/Pow/Versions/0.4.1/node_modules/nack/lib/nack/server.rb:66:in `loop'
|
279
|
+
/Users/js/Library/Application Support/Pow/Versions/0.4.1/node_modules/nack/lib/nack/server.rb:66:in `start'
|
280
|
+
/Users/js/Library/Application Support/Pow/Versions/0.4.1/node_modules/nack/lib/nack/server.rb:13:in `run'
|
281
|
+
/Users/js/Library/Application Support/Pow/Versions/0.4.1/node_modules/nack/bin/nack_worker:4:in `<main>'
|
282
|
+
|
283
|
+
|
284
|
+
Rendered /Users/js/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (8.1ms)
|
285
|
+
Rendered /Users/js/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
|
286
|
+
Rendered /Users/js/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
|
287
|
+
Rendered /Users/js/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (222.8ms)
|
288
|
+
Rendered /Users/js/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (444.3ms)
|
289
|
+
|
290
|
+
|
291
|
+
Started GET "/assets/index.css?body=1" for 127.0.0.1 at 2013-11-16 19:14:27 +0900
|
292
|
+
|
293
|
+
|
294
|
+
Started GET "/assets/index.js?body=1" for 127.0.0.1 at 2013-11-16 19:14:28 +0900
|
295
|
+
|
296
|
+
|
297
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-11-16 19:14:29 +0900
|
298
|
+
|
299
|
+
|
300
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-11-16 19:14:32 +0900
|
301
|
+
|
302
|
+
|
303
|
+
Started GET "/visual_migrate/" for 127.0.0.1 at 2013-11-16 19:14:40 +0900
|
304
|
+
Processing by VisualMigrate::IndexController#index as HTML
|
305
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (0.7ms)
|
306
|
+
[1m[36mSchemaMigration Load (0.5ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1[0m
|
307
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1
|
308
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1[0m
|
309
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1
|
310
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1[0m
|
311
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1
|
312
|
+
[1m[36mSchemaMigration Load (0.3ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1[0m
|
313
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (64.9ms)
|
314
|
+
Completed 200 OK in 555ms (Views: 549.7ms | ActiveRecord: 4.8ms)
|
315
|
+
|
316
|
+
|
317
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-16 19:14:41 +0900
|
318
|
+
|
319
|
+
|
320
|
+
Started GET "/visual_migrate/" for 127.0.0.1 at 2013-11-21 00:42:12 +0900
|
321
|
+
Processing by VisualMigrate::IndexController#index as HTML
|
322
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (2.3ms)
|
323
|
+
[1m[36mSchemaMigration Load (0.5ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1[0m
|
324
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1
|
325
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1[0m
|
326
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1
|
327
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1[0m
|
328
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1
|
329
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1[0m
|
330
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (122.2ms)
|
331
|
+
Completed 200 OK in 377ms (Views: 306.7ms | ActiveRecord: 70.0ms)
|
332
|
+
|
333
|
+
|
334
|
+
Started GET "/assets/visual_migrate/application.css?body=1" for 127.0.0.1 at 2013-11-21 00:42:13 +0900
|
335
|
+
|
336
|
+
|
337
|
+
Started GET "/assets/visual_migrate/index.css?body=1" for 127.0.0.1 at 2013-11-21 00:42:13 +0900
|
338
|
+
|
339
|
+
|
340
|
+
Started GET "/assets/visual_migrate/dialog.css?body=1" for 127.0.0.1 at 2013-11-21 00:42:13 +0900
|
341
|
+
|
342
|
+
|
343
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 00:42:13 +0900
|
344
|
+
|
345
|
+
|
346
|
+
Started GET "/assets/vm-application.css?body=1" for 127.0.0.1 at 2013-11-21 00:42:19 +0900
|
347
|
+
|
348
|
+
|
349
|
+
Started GET "/assets/vm-application.js?body=1" for 127.0.0.1 at 2013-11-21 00:42:19 +0900
|
350
|
+
|
351
|
+
|
352
|
+
Started GET "/assets/vm-common.css?body=1" for 127.0.0.1 at 2013-11-21 00:42:19 +0900
|
353
|
+
|
354
|
+
|
355
|
+
Started GET "/assets/jquery.cookie.js?body=1" for 127.0.0.1 at 2013-11-21 00:42:19 +0900
|
356
|
+
|
357
|
+
|
358
|
+
Started GET "/visual_migrate/index/edit_migration/20131006135044_create_test_tables" for 127.0.0.1 at 2013-11-21 00:42:25 +0900
|
359
|
+
Processing by VisualMigrate::IndexController#edit_migration as HTML
|
360
|
+
Parameters: {"id"=>"20131006135044_create_test_tables"}
|
361
|
+
on_nl2-----false / false / true-----
|
362
|
+
on_nl2-----true / true / true-----
|
363
|
+
on_nl2-----true / true / true-----
|
364
|
+
on_nl2-----true / true / true-----
|
365
|
+
on_nl2-----false / false / true-----
|
366
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_columns.html.erb (5.2ms)
|
367
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_func_create_table.html.erb (47.7ms)
|
368
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (50.4ms)
|
369
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
370
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
371
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_class.html.erb (55.1ms)
|
372
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (58.6ms)
|
373
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1
|
374
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1[0m
|
375
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1
|
376
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1[0m
|
377
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1
|
378
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1[0m
|
379
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1
|
380
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (5.5ms)
|
381
|
+
Completed 200 OK in 529ms (Views: 184.1ms | ActiveRecord: 1.4ms)
|
382
|
+
|
383
|
+
|
384
|
+
Started GET "/visual_migrate/index/edit_migration/20131006135044_create_test_tables" for 127.0.0.1 at 2013-11-21 00:50:50 +0900
|
385
|
+
Processing by VisualMigrate::IndexController#edit_migration as HTML
|
386
|
+
Parameters: {"id"=>"20131006135044_create_test_tables"}
|
387
|
+
on_nl2-----false / false / true-----
|
388
|
+
on_nl2-----true / true / true-----
|
389
|
+
on_nl2-----true / true / true-----
|
390
|
+
on_nl2-----true / true / true-----
|
391
|
+
on_nl2-----false / false / true-----
|
392
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_columns.html.erb (44.0ms)
|
393
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_func_create_table.html.erb (63.4ms)
|
394
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (66.9ms)
|
395
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
396
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.5ms)
|
397
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_class.html.erb (73.0ms)
|
398
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (129.7ms)
|
399
|
+
[1m[36mSchemaMigration Load (0.4ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1[0m
|
400
|
+
[1m[35mSchemaMigration Load (0.6ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1
|
401
|
+
[1m[36mSchemaMigration Load (0.4ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1[0m
|
402
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1
|
403
|
+
[1m[36mSchemaMigration Load (0.3ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1[0m
|
404
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1
|
405
|
+
[1m[36mSchemaMigration Load (0.3ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1[0m
|
406
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (149.0ms)
|
407
|
+
Completed 200 OK in 470ms (Views: 363.1ms | ActiveRecord: 80.1ms)
|
408
|
+
|
409
|
+
|
410
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 00:50:51 +0900
|
411
|
+
|
412
|
+
|
413
|
+
Started GET "/visual_migrate/index/edit_migration/20131006135044_create_test_tables" for 127.0.0.1 at 2013-11-21 00:53:55 +0900
|
414
|
+
Processing by VisualMigrate::IndexController#edit_migration as HTML
|
415
|
+
Parameters: {"id"=>"20131006135044_create_test_tables"}
|
416
|
+
on_nl2-----false / false / true-----
|
417
|
+
on_nl2-----true / true / true-----
|
418
|
+
on_nl2-----true / true / true-----
|
419
|
+
on_nl2-----true / true / true-----
|
420
|
+
on_nl2-----false / false / true-----
|
421
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_columns.html.erb (5.8ms)
|
422
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_func_create_table.html.erb (7.2ms)
|
423
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (8.6ms)
|
424
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
425
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.4ms)
|
426
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_class.html.erb (12.0ms)
|
427
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (14.5ms)
|
428
|
+
[1m[35mSchemaMigration Load (0.4ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1
|
429
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1[0m
|
430
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1
|
431
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1[0m
|
432
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1
|
433
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1[0m
|
434
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1
|
435
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (6.5ms)
|
436
|
+
Completed 200 OK in 55ms (Views: 27.6ms | ActiveRecord: 1.5ms)
|
437
|
+
|
438
|
+
|
439
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 00:53:55 +0900
|
440
|
+
|
441
|
+
|
442
|
+
Started GET "/visual_migrate/index/edit_migration/20131006135044_create_test_tables" for 127.0.0.1 at 2013-11-21 00:54:10 +0900
|
443
|
+
Processing by VisualMigrate::IndexController#edit_migration as HTML
|
444
|
+
Parameters: {"id"=>"20131006135044_create_test_tables"}
|
445
|
+
on_nl2-----false / false / true-----
|
446
|
+
on_nl2-----true / true / true-----
|
447
|
+
on_nl2-----true / true / true-----
|
448
|
+
on_nl2-----true / true / true-----
|
449
|
+
on_nl2-----false / false / true-----
|
450
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_columns.html.erb (3.0ms)
|
451
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_func_create_table.html.erb (4.1ms)
|
452
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (5.1ms)
|
453
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
454
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
455
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_class.html.erb (38.7ms)
|
456
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (40.6ms)
|
457
|
+
[1m[36mSchemaMigration Load (0.3ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1[0m
|
458
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1
|
459
|
+
[1m[36mSchemaMigration Load (0.3ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1[0m
|
460
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1
|
461
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1[0m
|
462
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1
|
463
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1[0m
|
464
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (7.5ms)
|
465
|
+
Completed 200 OK in 59ms (Views: 54.2ms | ActiveRecord: 1.7ms)
|
466
|
+
|
467
|
+
|
468
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 00:54:10 +0900
|
469
|
+
|
470
|
+
|
471
|
+
Started GET "/visual_migrate/index/edit_migration/20131006135044_create_test_tables" for 127.0.0.1 at 2013-11-21 00:57:14 +0900
|
472
|
+
Processing by VisualMigrate::IndexController#edit_migration as HTML
|
473
|
+
Parameters: {"id"=>"20131006135044_create_test_tables"}
|
474
|
+
on_nl2-----false / false / true-----
|
475
|
+
on_nl2-----true / true / true-----
|
476
|
+
on_nl2-----true / true / true-----
|
477
|
+
on_nl2-----true / true / true-----
|
478
|
+
on_nl2-----false / false / true-----
|
479
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_columns.html.erb (5.6ms)
|
480
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_func_create_table.html.erb (7.3ms)
|
481
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (8.3ms)
|
482
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
483
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
484
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_class.html.erb (11.6ms)
|
485
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (13.4ms)
|
486
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1
|
487
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1[0m
|
488
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1
|
489
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1[0m
|
490
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1
|
491
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1[0m
|
492
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1
|
493
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (6.6ms)
|
494
|
+
Completed 200 OK in 28ms (Views: 24.2ms | ActiveRecord: 1.6ms)
|
495
|
+
|
496
|
+
|
497
|
+
Started GET "/assets/vm-application.css?body=1" for 127.0.0.1 at 2013-11-21 00:57:14 +0900
|
498
|
+
|
499
|
+
|
500
|
+
Started GET "/assets/visual_migrate/dialog.css?body=1" for 127.0.0.1 at 2013-11-21 00:57:14 +0900
|
501
|
+
|
502
|
+
|
503
|
+
Started GET "/assets/vm-common.css?body=1" for 127.0.0.1 at 2013-11-21 00:57:14 +0900
|
504
|
+
|
505
|
+
|
506
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 00:57:14 +0900
|
507
|
+
|
508
|
+
|
509
|
+
Started GET "/visual_migrate/index/edit_migration/20131006135044_create_test_tables" for 127.0.0.1 at 2013-11-21 01:04:42 +0900
|
510
|
+
Processing by VisualMigrate::IndexController#edit_migration as HTML
|
511
|
+
Parameters: {"id"=>"20131006135044_create_test_tables"}
|
512
|
+
on_nl2-----false / false / true-----
|
513
|
+
on_nl2-----true / true / true-----
|
514
|
+
on_nl2-----true / true / true-----
|
515
|
+
on_nl2-----true / true / true-----
|
516
|
+
on_nl2-----false / false / true-----
|
517
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_columns.html.erb (31.3ms)
|
518
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_func_create_table.html.erb (33.6ms)
|
519
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (36.1ms)
|
520
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
521
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
522
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_class.html.erb (40.5ms)
|
523
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (97.1ms)
|
524
|
+
[1m[36mSchemaMigration Load (0.5ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1[0m
|
525
|
+
[1m[35mSchemaMigration Load (0.4ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1
|
526
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1[0m
|
527
|
+
[1m[35mSchemaMigration Load (0.4ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1
|
528
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1[0m
|
529
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1
|
530
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1[0m
|
531
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (157.1ms)
|
532
|
+
Completed 200 OK in 445ms (Views: 315.0ms | ActiveRecord: 102.9ms)
|
533
|
+
|
534
|
+
|
535
|
+
Started GET "/assets/vm-application.css?body=1" for 127.0.0.1 at 2013-11-21 01:04:43 +0900
|
536
|
+
|
537
|
+
|
538
|
+
Started GET "/assets/visual_migrate/application.css?body=1" for 127.0.0.1 at 2013-11-21 01:04:43 +0900
|
539
|
+
|
540
|
+
|
541
|
+
Started GET "/assets/visual_migrate/index.css?body=1" for 127.0.0.1 at 2013-11-21 01:04:43 +0900
|
542
|
+
|
543
|
+
|
544
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 01:04:43 +0900
|
545
|
+
|
546
|
+
|
547
|
+
Started GET "/assets/visual_migrate/dialog.css?body=1" for 127.0.0.1 at 2013-11-21 01:04:46 +0900
|
548
|
+
|
549
|
+
|
550
|
+
Started GET "/assets/vm-common.css?body=1" for 127.0.0.1 at 2013-11-21 01:04:46 +0900
|
551
|
+
|
552
|
+
|
553
|
+
Started GET "/assets/vm-application.js?body=1" for 127.0.0.1 at 2013-11-21 01:04:46 +0900
|
554
|
+
|
555
|
+
|
556
|
+
Started GET "/assets/jquery.cookie.js?body=1" for 127.0.0.1 at 2013-11-21 01:04:46 +0900
|
557
|
+
|
558
|
+
|
559
|
+
Started GET "/visual_migrate/index/edit_migration/20131006135044_create_test_tables" for 127.0.0.1 at 2013-11-21 01:13:52 +0900
|
560
|
+
Processing by VisualMigrate::IndexController#edit_migration as HTML
|
561
|
+
Parameters: {"id"=>"20131006135044_create_test_tables"}
|
562
|
+
on_nl2-----false / false / true-----
|
563
|
+
on_nl2-----true / true / true-----
|
564
|
+
on_nl2-----true / true / true-----
|
565
|
+
on_nl2-----true / true / true-----
|
566
|
+
on_nl2-----false / false / true-----
|
567
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_columns.html.erb (6.1ms)
|
568
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_func_create_table.html.erb (7.6ms)
|
569
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (9.2ms)
|
570
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.4ms)
|
571
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
572
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_class.html.erb (12.8ms)
|
573
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (49.0ms)
|
574
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1
|
575
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1[0m
|
576
|
+
[1m[35mSchemaMigration Load (0.3ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1
|
577
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1[0m
|
578
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1
|
579
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1[0m
|
580
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1
|
581
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (6.2ms)
|
582
|
+
Completed 200 OK in 89ms (Views: 61.3ms | ActiveRecord: 1.6ms)
|
583
|
+
|
584
|
+
|
585
|
+
Started GET "/assets/vm-application.css?body=1" for 127.0.0.1 at 2013-11-21 01:13:52 +0900
|
586
|
+
|
587
|
+
|
588
|
+
Started GET "/assets/visual_migrate/dialog.css?body=1" for 127.0.0.1 at 2013-11-21 01:13:52 +0900
|
589
|
+
|
590
|
+
|
591
|
+
Started GET "/assets/visual_migrate/index.css?body=1" for 127.0.0.1 at 2013-11-21 01:13:52 +0900
|
592
|
+
|
593
|
+
|
594
|
+
Started GET "/assets/visual_migrate/application.css?body=1" for 127.0.0.1 at 2013-11-21 01:13:52 +0900
|
595
|
+
|
596
|
+
|
597
|
+
Started GET "/assets/vm-common.css?body=1" for 127.0.0.1 at 2013-11-21 01:13:52 +0900
|
598
|
+
|
599
|
+
|
600
|
+
Started GET "/assets/vm-application.js?body=1" for 127.0.0.1 at 2013-11-21 01:13:52 +0900
|
601
|
+
|
602
|
+
|
603
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 01:13:52 +0900
|
604
|
+
|
605
|
+
|
606
|
+
Started GET "/assets/jquery.cookie.js?body=1" for 127.0.0.1 at 2013-11-21 01:13:52 +0900
|
607
|
+
|
608
|
+
|
609
|
+
Started GET "/visual_migrate/index/edit_migration/20131006135044_create_test_tables" for 127.0.0.1 at 2013-11-21 01:15:26 +0900
|
610
|
+
Processing by VisualMigrate::IndexController#edit_migration as HTML
|
611
|
+
Parameters: {"id"=>"20131006135044_create_test_tables"}
|
612
|
+
on_nl2-----false / false / true-----
|
613
|
+
on_nl2-----true / true / true-----
|
614
|
+
on_nl2-----true / true / true-----
|
615
|
+
on_nl2-----true / true / true-----
|
616
|
+
on_nl2-----false / false / true-----
|
617
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_columns.html.erb (8.0ms)
|
618
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_func_create_table.html.erb (9.2ms)
|
619
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (10.3ms)
|
620
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
621
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.4ms)
|
622
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_class.html.erb (13.7ms)
|
623
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (15.9ms)
|
624
|
+
[1m[36mSchemaMigration Load (0.3ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1[0m
|
625
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1
|
626
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1[0m
|
627
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1
|
628
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1[0m
|
629
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1
|
630
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1[0m
|
631
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (5.8ms)
|
632
|
+
Completed 200 OK in 30ms (Views: 26.8ms | ActiveRecord: 1.5ms)
|
633
|
+
|
634
|
+
|
635
|
+
Started GET "/assets/vm-application.css?body=1" for 127.0.0.1 at 2013-11-21 01:15:27 +0900
|
636
|
+
|
637
|
+
|
638
|
+
Started GET "/assets/visual_migrate/application.css?body=1" for 127.0.0.1 at 2013-11-21 01:15:27 +0900
|
639
|
+
|
640
|
+
|
641
|
+
Started GET "/assets/visual_migrate/index.css?body=1" for 127.0.0.1 at 2013-11-21 01:15:27 +0900
|
642
|
+
|
643
|
+
|
644
|
+
Started GET "/assets/vm-application.js?body=1" for 127.0.0.1 at 2013-11-21 01:15:27 +0900
|
645
|
+
|
646
|
+
|
647
|
+
Started GET "/assets/visual_migrate/dialog.css?body=1" for 127.0.0.1 at 2013-11-21 01:15:27 +0900
|
648
|
+
|
649
|
+
|
650
|
+
Started GET "/assets/jquery.cookie.js?body=1" for 127.0.0.1 at 2013-11-21 01:15:27 +0900
|
651
|
+
|
652
|
+
|
653
|
+
Started GET "/assets/vm-common.css?body=1" for 127.0.0.1 at 2013-11-21 01:15:27 +0900
|
654
|
+
|
655
|
+
|
656
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 01:15:27 +0900
|
657
|
+
|
658
|
+
|
659
|
+
Started GET "/visual_migrate/index/edit_migration/20131006135044_create_test_tables" for 127.0.0.1 at 2013-11-21 01:20:10 +0900
|
660
|
+
Processing by VisualMigrate::IndexController#edit_migration as HTML
|
661
|
+
Parameters: {"id"=>"20131006135044_create_test_tables"}
|
662
|
+
on_nl2-----false / false / true-----
|
663
|
+
on_nl2-----true / true / true-----
|
664
|
+
on_nl2-----true / true / true-----
|
665
|
+
on_nl2-----true / true / true-----
|
666
|
+
on_nl2-----false / false / true-----
|
667
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_columns.html.erb (5.8ms)
|
668
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_func_create_table.html.erb (6.9ms)
|
669
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (8.0ms)
|
670
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
671
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_method.html.erb (0.3ms)
|
672
|
+
Rendered /Users/js/work/visual_migrate/app/views/layouts/visual_migrate/_migration_class.html.erb (10.9ms)
|
673
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/edit_migration.html.erb within layouts/visual_migrate/application (12.4ms)
|
674
|
+
[1m[35mSchemaMigration Load (0.4ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105042853' LIMIT 1
|
675
|
+
[1m[36mSchemaMigration Load (0.3ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131105025821' LIMIT 1[0m
|
676
|
+
[1m[35mSchemaMigration Load (0.4ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131104225745' LIMIT 1
|
677
|
+
[1m[36mSchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131030105601' LIMIT 1[0m
|
678
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131026214458' LIMIT 1
|
679
|
+
[1m[36mSchemaMigration Load (0.3ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131007030825' LIMIT 1[0m
|
680
|
+
[1m[35mSchemaMigration Load (0.2ms)[0m SELECT `schema_migrations`.* FROM `schema_migrations` WHERE `schema_migrations`.`version` = '20131006135044' LIMIT 1
|
681
|
+
Rendered /Users/js/work/visual_migrate/app/views/visual_migrate/index/_section_migrations.html.erb (7.2ms)
|
682
|
+
Completed 200 OK in 27ms (Views: 23.0ms | ActiveRecord: 1.9ms)
|
683
|
+
|
684
|
+
|
685
|
+
Started GET "/assets/vm-application.css?body=1" for 127.0.0.1 at 2013-11-21 01:20:10 +0900
|
686
|
+
|
687
|
+
|
688
|
+
Started GET "/assets/visual_migrate/dialog.css?body=1" for 127.0.0.1 at 2013-11-21 01:20:10 +0900
|
689
|
+
|
690
|
+
|
691
|
+
Started GET "/assets/visual_migrate/application.css?body=1" for 127.0.0.1 at 2013-11-21 01:20:10 +0900
|
692
|
+
|
693
|
+
|
694
|
+
Started GET "/assets/visual_migrate/index.css?body=1" for 127.0.0.1 at 2013-11-21 01:20:10 +0900
|
695
|
+
|
696
|
+
|
697
|
+
Started GET "/assets/vm-common.css?body=1" for 127.0.0.1 at 2013-11-21 01:20:10 +0900
|
698
|
+
|
699
|
+
|
700
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-11-21 01:20:10 +0900
|
701
|
+
|
702
|
+
|
703
|
+
Started GET "/assets/vm-application.js?body=1" for 127.0.0.1 at 2013-11-21 01:20:10 +0900
|
704
|
+
|
705
|
+
|
706
|
+
Started GET "/assets/jquery.cookie.js?body=1" for 127.0.0.1 at 2013-11-21 01:20:10 +0900
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: visual_migrate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.1.
|
4
|
+
version: 4.0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jun'ya Shimoda(JironBach)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11-
|
11
|
+
date: 2013-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|