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.
- data/LICENSE +20 -0
- data/README.rdoc +31 -0
- data/Rakefile +49 -0
- data/VERSION.yml +4 -0
- data/examples/rails/README +243 -0
- data/examples/rails/Rakefile +10 -0
- data/examples/rails/app/controllers/application_controller.rb +10 -0
- data/examples/rails/app/helpers/application_helper.rb +3 -0
- data/examples/rails/app/models/beatle.rb +26 -0
- data/examples/rails/app/models/colaboration.rb +6 -0
- data/examples/rails/app/models/song.rb +10 -0
- data/examples/rails/config/boot.rb +110 -0
- data/examples/rails/config/database.yml +22 -0
- data/examples/rails/config/environment.rb +43 -0
- data/examples/rails/config/environments/development.rb +17 -0
- data/examples/rails/config/environments/production.rb +28 -0
- data/examples/rails/config/environments/test.rb +28 -0
- data/examples/rails/config/initializers/backtrace_silencers.rb +7 -0
- data/examples/rails/config/initializers/inflections.rb +10 -0
- data/examples/rails/config/initializers/mime_types.rb +5 -0
- data/examples/rails/config/initializers/new_rails_defaults.rb +19 -0
- data/examples/rails/config/initializers/session_store.rb +15 -0
- data/examples/rails/config/initializers/walruz_initializer.rb +23 -0
- data/examples/rails/config/locales/en.yml +5 -0
- data/examples/rails/config/routes.rb +43 -0
- data/examples/rails/db/development.sqlite3 +0 -0
- data/examples/rails/db/migrate/20090604201506_create_beatles.rb +12 -0
- data/examples/rails/db/migrate/20090604201512_create_songs.rb +15 -0
- data/examples/rails/db/migrate/20090604201527_create_colaborations.rb +17 -0
- data/examples/rails/db/schema.rb +44 -0
- data/examples/rails/db/test.sqlite3 +0 -0
- data/examples/rails/doc/README_FOR_APP +2 -0
- data/examples/rails/lib/tasks/rspec.rake +165 -0
- data/examples/rails/lib/walruz/policies/author_policy.rb +9 -0
- data/examples/rails/lib/walruz/policies/colaboration_policy.rb +22 -0
- data/examples/rails/lib/walruz/policies.rb +33 -0
- data/examples/rails/log/development.log +1347 -0
- data/examples/rails/log/production.log +0 -0
- data/examples/rails/log/server.log +0 -0
- data/examples/rails/log/test.log +354 -0
- data/examples/rails/public/404.html +30 -0
- data/examples/rails/public/422.html +30 -0
- data/examples/rails/public/500.html +30 -0
- data/examples/rails/public/favicon.ico +0 -0
- data/examples/rails/public/images/rails.png +0 -0
- data/examples/rails/public/index.html +275 -0
- data/examples/rails/public/javascripts/application.js +2 -0
- data/examples/rails/public/javascripts/controls.js +963 -0
- data/examples/rails/public/javascripts/dragdrop.js +973 -0
- data/examples/rails/public/javascripts/effects.js +1128 -0
- data/examples/rails/public/javascripts/prototype.js +4320 -0
- data/examples/rails/public/robots.txt +5 -0
- data/examples/rails/public/unathorized.html +9 -0
- data/examples/rails/script/about +4 -0
- data/examples/rails/script/autospec +6 -0
- data/examples/rails/script/console +3 -0
- data/examples/rails/script/dbconsole +3 -0
- data/examples/rails/script/destroy +3 -0
- data/examples/rails/script/generate +3 -0
- data/examples/rails/script/performance/benchmarker +3 -0
- data/examples/rails/script/performance/profiler +3 -0
- data/examples/rails/script/plugin +3 -0
- data/examples/rails/script/runner +3 -0
- data/examples/rails/script/server +3 -0
- data/examples/rails/script/spec +10 -0
- data/examples/rails/script/spec_server +9 -0
- data/examples/rails/spec/fixtures/beatles.yml +7 -0
- data/examples/rails/spec/fixtures/colaborations.yml +7 -0
- data/examples/rails/spec/fixtures/songs.yml +7 -0
- data/examples/rails/spec/models/beatle_spec.rb +47 -0
- data/examples/rails/spec/models/colaboration_spec.rb +4 -0
- data/examples/rails/spec/models/song_spec.rb +4 -0
- data/examples/rails/spec/rcov.opts +2 -0
- data/examples/rails/spec/spec.opts +4 -0
- data/examples/rails/spec/spec_helper.rb +48 -0
- data/examples/rails/test/performance/browsing_test.rb +9 -0
- data/examples/rails/test/test_helper.rb +38 -0
- data/lib/walruz/controller_mixin.rb +107 -0
- data/lib/walruz_rails.rb +10 -0
- data/spec/controller_mixin_spec.rb +92 -0
- data/spec/scenario.rb +247 -0
- data/spec/spec_helper.rb +29 -0
- metadata +169 -0
File without changes
|
File without changes
|
@@ -0,0 +1,354 @@
|
|
1
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
2
|
+
[4;35;1mColaboration Create (0.4ms)[0m [0mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:34:33', '2009-06-04 20:34:33')[0m
|
3
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
4
|
+
[4;35;1mColaboration Create (0.4ms)[0m [0mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:43:35', '2009-06-04 20:43:35')[0m
|
5
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:43:35', '2009-06-04 20:43:35')[0m
|
6
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:43:35', '2009-06-04 20:43:35')[0m
|
7
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:43:35', '2009-06-04 20:43:35')[0m
|
8
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:43:35', '2009-06-04 20:43:35')[0m
|
9
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:43:35', '2009-06-04 20:43:35')[0m
|
10
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:43:35', '2009-06-04 20:43:35')[0m
|
11
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:43:35', '2009-06-04 20:43:35')[0m
|
12
|
+
[4;35;1mBeatle Create (1.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:43:35', '2009-06-04 20:43:35')[0m
|
13
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
14
|
+
[4;35;1mColaboration Create (0.4ms)[0m [0mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
15
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
16
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
17
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
18
|
+
[4;35;1mBeatle Create (0.5ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
19
|
+
[4;36;1mColaboration Create (0.3ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
20
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
21
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
22
|
+
[4;35;1mBeatle Create (0.5ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
23
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
24
|
+
[4;35;1mColaboration Create (0.5ms)[0m [0mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:02', '2009-06-04 20:44:02')[0m
|
25
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
26
|
+
[4;35;1mColaboration Create (0.5ms)[0m [0mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
27
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
28
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
29
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
30
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
31
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
32
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
33
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
34
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
35
|
+
[4;36;1mSong Create (0.3ms)[0m [0;1mINSERT 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')[0m
|
36
|
+
[4;35;1mSong Create (0.5ms)[0m [0mINSERT 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')[0m
|
37
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
38
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
39
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
40
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
41
|
+
[4;36;1mColaboration Create (0.3ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:44:29', '2009-06-04 20:44:29')[0m
|
42
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
43
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
44
|
+
[4;35;1mSong Create (0.3ms)[0m [0mINSERT 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')[0m
|
45
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
46
|
+
[4;35;1mSong Create (0.5ms)[0m [0mINSERT 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')[0m
|
47
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
48
|
+
[4;35;1mColaboration Create (0.6ms)[0m [0mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
49
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
50
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
51
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
52
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
53
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
54
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
55
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
56
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
57
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
58
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
59
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
60
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
61
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
62
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
63
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:33', '2009-06-04 20:48:33')[0m
|
64
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
65
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
66
|
+
[4;35;1mSong Create (0.3ms)[0m [0mINSERT 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')[0m
|
67
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
68
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
69
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
70
|
+
[4;35;1mColaboration Create (0.4ms)[0m [0mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
71
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
72
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
73
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
74
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
75
|
+
[4;36;1mColaboration Create (0.5ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
76
|
+
[4;35;1mSQL (0.2ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
77
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
78
|
+
[4;35;1mSong Create (0.5ms)[0m [0mINSERT 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')[0m
|
79
|
+
[4;36;1mSong Create (0.7ms)[0m [0;1mINSERT 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')[0m
|
80
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
81
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
82
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
83
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
84
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
85
|
+
[4;36;1mColaboration Create (0.3ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:48:49', '2009-06-04 20:48:49')[0m
|
86
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
87
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
88
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
89
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
90
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
91
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
92
|
+
[4;35;1mColaboration Create (0.4ms)[0m [0mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
93
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
94
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
95
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
96
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
97
|
+
[4;36;1mColaboration Create (0.3ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
98
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
99
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
100
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
101
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
102
|
+
[4;35;1mSong Create (0.3ms)[0m [0mINSERT 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')[0m
|
103
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
104
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
105
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
106
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
107
|
+
[4;36;1mColaboration Create (0.3ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:49:21', '2009-06-04 20:49:21')[0m
|
108
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
109
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
110
|
+
[4;35;1mSong Create (0.6ms)[0m [0mINSERT 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')[0m
|
111
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
112
|
+
[4;35;1mSong Create (0.5ms)[0m [0mINSERT 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')[0m
|
113
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
114
|
+
[4;35;1mColaboration Create (0.4ms)[0m [0mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
115
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
116
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
117
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
118
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
119
|
+
[4;36;1mColaboration Create (0.3ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
120
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
121
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
122
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
123
|
+
[4;36;1mSong Create (0.5ms)[0m [0;1mINSERT 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')[0m
|
124
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
125
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
126
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
127
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
128
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
129
|
+
[4;36;1mColaboration Create (0.3ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:50:00', '2009-06-04 20:50:00')[0m
|
130
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
131
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
132
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
133
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
134
|
+
[4;35;1mSong Create (0.5ms)[0m [0mINSERT 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')[0m
|
135
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:50:35', '2009-06-04 20:50:35')[0m
|
136
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:50:35', '2009-06-04 20:50:35')[0m
|
137
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:50:35', '2009-06-04 20:50:35')[0m
|
138
|
+
[4;35;1mBeatle Create (0.6ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:50:35', '2009-06-04 20:50:35')[0m
|
139
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:50:35', '2009-06-04 20:50:35')[0m
|
140
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
141
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
142
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
143
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
144
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
145
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:50:35', '2009-06-04 20:50:35')[0m
|
146
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:50:35', '2009-06-04 20:50:35')[0m
|
147
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:50:35', '2009-06-04 20:50:35')[0m
|
148
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:50:35', '2009-06-04 20:50:35')[0m
|
149
|
+
[4;36;1mColaboration Create (0.3ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:50:35', '2009-06-04 20:50:35')[0m
|
150
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
151
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
152
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
153
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
154
|
+
[4;35;1mSong Create (0.3ms)[0m [0mINSERT 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')[0m
|
155
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:54:00', '2009-06-04 20:54:00')[0m
|
156
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:54:00', '2009-06-04 20:54:00')[0m
|
157
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:54:00', '2009-06-04 20:54:00')[0m
|
158
|
+
[4;35;1mBeatle Create (0.5ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:54:00', '2009-06-04 20:54:00')[0m
|
159
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:54:00', '2009-06-04 20:54:00')[0m
|
160
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
161
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
162
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
163
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
164
|
+
[4;35;1mSong Create (0.3ms)[0m [0mINSERT 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')[0m
|
165
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:54:00', '2009-06-04 20:54:00')[0m
|
166
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:54:00', '2009-06-04 20:54:00')[0m
|
167
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:54:00', '2009-06-04 20:54:00')[0m
|
168
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:54:00', '2009-06-04 20:54:00')[0m
|
169
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:54:00', '2009-06-04 20:54:00')[0m
|
170
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
171
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
172
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
173
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
174
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
175
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:55:26', '2009-06-04 20:55:26')[0m
|
176
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:55:26', '2009-06-04 20:55:26')[0m
|
177
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:55:26', '2009-06-04 20:55:26')[0m
|
178
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:55:26', '2009-06-04 20:55:26')[0m
|
179
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:55:26', '2009-06-04 20:55:26')[0m
|
180
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
181
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
182
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
183
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
184
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
185
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:55:26', '2009-06-04 20:55:26')[0m
|
186
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:55:26', '2009-06-04 20:55:26')[0m
|
187
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:55:26', '2009-06-04 20:55:26')[0m
|
188
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:55:26', '2009-06-04 20:55:26')[0m
|
189
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:55:26', '2009-06-04 20:55:26')[0m
|
190
|
+
[4;35;1mSQL (0.2ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
191
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
192
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
193
|
+
[4;36;1mSong Create (0.3ms)[0m [0;1mINSERT 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')[0m
|
194
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
195
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:56:20', '2009-06-04 20:56:20')[0m
|
196
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:56:20', '2009-06-04 20:56:20')[0m
|
197
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:56:20', '2009-06-04 20:56:20')[0m
|
198
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:56:20', '2009-06-04 20:56:20')[0m
|
199
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:56:20', '2009-06-04 20:56:20')[0m
|
200
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
201
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
202
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
203
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
204
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
205
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:56:20', '2009-06-04 20:56:20')[0m
|
206
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:56:20', '2009-06-04 20:56:20')[0m
|
207
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:56:20', '2009-06-04 20:56:20')[0m
|
208
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:56:20', '2009-06-04 20:56:20')[0m
|
209
|
+
[4;36;1mColaboration Create (0.3ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:56:20', '2009-06-04 20:56:20')[0m
|
210
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
211
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
212
|
+
[4;35;1mSong Create (0.3ms)[0m [0mINSERT 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')[0m
|
213
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
214
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
215
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:59:08', '2009-06-04 20:59:08')[0m
|
216
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:59:08', '2009-06-04 20:59:08')[0m
|
217
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:59:08', '2009-06-04 20:59:08')[0m
|
218
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:59:08', '2009-06-04 20:59:08')[0m
|
219
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:59:08', '2009-06-04 20:59:08')[0m
|
220
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
221
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
222
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
223
|
+
[4;36;1mSong Create (0.3ms)[0m [0;1mINSERT 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')[0m
|
224
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
225
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 20:59:08', '2009-06-04 20:59:08')[0m
|
226
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 20:59:08', '2009-06-04 20:59:08')[0m
|
227
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 20:59:08', '2009-06-04 20:59:08')[0m
|
228
|
+
[4;35;1mBeatle Create (0.5ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 20:59:08', '2009-06-04 20:59:08')[0m
|
229
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 20:59:08', '2009-06-04 20:59:08')[0m
|
230
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
231
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
232
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
233
|
+
[4;36;1mSong Create (0.3ms)[0m [0;1mINSERT 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')[0m
|
234
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
235
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:01:34', '2009-06-04 21:01:34')[0m
|
236
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:01:34', '2009-06-04 21:01:34')[0m
|
237
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:01:34', '2009-06-04 21:01:34')[0m
|
238
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:01:34', '2009-06-04 21:01:34')[0m
|
239
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:01:34', '2009-06-04 21:01:34')[0m
|
240
|
+
[4;35;1mSQL (0.2ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
241
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
242
|
+
[4;35;1mSong Create (0.5ms)[0m [0mINSERT 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')[0m
|
243
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
244
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
245
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:01:34', '2009-06-04 21:01:34')[0m
|
246
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:01:34', '2009-06-04 21:01:34')[0m
|
247
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:01:34', '2009-06-04 21:01:34')[0m
|
248
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:01:34', '2009-06-04 21:01:34')[0m
|
249
|
+
[4;36;1mColaboration Create (0.3ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:01:34', '2009-06-04 21:01:34')[0m
|
250
|
+
[4;35;1mSQL (0.2ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
251
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
252
|
+
[4;35;1mSong Create (0.5ms)[0m [0mINSERT 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')[0m
|
253
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
254
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
255
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:02:06', '2009-06-04 21:02:06')[0m
|
256
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:02:06', '2009-06-04 21:02:06')[0m
|
257
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:02:06', '2009-06-04 21:02:06')[0m
|
258
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:02:06', '2009-06-04 21:02:06')[0m
|
259
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:02:06', '2009-06-04 21:02:06')[0m
|
260
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
261
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
262
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
263
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
264
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
265
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:02:06', '2009-06-04 21:02:06')[0m
|
266
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:02:06', '2009-06-04 21:02:06')[0m
|
267
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:02:06', '2009-06-04 21:02:06')[0m
|
268
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:02:06', '2009-06-04 21:02:06')[0m
|
269
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:02:06', '2009-06-04 21:02:06')[0m
|
270
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
271
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
272
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
273
|
+
[4;36;1mSong Create (0.3ms)[0m [0;1mINSERT 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')[0m
|
274
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
275
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:04:31', '2009-06-04 21:04:31')[0m
|
276
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:04:31', '2009-06-04 21:04:31')[0m
|
277
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:04:31', '2009-06-04 21:04:31')[0m
|
278
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:04:31', '2009-06-04 21:04:31')[0m
|
279
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:04:31', '2009-06-04 21:04:31')[0m
|
280
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
281
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
282
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
283
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
284
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
285
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 21:04:31', '2009-06-04 21:04:31')[0m
|
286
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 21:04:31', '2009-06-04 21:04:31')[0m
|
287
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 21:04:31', '2009-06-04 21:04:31')[0m
|
288
|
+
[4;35;1mBeatle Create (0.5ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 21:04:31', '2009-06-04 21:04:31')[0m
|
289
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 21:04:31', '2009-06-04 21:04:31')[0m
|
290
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
291
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
292
|
+
[4;35;1mSong Create (0.3ms)[0m [0mINSERT 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')[0m
|
293
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
294
|
+
[4;35;1mSong Create (0.6ms)[0m [0mINSERT 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')[0m
|
295
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 22:11:33', '2009-06-04 22:11:33')[0m
|
296
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 22:11:33', '2009-06-04 22:11:33')[0m
|
297
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 22:11:33', '2009-06-04 22:11:33')[0m
|
298
|
+
[4;35;1mBeatle Create (0.6ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 22:11:33', '2009-06-04 22:11:33')[0m
|
299
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 22:11:33', '2009-06-04 22:11:33')[0m
|
300
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
301
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
302
|
+
[4;35;1mSong Create (0.5ms)[0m [0mINSERT 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')[0m
|
303
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
304
|
+
[4;35;1mSong Create (0.3ms)[0m [0mINSERT 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')[0m
|
305
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-04 22:11:33', '2009-06-04 22:11:33')[0m
|
306
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-04 22:11:33', '2009-06-04 22:11:33')[0m
|
307
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-04 22:11:33', '2009-06-04 22:11:33')[0m
|
308
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-04 22:11:33', '2009-06-04 22:11:33')[0m
|
309
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-04 22:11:33', '2009-06-04 22:11:33')[0m
|
310
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
311
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
312
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
313
|
+
[4;36;1mSong Create (0.3ms)[0m [0;1mINSERT 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')[0m
|
314
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
315
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-06 01:48:11', '2009-06-06 01:48:11')[0m
|
316
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-06 01:48:11', '2009-06-06 01:48:11')[0m
|
317
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-06 01:48:11', '2009-06-06 01:48:11')[0m
|
318
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-06 01:48:11', '2009-06-06 01:48:11')[0m
|
319
|
+
[4;36;1mColaboration Create (0.5ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-06 01:48:11', '2009-06-06 01:48:11')[0m
|
320
|
+
[4;35;1mSQL (0.2ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
321
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
322
|
+
[4;35;1mSong Create (0.5ms)[0m [0mINSERT 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')[0m
|
323
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
324
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
325
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-06 01:48:11', '2009-06-06 01:48:11')[0m
|
326
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-06 01:48:11', '2009-06-06 01:48:11')[0m
|
327
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-06 01:48:11', '2009-06-06 01:48:11')[0m
|
328
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-06 01:48:11', '2009-06-06 01:48:11')[0m
|
329
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-06 01:48:11', '2009-06-06 01:48:11')[0m
|
330
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
331
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
332
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
333
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
334
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
335
|
+
[4;36;1mBeatle Create (0.5ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-06 01:49:05', '2009-06-06 01:49:05')[0m
|
336
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-06 01:49:05', '2009-06-06 01:49:05')[0m
|
337
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-06 01:49:05', '2009-06-06 01:49:05')[0m
|
338
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-06 01:49:05', '2009-06-06 01:49:05')[0m
|
339
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-06 01:49:05', '2009-06-06 01:49:05')[0m
|
340
|
+
[4;35;1mSQL (0.2ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 1, 1)[0m
|
341
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (1, 2, 2)[0m
|
342
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
343
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
344
|
+
[4;35;1mSong Create (0.8ms)[0m [0mINSERT 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')[0m
|
345
|
+
[4;36;1mBeatle Create (0.4ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('John Lennon', '2009-06-06 01:49:05', '2009-06-06 01:49:05')[0m
|
346
|
+
[4;35;1mBeatle Create (0.3ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Paul McCartney', '2009-06-06 01:49:05', '2009-06-06 01:49:05')[0m
|
347
|
+
[4;36;1mBeatle Create (0.3ms)[0m [0;1mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('George Harrison', '2009-06-06 01:49:05', '2009-06-06 01:49:05')[0m
|
348
|
+
[4;35;1mBeatle Create (0.4ms)[0m [0mINSERT INTO "beatles" ("name", "updated_at", "created_at") VALUES('Ringo Starr', '2009-06-06 01:49:05', '2009-06-06 01:49:05')[0m
|
349
|
+
[4;36;1mColaboration Create (0.4ms)[0m [0;1mINSERT INTO "colaborations" ("name", "updated_at", "created_at") VALUES(NULL, '2009-06-06 01:49:05', '2009-06-06 01:49:05')[0m
|
350
|
+
[4;35;1mSQL (0.1ms)[0m [0mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 5, 5)[0m
|
351
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "beatles_colaborations" ("colaboration_id", "beatle_id", "id") VALUES (2, 6, 6)[0m
|
352
|
+
[4;35;1mSong Create (0.4ms)[0m [0mINSERT 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')[0m
|
353
|
+
[4;36;1mSong Create (0.4ms)[0m [0;1mINSERT 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')[0m
|
354
|
+
[4;35;1mSong Create (0.5ms)[0m [0mINSERT 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')[0m
|
@@ -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
|
Binary file
|