walruz-rails 0.0.3

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 (83) hide show
  1. data/LICENSE +20 -0
  2. data/README.rdoc +31 -0
  3. data/Rakefile +49 -0
  4. data/VERSION.yml +4 -0
  5. data/examples/rails/README +243 -0
  6. data/examples/rails/Rakefile +10 -0
  7. data/examples/rails/app/controllers/application_controller.rb +10 -0
  8. data/examples/rails/app/helpers/application_helper.rb +3 -0
  9. data/examples/rails/app/models/beatle.rb +26 -0
  10. data/examples/rails/app/models/colaboration.rb +6 -0
  11. data/examples/rails/app/models/song.rb +10 -0
  12. data/examples/rails/config/boot.rb +110 -0
  13. data/examples/rails/config/database.yml +22 -0
  14. data/examples/rails/config/environment.rb +43 -0
  15. data/examples/rails/config/environments/development.rb +17 -0
  16. data/examples/rails/config/environments/production.rb +28 -0
  17. data/examples/rails/config/environments/test.rb +28 -0
  18. data/examples/rails/config/initializers/backtrace_silencers.rb +7 -0
  19. data/examples/rails/config/initializers/inflections.rb +10 -0
  20. data/examples/rails/config/initializers/mime_types.rb +5 -0
  21. data/examples/rails/config/initializers/new_rails_defaults.rb +19 -0
  22. data/examples/rails/config/initializers/session_store.rb +15 -0
  23. data/examples/rails/config/initializers/walruz_initializer.rb +23 -0
  24. data/examples/rails/config/locales/en.yml +5 -0
  25. data/examples/rails/config/routes.rb +43 -0
  26. data/examples/rails/db/development.sqlite3 +0 -0
  27. data/examples/rails/db/migrate/20090604201506_create_beatles.rb +12 -0
  28. data/examples/rails/db/migrate/20090604201512_create_songs.rb +15 -0
  29. data/examples/rails/db/migrate/20090604201527_create_colaborations.rb +17 -0
  30. data/examples/rails/db/schema.rb +44 -0
  31. data/examples/rails/db/test.sqlite3 +0 -0
  32. data/examples/rails/doc/README_FOR_APP +2 -0
  33. data/examples/rails/lib/tasks/rspec.rake +165 -0
  34. data/examples/rails/lib/walruz/policies/author_policy.rb +9 -0
  35. data/examples/rails/lib/walruz/policies/colaboration_policy.rb +22 -0
  36. data/examples/rails/lib/walruz/policies.rb +33 -0
  37. data/examples/rails/log/development.log +1347 -0
  38. data/examples/rails/log/production.log +0 -0
  39. data/examples/rails/log/server.log +0 -0
  40. data/examples/rails/log/test.log +354 -0
  41. data/examples/rails/public/404.html +30 -0
  42. data/examples/rails/public/422.html +30 -0
  43. data/examples/rails/public/500.html +30 -0
  44. data/examples/rails/public/favicon.ico +0 -0
  45. data/examples/rails/public/images/rails.png +0 -0
  46. data/examples/rails/public/index.html +275 -0
  47. data/examples/rails/public/javascripts/application.js +2 -0
  48. data/examples/rails/public/javascripts/controls.js +963 -0
  49. data/examples/rails/public/javascripts/dragdrop.js +973 -0
  50. data/examples/rails/public/javascripts/effects.js +1128 -0
  51. data/examples/rails/public/javascripts/prototype.js +4320 -0
  52. data/examples/rails/public/robots.txt +5 -0
  53. data/examples/rails/public/unathorized.html +9 -0
  54. data/examples/rails/script/about +4 -0
  55. data/examples/rails/script/autospec +6 -0
  56. data/examples/rails/script/console +3 -0
  57. data/examples/rails/script/dbconsole +3 -0
  58. data/examples/rails/script/destroy +3 -0
  59. data/examples/rails/script/generate +3 -0
  60. data/examples/rails/script/performance/benchmarker +3 -0
  61. data/examples/rails/script/performance/profiler +3 -0
  62. data/examples/rails/script/plugin +3 -0
  63. data/examples/rails/script/runner +3 -0
  64. data/examples/rails/script/server +3 -0
  65. data/examples/rails/script/spec +10 -0
  66. data/examples/rails/script/spec_server +9 -0
  67. data/examples/rails/spec/fixtures/beatles.yml +7 -0
  68. data/examples/rails/spec/fixtures/colaborations.yml +7 -0
  69. data/examples/rails/spec/fixtures/songs.yml +7 -0
  70. data/examples/rails/spec/models/beatle_spec.rb +47 -0
  71. data/examples/rails/spec/models/colaboration_spec.rb +4 -0
  72. data/examples/rails/spec/models/song_spec.rb +4 -0
  73. data/examples/rails/spec/rcov.opts +2 -0
  74. data/examples/rails/spec/spec.opts +4 -0
  75. data/examples/rails/spec/spec_helper.rb +48 -0
  76. data/examples/rails/test/performance/browsing_test.rb +9 -0
  77. data/examples/rails/test/test_helper.rb +38 -0
  78. data/lib/walruz/controller_mixin.rb +107 -0
  79. data/lib/walruz_rails.rb +10 -0
  80. data/spec/controller_mixin_spec.rb +92 -0
  81. data/spec/scenario.rb +247 -0
  82. data/spec/spec_helper.rb +29 -0
  83. metadata +169 -0
File without changes
File without changes
@@ -0,0 +1,354 @@
1
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES(NULL, '2009-06-04 20:34:33', NULL, NULL, '2009-06-04 20:34:33')
2
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:34:33', '2009-06-04 20:34:33')
3
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES(NULL, '2009-06-04 20:43:35', NULL, NULL, '2009-06-04 20:43:35')
4
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:43:35', '2009-06-04 20:43:35')
5
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:43:35', '2009-06-04 20:43:35')
6
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:43:35', '2009-06-04 20:43:35')
7
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:43:35', '2009-06-04 20:43:35')
8
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:43:35', '2009-06-04 20:43:35')
9
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:43:35', '2009-06-04 20:43:35')
10
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:43:35', '2009-06-04 20:43:35')
11
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:43:35', '2009-06-04 20:43:35')
12
+ Beatle Create (1.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:43:35', '2009-06-04 20:43:35')
13
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES(NULL, '2009-06-04 20:44:02', NULL, NULL, '2009-06-04 20:44:02')
14
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:02', '2009-06-04 20:44:02')
15
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:44:02', '2009-06-04 20:44:02')
16
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:44:02', '2009-06-04 20:44:02')
17
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:44:02', '2009-06-04 20:44:02')
18
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:44:02', '2009-06-04 20:44:02')
19
+ Colaboration Create (0.3ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:02', '2009-06-04 20:44:02')
20
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:44:02', '2009-06-04 20:44:02')
21
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:44:02', '2009-06-04 20:44:02')
22
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:44:02', '2009-06-04 20:44:02')
23
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:44:02', '2009-06-04 20:44:02')
24
+ Colaboration Create (0.5ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:02', '2009-06-04 20:44:02')
25
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES(NULL, '2009-06-04 20:44:29', NULL, NULL, '2009-06-04 20:44:29')
26
+ Colaboration Create (0.5ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:29', '2009-06-04 20:44:29')
27
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:44:29', '2009-06-04 20:44:29')
28
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:44:29', '2009-06-04 20:44:29')
29
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:44:29', '2009-06-04 20:44:29')
30
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:44:29', '2009-06-04 20:44:29')
31
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:29', '2009-06-04 20:44:29')
32
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
33
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
34
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:44:29', 0, 1, '2009-06-04 20:44:29')
35
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:44:29', 0, 1, '2009-06-04 20:44:29')
36
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:44:29', 0, 2, '2009-06-04 20:44:29')
37
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:44:29', '2009-06-04 20:44:29')
38
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:44:29', '2009-06-04 20:44:29')
39
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:44:29', '2009-06-04 20:44:29')
40
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:44:29', '2009-06-04 20:44:29')
41
+ Colaboration Create (0.3ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:29', '2009-06-04 20:44:29')
42
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
43
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
44
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:44:29', 0, 2, '2009-06-04 20:44:29')
45
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:44:29', 0, 5, '2009-06-04 20:44:29')
46
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:44:29', 0, 6, '2009-06-04 20:44:29')
47
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES(NULL, '2009-06-04 20:48:33', NULL, NULL, '2009-06-04 20:48:33')
48
+ Colaboration Create (0.6ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:33', '2009-06-04 20:48:33')
49
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:48:33', '2009-06-04 20:48:33')
50
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:48:33', '2009-06-04 20:48:33')
51
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:48:33', '2009-06-04 20:48:33')
52
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:48:33', '2009-06-04 20:48:33')
53
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:33', '2009-06-04 20:48:33')
54
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
55
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
56
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:48:33', 0, 1, '2009-06-04 20:48:33')
57
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:48:33', 0, 1, '2009-06-04 20:48:33')
58
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:48:33', 0, 2, '2009-06-04 20:48:33')
59
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:48:33', '2009-06-04 20:48:33')
60
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:48:33', '2009-06-04 20:48:33')
61
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:48:33', '2009-06-04 20:48:33')
62
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:48:33', '2009-06-04 20:48:33')
63
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:33', '2009-06-04 20:48:33')
64
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
65
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
66
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:48:33', 0, 2, '2009-06-04 20:48:33')
67
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:48:33', 0, 5, '2009-06-04 20:48:33')
68
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:48:33', 0, 6, '2009-06-04 20:48:33')
69
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES(NULL, '2009-06-04 20:48:49', NULL, NULL, '2009-06-04 20:48:49')
70
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:49', '2009-06-04 20:48:49')
71
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:48:49', '2009-06-04 20:48:49')
72
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:48:49', '2009-06-04 20:48:49')
73
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:48:49', '2009-06-04 20:48:49')
74
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:48:49', '2009-06-04 20:48:49')
75
+ Colaboration Create (0.5ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:49', '2009-06-04 20:48:49')
76
+ SQL (0.2ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
77
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
78
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:48:49', 0, 1, '2009-06-04 20:48:49')
79
+ Song Create (0.7ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:48:49', 0, 1, '2009-06-04 20:48:49')
80
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:48:49', 0, 2, '2009-06-04 20:48:49')
81
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:48:49', '2009-06-04 20:48:49')
82
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:48:49', '2009-06-04 20:48:49')
83
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:48:49', '2009-06-04 20:48:49')
84
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:48:49', '2009-06-04 20:48:49')
85
+ Colaboration Create (0.3ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:49', '2009-06-04 20:48:49')
86
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
87
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
88
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:48:49', 0, 2, '2009-06-04 20:48:49')
89
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:48:49', 0, 5, '2009-06-04 20:48:49')
90
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:48:49', 0, 6, '2009-06-04 20:48:49')
91
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES(NULL, '2009-06-04 20:49:21', NULL, NULL, '2009-06-04 20:49:21')
92
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:49:21', '2009-06-04 20:49:21')
93
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:49:21', '2009-06-04 20:49:21')
94
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:49:21', '2009-06-04 20:49:21')
95
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:49:21', '2009-06-04 20:49:21')
96
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:49:21', '2009-06-04 20:49:21')
97
+ Colaboration Create (0.3ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:49:21', '2009-06-04 20:49:21')
98
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
99
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
100
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:49:21', 0, 1, '2009-06-04 20:49:21')
101
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:49:21', 0, 1, '2009-06-04 20:49:21')
102
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:49:21', 0, 2, '2009-06-04 20:49:21')
103
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:49:21', '2009-06-04 20:49:21')
104
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:49:21', '2009-06-04 20:49:21')
105
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:49:21', '2009-06-04 20:49:21')
106
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:49:21', '2009-06-04 20:49:21')
107
+ Colaboration Create (0.3ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:49:21', '2009-06-04 20:49:21')
108
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
109
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
110
+ Song Create (0.6ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:49:21', 0, 2, '2009-06-04 20:49:21')
111
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:49:21', 0, 5, '2009-06-04 20:49:21')
112
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:49:21', 0, 6, '2009-06-04 20:49:21')
113
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES(NULL, '2009-06-04 20:50:00', NULL, NULL, '2009-06-04 20:50:00')
114
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:50:00', '2009-06-04 20:50:00')
115
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:50:00', '2009-06-04 20:50:00')
116
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:50:00', '2009-06-04 20:50:00')
117
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:50:00', '2009-06-04 20:50:00')
118
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:50:00', '2009-06-04 20:50:00')
119
+ Colaboration Create (0.3ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:50:00', '2009-06-04 20:50:00')
120
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
121
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
122
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:50:00', 0, 1, '2009-06-04 20:50:00')
123
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:50:00', 0, 1, '2009-06-04 20:50:00')
124
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:50:00', 0, 2, '2009-06-04 20:50:00')
125
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:50:00', '2009-06-04 20:50:00')
126
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:50:00', '2009-06-04 20:50:00')
127
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:50:00', '2009-06-04 20:50:00')
128
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:50:00', '2009-06-04 20:50:00')
129
+ Colaboration Create (0.3ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:50:00', '2009-06-04 20:50:00')
130
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
131
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
132
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:50:00', 0, 2, '2009-06-04 20:50:00')
133
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:50:00', 0, 5, '2009-06-04 20:50:00')
134
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:50:00', 0, 6, '2009-06-04 20:50:00')
135
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:50:35', '2009-06-04 20:50:35')
136
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:50:35', '2009-06-04 20:50:35')
137
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:50:35', '2009-06-04 20:50:35')
138
+ Beatle Create (0.6ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:50:35', '2009-06-04 20:50:35')
139
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:50:35', '2009-06-04 20:50:35')
140
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
141
+ SQL (0.2ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
142
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:50:35', 0, 1, '2009-06-04 20:50:35')
143
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:50:35', 0, 1, '2009-06-04 20:50:35')
144
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:50:35', 0, 2, '2009-06-04 20:50:35')
145
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:50:35', '2009-06-04 20:50:35')
146
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:50:35', '2009-06-04 20:50:35')
147
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:50:35', '2009-06-04 20:50:35')
148
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:50:35', '2009-06-04 20:50:35')
149
+ Colaboration Create (0.3ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:50:35', '2009-06-04 20:50:35')
150
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
151
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
152
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:50:35', 0, 2, '2009-06-04 20:50:35')
153
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:50:35', 0, 5, '2009-06-04 20:50:35')
154
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:50:35', 0, 6, '2009-06-04 20:50:35')
155
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:54:00', '2009-06-04 20:54:00')
156
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:54:00', '2009-06-04 20:54:00')
157
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:54:00', '2009-06-04 20:54:00')
158
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:54:00', '2009-06-04 20:54:00')
159
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:54:00', '2009-06-04 20:54:00')
160
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
161
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
162
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:54:00', 0, 1, '2009-06-04 20:54:00')
163
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:54:00', 0, 1, '2009-06-04 20:54:00')
164
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:54:00', 0, 2, '2009-06-04 20:54:00')
165
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:54:00', '2009-06-04 20:54:00')
166
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:54:00', '2009-06-04 20:54:00')
167
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:54:00', '2009-06-04 20:54:00')
168
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:54:00', '2009-06-04 20:54:00')
169
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:54:00', '2009-06-04 20:54:00')
170
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
171
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
172
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:54:00', 0, 2, '2009-06-04 20:54:00')
173
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:54:01', 0, 5, '2009-06-04 20:54:01')
174
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:54:01', 0, 6, '2009-06-04 20:54:01')
175
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:55:26', '2009-06-04 20:55:26')
176
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:55:26', '2009-06-04 20:55:26')
177
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:55:26', '2009-06-04 20:55:26')
178
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:55:26', '2009-06-04 20:55:26')
179
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:55:26', '2009-06-04 20:55:26')
180
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
181
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
182
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:55:26', 0, 1, '2009-06-04 20:55:26')
183
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:55:26', 0, 1, '2009-06-04 20:55:26')
184
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:55:26', 0, 2, '2009-06-04 20:55:26')
185
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:55:26', '2009-06-04 20:55:26')
186
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:55:26', '2009-06-04 20:55:26')
187
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:55:26', '2009-06-04 20:55:26')
188
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:55:26', '2009-06-04 20:55:26')
189
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:55:26', '2009-06-04 20:55:26')
190
+ SQL (0.2ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
191
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
192
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:55:26', 0, 2, '2009-06-04 20:55:26')
193
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:55:26', 0, 5, '2009-06-04 20:55:26')
194
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:55:26', 0, 6, '2009-06-04 20:55:26')
195
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:56:20', '2009-06-04 20:56:20')
196
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:56:20', '2009-06-04 20:56:20')
197
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:56:20', '2009-06-04 20:56:20')
198
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:56:20', '2009-06-04 20:56:20')
199
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:56:20', '2009-06-04 20:56:20')
200
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
201
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
202
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:56:20', 0, 1, '2009-06-04 20:56:20')
203
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:56:20', 0, 1, '2009-06-04 20:56:20')
204
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:56:20', 0, 2, '2009-06-04 20:56:20')
205
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:56:20', '2009-06-04 20:56:20')
206
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:56:20', '2009-06-04 20:56:20')
207
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:56:20', '2009-06-04 20:56:20')
208
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:56:20', '2009-06-04 20:56:20')
209
+ Colaboration Create (0.3ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:56:20', '2009-06-04 20:56:20')
210
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
211
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
212
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:56:20', 0, 2, '2009-06-04 20:56:20')
213
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:56:20', 0, 5, '2009-06-04 20:56:20')
214
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:56:20', 0, 6, '2009-06-04 20:56:20')
215
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:59:08', '2009-06-04 20:59:08')
216
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:59:08', '2009-06-04 20:59:08')
217
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:59:08', '2009-06-04 20:59:08')
218
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:59:08', '2009-06-04 20:59:08')
219
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:59:08', '2009-06-04 20:59:08')
220
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
221
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
222
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:59:08', 0, 1, '2009-06-04 20:59:08')
223
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:59:08', 0, 1, '2009-06-04 20:59:08')
224
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:59:08', 0, 2, '2009-06-04 20:59:08')
225
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:59:08', '2009-06-04 20:59:08')
226
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:59:08', '2009-06-04 20:59:08')
227
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:59:08', '2009-06-04 20:59:08')
228
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:59:08', '2009-06-04 20:59:08')
229
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:59:08', '2009-06-04 20:59:08')
230
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
231
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
232
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 20:59:08', 0, 2, '2009-06-04 20:59:08')
233
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 20:59:08', 0, 5, '2009-06-04 20:59:08')
234
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 20:59:08', 0, 6, '2009-06-04 20:59:08')
235
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:01:34', '2009-06-04 21:01:34')
236
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:01:34', '2009-06-04 21:01:34')
237
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:01:34', '2009-06-04 21:01:34')
238
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:01:34', '2009-06-04 21:01:34')
239
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:01:34', '2009-06-04 21:01:34')
240
+ SQL (0.2ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
241
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
242
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 21:01:34', 0, 1, '2009-06-04 21:01:34')
243
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 21:01:34', 0, 1, '2009-06-04 21:01:34')
244
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 21:01:34', 0, 2, '2009-06-04 21:01:34')
245
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:01:34', '2009-06-04 21:01:34')
246
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:01:34', '2009-06-04 21:01:34')
247
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:01:34', '2009-06-04 21:01:34')
248
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:01:34', '2009-06-04 21:01:34')
249
+ Colaboration Create (0.3ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:01:34', '2009-06-04 21:01:34')
250
+ SQL (0.2ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
251
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
252
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 21:01:34', 0, 2, '2009-06-04 21:01:34')
253
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 21:01:34', 0, 5, '2009-06-04 21:01:34')
254
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 21:01:34', 0, 6, '2009-06-04 21:01:34')
255
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:02:06', '2009-06-04 21:02:06')
256
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:02:06', '2009-06-04 21:02:06')
257
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:02:06', '2009-06-04 21:02:06')
258
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:02:06', '2009-06-04 21:02:06')
259
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:02:06', '2009-06-04 21:02:06')
260
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
261
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
262
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 21:02:06', 0, 1, '2009-06-04 21:02:06')
263
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 21:02:06', 0, 1, '2009-06-04 21:02:06')
264
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 21:02:06', 0, 2, '2009-06-04 21:02:06')
265
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:02:06', '2009-06-04 21:02:06')
266
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:02:06', '2009-06-04 21:02:06')
267
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:02:06', '2009-06-04 21:02:06')
268
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:02:06', '2009-06-04 21:02:06')
269
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:02:06', '2009-06-04 21:02:06')
270
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
271
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
272
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 21:02:06', 0, 2, '2009-06-04 21:02:06')
273
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 21:02:06', 0, 5, '2009-06-04 21:02:06')
274
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 21:02:06', 0, 6, '2009-06-04 21:02:06')
275
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:04:31', '2009-06-04 21:04:31')
276
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:04:31', '2009-06-04 21:04:31')
277
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:04:31', '2009-06-04 21:04:31')
278
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:04:31', '2009-06-04 21:04:31')
279
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:04:31', '2009-06-04 21:04:31')
280
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
281
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
282
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 21:04:31', 0, 1, '2009-06-04 21:04:31')
283
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 21:04:31', 0, 1, '2009-06-04 21:04:31')
284
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 21:04:31', 0, 2, '2009-06-04 21:04:31')
285
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:04:31', '2009-06-04 21:04:31')
286
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:04:31', '2009-06-04 21:04:31')
287
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:04:31', '2009-06-04 21:04:31')
288
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:04:31', '2009-06-04 21:04:31')
289
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:04:31', '2009-06-04 21:04:31')
290
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
291
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
292
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 21:04:31', 0, 2, '2009-06-04 21:04:31')
293
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 21:04:31', 0, 5, '2009-06-04 21:04:31')
294
+ Song Create (0.6ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 21:04:31', 0, 6, '2009-06-04 21:04:31')
295
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 22:11:33', '2009-06-04 22:11:33')
296
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 22:11:33', '2009-06-04 22:11:33')
297
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 22:11:33', '2009-06-04 22:11:33')
298
+ Beatle Create (0.6ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 22:11:33', '2009-06-04 22:11:33')
299
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 22:11:33', '2009-06-04 22:11:33')
300
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
301
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
302
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 22:11:33', 0, 1, '2009-06-04 22:11:33')
303
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 22:11:33', 0, 1, '2009-06-04 22:11:33')
304
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 22:11:33', 0, 2, '2009-06-04 22:11:33')
305
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 22:11:33', '2009-06-04 22:11:33')
306
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 22:11:33', '2009-06-04 22:11:33')
307
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 22:11:33', '2009-06-04 22:11:33')
308
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 22:11:33', '2009-06-04 22:11:33')
309
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 22:11:33', '2009-06-04 22:11:33')
310
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
311
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
312
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-04 22:11:33', 0, 2, '2009-06-04 22:11:33')
313
+ Song Create (0.3ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-04 22:11:33', 0, 5, '2009-06-04 22:11:33')
314
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-04 22:11:33', 0, 6, '2009-06-04 22:11:33')
315
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-06 01:48:11', '2009-06-06 01:48:11')
316
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-06 01:48:11', '2009-06-06 01:48:11')
317
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-06 01:48:11', '2009-06-06 01:48:11')
318
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-06 01:48:11', '2009-06-06 01:48:11')
319
+ Colaboration Create (0.5ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-06 01:48:11', '2009-06-06 01:48:11')
320
+ SQL (0.2ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
321
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
322
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-06 01:48:11', 0, 1, '2009-06-06 01:48:11')
323
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-06 01:48:11', 0, 1, '2009-06-06 01:48:11')
324
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-06 01:48:11', 0, 2, '2009-06-06 01:48:11')
325
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-06 01:48:11', '2009-06-06 01:48:11')
326
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-06 01:48:11', '2009-06-06 01:48:11')
327
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-06 01:48:11', '2009-06-06 01:48:11')
328
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-06 01:48:11', '2009-06-06 01:48:11')
329
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-06 01:48:11', '2009-06-06 01:48:11')
330
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
331
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
332
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-06 01:48:11', 0, 2, '2009-06-06 01:48:11')
333
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-06 01:48:11', 0, 5, '2009-06-06 01:48:11')
334
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-06 01:48:11', 0, 6, '2009-06-06 01:48:11')
335
+ Beatle Create (0.5ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-06 01:49:05', '2009-06-06 01:49:05')
336
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-06 01:49:05', '2009-06-06 01:49:05')
337
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-06 01:49:05', '2009-06-06 01:49:05')
338
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-06 01:49:05', '2009-06-06 01:49:05')
339
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-06 01:49:05', '2009-06-06 01:49:05')
340
+ SQL (0.2ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)
341
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)
342
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-06 01:49:05', 0, 1, '2009-06-06 01:49:05')
343
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-06 01:49:05', 0, 1, '2009-06-06 01:49:05')
344
+ Song Create (0.8ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-06 01:49:05', 0, 2, '2009-06-06 01:49:05')
345
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-06 01:49:05', '2009-06-06 01:49:05')
346
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-06 01:49:05', '2009-06-06 01:49:05')
347
+ Beatle Create (0.3ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-06 01:49:05', '2009-06-06 01:49:05')
348
+ Beatle Create (0.4ms) INSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-06 01:49:05', '2009-06-06 01:49:05')
349
+ Colaboration Create (0.4ms) INSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-06 01:49:05', '2009-06-06 01:49:05')
350
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)
351
+ SQL (0.1ms) INSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)
352
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('A Day In Life', '2009-06-06 01:49:05', 0, 2, '2009-06-06 01:49:05')
353
+ Song Create (0.4ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('All You Need Is Love', '2009-06-06 01:49:05', 0, 5, '2009-06-06 01:49:05')
354
+ Song Create (0.5ms) INSERT INTO "songs" ("name", "updated_at", "author_type", "author_id", "created_at") VALUES('Yesterday', '2009-06-06 01:49:05', 0, 6, '2009-06-06 01:49:05')
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+
6
+ <head>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <title>The page you were looking for doesn't exist (404)</title>
9
+ <style type="text/css">
10
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
11
+ div.dialog {
12
+ width: 25em;
13
+ padding: 0 4em;
14
+ margin: 4em auto 0 auto;
15
+ border: 1px solid #ccc;
16
+ border-right-color: #999;
17
+ border-bottom-color: #999;
18
+ }
19
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <!-- This file lives in public/404.html -->
25
+ <div class="dialog">
26
+ <h1>The page you were looking for doesn't exist.</h1>
27
+ <p>You may have mistyped the address or the page may have moved.</p>
28
+ </div>
29
+ </body>
30
+ </html>
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+
6
+ <head>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <title>The change you wanted was rejected (422)</title>
9
+ <style type="text/css">
10
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
11
+ div.dialog {
12
+ width: 25em;
13
+ padding: 0 4em;
14
+ margin: 4em auto 0 auto;
15
+ border: 1px solid #ccc;
16
+ border-right-color: #999;
17
+ border-bottom-color: #999;
18
+ }
19
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <!-- This file lives in public/422.html -->
25
+ <div class="dialog">
26
+ <h1>The change you wanted was rejected.</h1>
27
+ <p>Maybe you tried to change something you didn't have access to.</p>
28
+ </div>
29
+ </body>
30
+ </html>
@@ -0,0 +1,30 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+
6
+ <head>
7
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
8
+ <title>We're sorry, but something went wrong (500)</title>
9
+ <style type="text/css">
10
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
11
+ div.dialog {
12
+ width: 25em;
13
+ padding: 0 4em;
14
+ margin: 4em auto 0 auto;
15
+ border: 1px solid #ccc;
16
+ border-right-color: #999;
17
+ border-bottom-color: #999;
18
+ }
19
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
20
+ </style>
21
+ </head>
22
+
23
+ <body>
24
+ <!-- This file lives in public/500.html -->
25
+ <div class="dialog">
26
+ <h1>We're sorry, but something went wrong.</h1>
27
+ <p>We've been notified about this issue and we'll take a look at it shortly.</p>
28
+ </div>
29
+ </body>
30
+ </html>
File without changes