rails_slugs 1.0.7
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/MIT-LICENSE +20 -0
- data/README.rdoc +38 -0
- data/Rakefile +38 -0
- data/lib/rails_slugs/active_record/base.rb +143 -0
- data/lib/rails_slugs/active_record/relation.rb +17 -0
- data/lib/rails_slugs/railtie.rb +10 -0
- data/lib/rails_slugs/version.rb +5 -0
- data/lib/rails_slugs.rb +7 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/simple.rb +7 -0
- data/test/dummy/app/models/translatable.rb +8 -0
- data/test/dummy/app/models/translatable_translation.rb +13 -0
- data/test/dummy/app/models/without.rb +5 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20120923194640_create_translatables.rb +9 -0
- data/test/dummy/db/migrate/20120923195534_create_translatables_i18n.rb +13 -0
- data/test/dummy/db/migrate/20120924010158_create_simples.rb +11 -0
- data/test/dummy/db/migrate/20130128234241_create_withouts.rb +9 -0
- data/test/dummy/db/schema.rb +38 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +776 -0
- data/test/dummy/log/test.log +7768 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/rails_slugs_test.rb +9 -0
- data/test/records_test.rb +76 -0
- data/test/test_helper.rb +21 -0
- metadata +173 -0
@@ -0,0 +1,776 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
Connecting to database specified by database.yml
|
3
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
4
|
+
[1m[35m (3.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
5
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
6
|
+
[1m[35m (3.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
7
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
8
|
+
Migrating to CreateI18nModel (20120923194640)
|
9
|
+
[1m[35m (0.1ms)[0m begin transaction
|
10
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "i18n_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
11
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120923194640')
|
12
|
+
[1m[36m (3.4ms)[0m [1mcommit transaction[0m
|
13
|
+
Migrating to CreateSlugs (20120923194937)
|
14
|
+
[1m[35m (0.1ms)[0m begin transaction
|
15
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
16
|
+
Connecting to database specified by database.yml
|
17
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
18
|
+
Migrating to CreateI18nModel (20120923194640)
|
19
|
+
Migrating to CreateSlugs (20120923194937)
|
20
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
21
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
22
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "slugs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "param" varchar(255) NOT NULL, "locale" varchar(255) NOT NULL, "sluggable_id" integer NOT NULL, "sluggable_type" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
23
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("slugs")[0m
|
24
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_slugs_on_param" ON "slugs" ("param")
|
25
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("slugs")[0m
|
26
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_param')
|
27
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_slugs_on_locale" ON "slugs" ("locale")[0m
|
28
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("slugs")
|
29
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_locale')[0m
|
30
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_param')
|
31
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_slugs_on_sluggable_id" ON "slugs" ("sluggable_id")[0m
|
32
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("slugs")
|
33
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_id')[0m
|
34
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_locale')
|
35
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_param')[0m
|
36
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_slugs_on_sluggable_type" ON "slugs" ("sluggable_type")
|
37
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("slugs")[0m
|
38
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_sluggable_type')
|
39
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_id')[0m
|
40
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_locale')
|
41
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_param')[0m
|
42
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_slugs_on_created_at" ON "slugs" ("created_at")
|
43
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("slugs")[0m
|
44
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_created_at')
|
45
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_type')[0m
|
46
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_sluggable_id')
|
47
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_locale')[0m
|
48
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_param')
|
49
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_slugs_on_updated_at" ON "slugs" ("updated_at")[0m
|
50
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120923194937')
|
51
|
+
[1m[36m (3.4ms)[0m [1mcommit transaction[0m
|
52
|
+
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
53
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
54
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models")
|
55
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("slugs")[0m
|
56
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_updated_at')
|
57
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_created_at')[0m
|
58
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_sluggable_type')
|
59
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_id')[0m
|
60
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_locale')
|
61
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_param')[0m
|
62
|
+
Connecting to database specified by database.yml
|
63
|
+
Connecting to database specified by database.yml
|
64
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
65
|
+
Migrating to CreateI18nModel (20120923194640)
|
66
|
+
Migrating to CreateSlugs (20120923194937)
|
67
|
+
Migrating to CreateI18nModelsI18n (20120923195534)
|
68
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
69
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
70
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "i18n_models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "i18n_model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
71
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models_i18n")[0m
|
72
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_i18n_models_i18n_on_i18n_model_id" ON "i18n_models_i18n" ("i18n_model_id")
|
73
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models_i18n")[0m
|
74
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')
|
75
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_i18n_models_i18n_on_locale" ON "i18n_models_i18n" ("locale")[0m
|
76
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
77
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_locale')[0m
|
78
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')
|
79
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_i18n_models_i18n_on_name" ON "i18n_models_i18n" ("name")[0m
|
80
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
81
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_name')[0m
|
82
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_locale')
|
83
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
84
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_i18n_models_i18n_on_created_at" ON "i18n_models_i18n" ("created_at")
|
85
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models_i18n")[0m
|
86
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_created_at')
|
87
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_name')[0m
|
88
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_locale')
|
89
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
90
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_i18n_models_i18n_on_updated_at" ON "i18n_models_i18n" ("updated_at")
|
91
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120923195534')[0m
|
92
|
+
[1m[35m (3.3ms)[0m commit transaction
|
93
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
94
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
95
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models")[0m
|
96
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
97
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_updated_at')[0m
|
98
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_created_at')
|
99
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_name')[0m
|
100
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_locale')
|
101
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
102
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("slugs")
|
103
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_updated_at')[0m
|
104
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_created_at')
|
105
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_type')[0m
|
106
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_sluggable_id')
|
107
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_locale')[0m
|
108
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_param')
|
109
|
+
Connecting to database specified by database.yml
|
110
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
111
|
+
[1m[35m (296.5ms)[0m DROP TABLE "i18n_models"
|
112
|
+
[1m[36m (5.9ms)[0m [1mDELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120923194640'[0m
|
113
|
+
[1m[35m (0.5ms)[0m select sqlite_version(*)
|
114
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
115
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("i18n_models_i18n")
|
116
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_updated_at')[0m
|
117
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_created_at')
|
118
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_name')[0m
|
119
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_locale')
|
120
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
121
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("slugs")
|
122
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_updated_at')[0m
|
123
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_created_at')
|
124
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_type')[0m
|
125
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_sluggable_id')
|
126
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_locale')[0m
|
127
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_param')
|
128
|
+
Connecting to database specified by database.yml
|
129
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
130
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
131
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "i18n_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
132
|
+
[1m[35m (2.5ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120923194640')
|
133
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
134
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
135
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models")[0m
|
136
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
137
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_updated_at')[0m
|
138
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_created_at')
|
139
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_name')[0m
|
140
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_locale')
|
141
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
142
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("slugs")
|
143
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_updated_at')[0m
|
144
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_created_at')
|
145
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_type')[0m
|
146
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_sluggable_id')
|
147
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_locale')[0m
|
148
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_param')
|
149
|
+
Connecting to database specified by database.yml
|
150
|
+
Connecting to database specified by database.yml
|
151
|
+
Connecting to database specified by database.yml
|
152
|
+
Connecting to database specified by database.yml
|
153
|
+
Connecting to database specified by database.yml
|
154
|
+
Connecting to database specified by database.yml
|
155
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
156
|
+
Migrating to CreateI18nModel (20120923194640)
|
157
|
+
Migrating to CreateSlugs (20120923194937)
|
158
|
+
Migrating to CreateI18nModelsI18n (20120923195534)
|
159
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
160
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
161
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models")
|
162
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models_i18n")[0m
|
163
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_updated_at')
|
164
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_created_at')[0m
|
165
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_name')
|
166
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_locale')[0m
|
167
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')
|
168
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("slugs")[0m
|
169
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_updated_at')
|
170
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_created_at')[0m
|
171
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_sluggable_type')
|
172
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_id')[0m
|
173
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_locale')
|
174
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_param')[0m
|
175
|
+
Connecting to database specified by database.yml
|
176
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
177
|
+
Connecting to database specified by database.yml
|
178
|
+
Connecting to database specified by database.yml
|
179
|
+
Connecting to database specified by database.yml
|
180
|
+
|
181
|
+
***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
|
182
|
+
|
183
|
+
Connecting to database specified by database.yml
|
184
|
+
Connecting to database specified by database.yml
|
185
|
+
SQLite3::SQLException: no such column: slugs.i18n_model_id: SELECT "slugs".* FROM "slugs" WHERE "slugs"."i18n_model_id" = 2
|
186
|
+
SQLite3::SQLException: no such column: slugs.i18n_model_id: SELECT "slugs".* FROM "slugs" WHERE "slugs"."i18n_model_id" = 3
|
187
|
+
Connecting to database specified by database.yml
|
188
|
+
Connecting to database specified by database.yml
|
189
|
+
SQLite3::SQLException: no such column: slugs.i18n_model_id: SELECT "slugs".* FROM "slugs" WHERE "slugs"."i18n_model_id" IS NULL AND "slugs"."id" = ? LIMIT 1
|
190
|
+
Connecting to database specified by database.yml
|
191
|
+
Connecting to database specified by database.yml
|
192
|
+
Connecting to database specified by database.yml
|
193
|
+
Connecting to database specified by database.yml
|
194
|
+
Connecting to database specified by database.yml
|
195
|
+
Connecting to database specified by database.yml
|
196
|
+
Connecting to database specified by database.yml
|
197
|
+
Connecting to database specified by database.yml
|
198
|
+
Connecting to database specified by database.yml
|
199
|
+
Connecting to database specified by database.yml
|
200
|
+
Connecting to database specified by database.yml
|
201
|
+
Connecting to database specified by database.yml
|
202
|
+
Connecting to database specified by database.yml
|
203
|
+
Connecting to database specified by database.yml
|
204
|
+
Connecting to database specified by database.yml
|
205
|
+
Connecting to database specified by database.yml
|
206
|
+
Connecting to database specified by database.yml
|
207
|
+
Connecting to database specified by database.yml
|
208
|
+
|
209
|
+
***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
|
210
|
+
|
211
|
+
Connecting to database specified by database.yml
|
212
|
+
|
213
|
+
***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
|
214
|
+
|
215
|
+
Connecting to database specified by database.yml
|
216
|
+
|
217
|
+
***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
|
218
|
+
|
219
|
+
Connecting to database specified by database.yml
|
220
|
+
Connecting to database specified by database.yml
|
221
|
+
Connecting to database specified by database.yml
|
222
|
+
Connecting to database specified by database.yml
|
223
|
+
Connecting to database specified by database.yml
|
224
|
+
Connecting to database specified by database.yml
|
225
|
+
Connecting to database specified by database.yml
|
226
|
+
Connecting to database specified by database.yml
|
227
|
+
Connecting to database specified by database.yml
|
228
|
+
Connecting to database specified by database.yml
|
229
|
+
Connecting to database specified by database.yml
|
230
|
+
Connecting to database specified by database.yml
|
231
|
+
Connecting to database specified by database.yml
|
232
|
+
Connecting to database specified by database.yml
|
233
|
+
Connecting to database specified by database.yml
|
234
|
+
Connecting to database specified by database.yml
|
235
|
+
Connecting to database specified by database.yml
|
236
|
+
Connecting to database specified by database.yml
|
237
|
+
Connecting to database specified by database.yml
|
238
|
+
Connecting to database specified by database.yml
|
239
|
+
Connecting to database specified by database.yml
|
240
|
+
Connecting to database specified by database.yml
|
241
|
+
Connecting to database specified by database.yml
|
242
|
+
Connecting to database specified by database.yml
|
243
|
+
Connecting to database specified by database.yml
|
244
|
+
Connecting to database specified by database.yml
|
245
|
+
Connecting to database specified by database.yml
|
246
|
+
Connecting to database specified by database.yml
|
247
|
+
Connecting to database specified by database.yml
|
248
|
+
Connecting to database specified by database.yml
|
249
|
+
Connecting to database specified by database.yml
|
250
|
+
Connecting to database specified by database.yml
|
251
|
+
Connecting to database specified by database.yml
|
252
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
253
|
+
Migrating to CreateI18nModel (20120923194640)
|
254
|
+
Migrating to CreateSlugs (20120923194937)
|
255
|
+
Migrating to CreateI18nModelsI18n (20120923195534)
|
256
|
+
Migrating to I18nModelAge (20120924004426)
|
257
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
258
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
259
|
+
[1m[35m (0.2ms)[0m ALTER TABLE "i18n_model_i18n" ADD "age" integer
|
260
|
+
SQLite3::SQLException: no such table: i18n_model_i18n: ALTER TABLE "i18n_model_i18n" ADD "age" integer
|
261
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
262
|
+
Connecting to database specified by database.yml
|
263
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
264
|
+
Migrating to CreateI18nModel (20120923194640)
|
265
|
+
Migrating to CreateSlugs (20120923194937)
|
266
|
+
Migrating to CreateI18nModelsI18n (20120923195534)
|
267
|
+
Migrating to I18nModelAge (20120924004426)
|
268
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
269
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
270
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "i18n_models_i18n" ADD "age" integer
|
271
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120924004426')[0m
|
272
|
+
[1m[35m (59.6ms)[0m commit transaction
|
273
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
274
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
275
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models")[0m
|
276
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
277
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_updated_at')[0m
|
278
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_created_at')
|
279
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_name')[0m
|
280
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_locale')
|
281
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
282
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("slugs")
|
283
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_updated_at')[0m
|
284
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_created_at')
|
285
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_type')[0m
|
286
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_sluggable_id')
|
287
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_locale')[0m
|
288
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_param')
|
289
|
+
Connecting to database specified by database.yml
|
290
|
+
Connecting to database specified by database.yml
|
291
|
+
Connecting to database specified by database.yml
|
292
|
+
Connecting to database specified by database.yml
|
293
|
+
Connecting to database specified by database.yml
|
294
|
+
Connecting to database specified by database.yml
|
295
|
+
Connecting to database specified by database.yml
|
296
|
+
Connecting to database specified by database.yml
|
297
|
+
Connecting to database specified by database.yml
|
298
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
299
|
+
Migrating to CreateI18nModel (20120923194640)
|
300
|
+
Migrating to CreateSlugs (20120923194937)
|
301
|
+
Migrating to CreateI18nModelsI18n (20120923195534)
|
302
|
+
Migrating to I18nModelAge (20120924004426)
|
303
|
+
Migrating to CreateModels (20120924010158)
|
304
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
305
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
306
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer)
|
307
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120924010158')[0m
|
308
|
+
[1m[35m (3.1ms)[0m commit transaction
|
309
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
310
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
311
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models")[0m
|
312
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
313
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_updated_at')[0m
|
314
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_created_at')
|
315
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_name')[0m
|
316
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_locale')
|
317
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
318
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("models")
|
319
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("slugs")[0m
|
320
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_updated_at')
|
321
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_created_at')[0m
|
322
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_sluggable_type')
|
323
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_id')[0m
|
324
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_locale')
|
325
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_param')[0m
|
326
|
+
Connecting to database specified by database.yml
|
327
|
+
Connecting to database specified by database.yml
|
328
|
+
Connecting to database specified by database.yml
|
329
|
+
Connecting to database specified by database.yml
|
330
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
331
|
+
Migrating to CreateI18nModel (20120923194640)
|
332
|
+
Migrating to CreateSlugs (20120923194937)
|
333
|
+
Migrating to CreateI18nModelsI18n (20120923195534)
|
334
|
+
Migrating to I18nModelAge (20120924004426)
|
335
|
+
Migrating to CreateModels (20120924010158)
|
336
|
+
Migrating to ModelSlug (20120924012314)
|
337
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
338
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
339
|
+
[1m[35m (0.1ms)[0m ALTER TABLE "model" ADD "slug" varchar(255)
|
340
|
+
SQLite3::SQLException: no such table: model: ALTER TABLE "model" ADD "slug" varchar(255)
|
341
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
342
|
+
Connecting to database specified by database.yml
|
343
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
344
|
+
Migrating to CreateI18nModel (20120923194640)
|
345
|
+
Migrating to CreateSlugs (20120923194937)
|
346
|
+
Migrating to CreateI18nModelsI18n (20120923195534)
|
347
|
+
Migrating to I18nModelAge (20120924004426)
|
348
|
+
Migrating to CreateModels (20120924010158)
|
349
|
+
Migrating to ModelSlug (20120924012314)
|
350
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
351
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
352
|
+
[1m[35m (0.4ms)[0m ALTER TABLE "models" ADD "slug" varchar(255)
|
353
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120924012314')[0m
|
354
|
+
[1m[35m (57.1ms)[0m commit transaction
|
355
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
356
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
357
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models")[0m
|
358
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
359
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_updated_at')[0m
|
360
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_created_at')
|
361
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_name')[0m
|
362
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_locale')
|
363
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
364
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("models")
|
365
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("slugs")[0m
|
366
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_updated_at')
|
367
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_created_at')[0m
|
368
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_sluggable_type')
|
369
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_sluggable_id')[0m
|
370
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_slugs_on_locale')
|
371
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_slugs_on_param')[0m
|
372
|
+
Connecting to database specified by database.yml
|
373
|
+
Connecting to database specified by database.yml
|
374
|
+
Connecting to database specified by database.yml
|
375
|
+
Connecting to database specified by database.yml
|
376
|
+
Connecting to database specified by database.yml
|
377
|
+
Connecting to database specified by database.yml
|
378
|
+
Connecting to database specified by database.yml
|
379
|
+
Connecting to database specified by database.yml
|
380
|
+
Connecting to database specified by database.yml
|
381
|
+
Connecting to database specified by database.yml
|
382
|
+
Connecting to database specified by database.yml
|
383
|
+
Connecting to database specified by database.yml
|
384
|
+
Connecting to database specified by database.yml
|
385
|
+
Connecting to database specified by database.yml
|
386
|
+
Connecting to database specified by database.yml
|
387
|
+
Connecting to database specified by database.yml
|
388
|
+
Connecting to database specified by database.yml
|
389
|
+
Connecting to database specified by database.yml
|
390
|
+
Connecting to database specified by database.yml
|
391
|
+
Connecting to database specified by database.yml
|
392
|
+
Connecting to database specified by database.yml
|
393
|
+
Connecting to database specified by database.yml
|
394
|
+
Connecting to database specified by database.yml
|
395
|
+
SQLite3::SQLException: no such column: slugs.param: SELECT "i18n_models"."id" AS t0_r0, "i18n_models"."created_at" AS t0_r1, "i18n_models"."updated_at" AS t0_r2, "i18n_models_i18n"."id" AS t1_r0, "i18n_models_i18n"."i18n_model_id" AS t1_r1, "i18n_models_i18n"."locale" AS t1_r2, "i18n_models_i18n"."name" AS t1_r3, "i18n_models_i18n"."created_at" AS t1_r4, "i18n_models_i18n"."updated_at" AS t1_r5, "i18n_models_i18n"."age" AS t1_r6 FROM "i18n_models" LEFT OUTER JOIN "i18n_models_i18n" ON "i18n_models_i18n"."i18n_model_id" = "i18n_models"."id" WHERE "slugs"."param" = 'instance-variable'
|
396
|
+
SQLite3::SQLException: no such column: slugs.param: SELECT "i18n_models"."id" AS t0_r0, "i18n_models"."created_at" AS t0_r1, "i18n_models"."updated_at" AS t0_r2, "i18n_models_i18n"."id" AS t1_r0, "i18n_models_i18n"."i18n_model_id" AS t1_r1, "i18n_models_i18n"."locale" AS t1_r2, "i18n_models_i18n"."name" AS t1_r3, "i18n_models_i18n"."created_at" AS t1_r4, "i18n_models_i18n"."updated_at" AS t1_r5, "i18n_models_i18n"."age" AS t1_r6 FROM "i18n_models" LEFT OUTER JOIN "i18n_models_i18n" ON "i18n_models_i18n"."i18n_model_id" = "i18n_models"."id" WHERE "slugs"."param" = 'age'
|
397
|
+
Connecting to database specified by database.yml
|
398
|
+
Connecting to database specified by database.yml
|
399
|
+
Connecting to database specified by database.yml
|
400
|
+
Connecting to database specified by database.yml
|
401
|
+
Connecting to database specified by database.yml
|
402
|
+
Connecting to database specified by database.yml
|
403
|
+
Connecting to database specified by database.yml
|
404
|
+
Connecting to database specified by database.yml
|
405
|
+
Connecting to database specified by database.yml
|
406
|
+
Connecting to database specified by database.yml
|
407
|
+
Connecting to database specified by database.yml
|
408
|
+
SQLite3::SQLException: no such column: slugs.param: SELECT 1 AS one FROM "i18n_models" WHERE "slugs"."param" = 'name2' LIMIT 1
|
409
|
+
SQLite3::SQLException: no such column: slugs.param: SELECT 1 AS one FROM "i18n_models" WHERE "slugs"."param" = 'name2' LIMIT 1
|
410
|
+
Connecting to database specified by database.yml
|
411
|
+
Connecting to database specified by database.yml
|
412
|
+
Connecting to database specified by database.yml
|
413
|
+
Connecting to database specified by database.yml
|
414
|
+
Connecting to database specified by database.yml
|
415
|
+
Connecting to database specified by database.yml
|
416
|
+
Connecting to database specified by database.yml
|
417
|
+
Connecting to database specified by database.yml
|
418
|
+
Connecting to database specified by database.yml
|
419
|
+
Connecting to database specified by database.yml
|
420
|
+
Connecting to database specified by database.yml
|
421
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
422
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
423
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
424
|
+
[1m[35m (2.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
425
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
426
|
+
Migrating to CreateI18nModel (20120923194640)
|
427
|
+
[1m[35m (0.0ms)[0m begin transaction
|
428
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "i18n_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
429
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120923194640')
|
430
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
431
|
+
Migrating to CreateI18nModelsI18n (20120923195534)
|
432
|
+
[1m[35m (0.0ms)[0m begin transaction
|
433
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "i18n_models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "i18n_model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "age" integer NOT NULL, "slug" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
434
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
435
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_i18n_models_i18n_on_i18n_model_id" ON "i18n_models_i18n" ("i18n_model_id")[0m
|
436
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
437
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
438
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_i18n_models_i18n_on_locale" ON "i18n_models_i18n" ("locale")
|
439
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models_i18n")[0m
|
440
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_locale')
|
441
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
442
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_i18n_models_i18n_on_name" ON "i18n_models_i18n" ("name")
|
443
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models_i18n")[0m
|
444
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_name')
|
445
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_locale')[0m
|
446
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')
|
447
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_i18n_models_i18n_on_created_at" ON "i18n_models_i18n" ("created_at")[0m
|
448
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
449
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_created_at')[0m
|
450
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_name')
|
451
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_locale')[0m
|
452
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')
|
453
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_i18n_models_i18n_on_updated_at" ON "i18n_models_i18n" ("updated_at")[0m
|
454
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120923195534')
|
455
|
+
[1m[36m (3.3ms)[0m [1mcommit transaction[0m
|
456
|
+
Migrating to CreateModels (20120924010158)
|
457
|
+
[1m[35m (0.0ms)[0m begin transaction
|
458
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "slug" varchar(255)) [0m
|
459
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120924010158')
|
460
|
+
[1m[36m (3.1ms)[0m [1mcommit transaction[0m
|
461
|
+
[1m[35m (0.6ms)[0m select sqlite_version(*)
|
462
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
463
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models")
|
464
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("i18n_models_i18n")[0m
|
465
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_updated_at')
|
466
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_created_at')[0m
|
467
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_name')
|
468
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_locale')[0m
|
469
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')
|
470
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("models")[0m
|
471
|
+
Connecting to database specified by database.yml
|
472
|
+
Connecting to database specified by database.yml
|
473
|
+
Connecting to database specified by database.yml
|
474
|
+
Connecting to database specified by database.yml
|
475
|
+
Connecting to database specified by database.yml
|
476
|
+
Connecting to database specified by database.yml
|
477
|
+
Connecting to database specified by database.yml
|
478
|
+
Connecting to database specified by database.yml
|
479
|
+
Connecting to database specified by database.yml
|
480
|
+
Connecting to database specified by database.yml
|
481
|
+
Connecting to database specified by database.yml
|
482
|
+
Connecting to database specified by database.yml
|
483
|
+
Connecting to database specified by database.yml
|
484
|
+
Connecting to database specified by database.yml
|
485
|
+
Connecting to database specified by database.yml
|
486
|
+
Connecting to database specified by database.yml
|
487
|
+
Connecting to database specified by database.yml
|
488
|
+
Connecting to database specified by database.yml
|
489
|
+
Connecting to database specified by database.yml
|
490
|
+
Connecting to database specified by database.yml
|
491
|
+
Connecting to database specified by database.yml
|
492
|
+
Connecting to database specified by database.yml
|
493
|
+
Connecting to database specified by database.yml
|
494
|
+
Connecting to database specified by database.yml
|
495
|
+
Connecting to database specified by database.yml
|
496
|
+
Connecting to database specified by database.yml
|
497
|
+
Connecting to database specified by database.yml
|
498
|
+
Connecting to database specified by database.yml
|
499
|
+
Connecting to database specified by database.yml
|
500
|
+
Connecting to database specified by database.yml
|
501
|
+
SQLite3::ConstraintException: i18n_models_i18n.slug may not be NULL: INSERT INTO "i18n_models_i18n" ("age", "created_at", "i18n_model_id", "locale", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)
|
502
|
+
SQLite3::ConstraintException: i18n_models_i18n.slug may not be NULL: INSERT INTO "i18n_models_i18n" ("age", "created_at", "i18n_model_id", "locale", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)
|
503
|
+
SQLite3::ConstraintException: i18n_models_i18n.slug may not be NULL: INSERT INTO "i18n_models_i18n" ("age", "created_at", "i18n_model_id", "locale", "name", "slug", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)
|
504
|
+
Connecting to database specified by database.yml
|
505
|
+
Connecting to database specified by database.yml
|
506
|
+
Connecting to database specified by database.yml
|
507
|
+
Connecting to database specified by database.yml
|
508
|
+
Connecting to database specified by database.yml
|
509
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
510
|
+
[1m[35m (123.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
511
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
512
|
+
[1m[35m (3.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
513
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
514
|
+
Migrating to CreateI18nModel (20120923194640)
|
515
|
+
[1m[35m (0.1ms)[0m begin transaction
|
516
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "i18n_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
517
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120923194640')
|
518
|
+
[1m[36m (3.2ms)[0m [1mcommit transaction[0m
|
519
|
+
Migrating to CreateI18nModelsI18n (20120923195534)
|
520
|
+
[1m[35m (0.1ms)[0m begin transaction
|
521
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "i18n_models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "i18n_model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "age" integer NOT NULL, "slug" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
522
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
523
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_i18n_models_i18n_on_i18n_model_id" ON "i18n_models_i18n" ("i18n_model_id")[0m
|
524
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
525
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
526
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_i18n_models_i18n_on_locale" ON "i18n_models_i18n" ("locale")
|
527
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models_i18n")[0m
|
528
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_locale')
|
529
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')[0m
|
530
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_i18n_models_i18n_on_name" ON "i18n_models_i18n" ("name")
|
531
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models_i18n")[0m
|
532
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_name')
|
533
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_locale')[0m
|
534
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')
|
535
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_i18n_models_i18n_on_created_at" ON "i18n_models_i18n" ("created_at")[0m
|
536
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models_i18n")
|
537
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_created_at')[0m
|
538
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_name')
|
539
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_locale')[0m
|
540
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')
|
541
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_i18n_models_i18n_on_updated_at" ON "i18n_models_i18n" ("updated_at")[0m
|
542
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120923195534')
|
543
|
+
[1m[36m (4.7ms)[0m [1mcommit transaction[0m
|
544
|
+
Migrating to CreateModels (20120924010158)
|
545
|
+
[1m[35m (0.0ms)[0m begin transaction
|
546
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "slug" varchar(255)) [0m
|
547
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120924010158')
|
548
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
549
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
550
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
551
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("i18n_models")
|
552
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("i18n_models_i18n")[0m
|
553
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_updated_at')
|
554
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_created_at')[0m
|
555
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_name')
|
556
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_i18n_models_i18n_on_locale')[0m
|
557
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_i18n_models_i18n_on_i18n_model_id')
|
558
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("models")[0m
|
559
|
+
Connecting to database specified by database.yml
|
560
|
+
Connecting to database specified by database.yml
|
561
|
+
Connecting to database specified by database.yml
|
562
|
+
Connecting to database specified by database.yml
|
563
|
+
SQLite3::SQLException: no such column: I18nModel.id: SELECT "i18n_models".* FROM "i18n_models" INNER JOIN i18n_models_i18n t ON t.i18n_model_id = I18nModel.id WHERE (t.slug = 'john' AND t.locale = 'en') LIMIT 1
|
564
|
+
Connecting to database specified by database.yml
|
565
|
+
SQLite3::SQLException: no such column: I18nModel.id: SELECT "i18n_models".* FROM "i18n_models" INNER JOIN i18n_models_i18n t ON t.i18n_model_id = I18nModel.id WHERE (t.slug = 'john' AND t.locale = 'en') LIMIT 1
|
566
|
+
Connecting to database specified by database.yml
|
567
|
+
Connecting to database specified by database.yml
|
568
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
569
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
570
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
571
|
+
[1m[35m (2.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
572
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
573
|
+
Migrating to CreateTranslatableModels (20120923194640)
|
574
|
+
[1m[35m (0.0ms)[0m begin transaction
|
575
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "translatable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
576
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120923194640')
|
577
|
+
[1m[36m (3.3ms)[0m [1mcommit transaction[0m
|
578
|
+
Migrating to CreateTranslatableModelsI18n (20120923195534)
|
579
|
+
[1m[35m (0.0ms)[0m begin transaction
|
580
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "translatable_models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "age" integer NOT NULL, "slug" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
581
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("translatable_models_i18n")
|
582
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translatable_models_i18n_on_translatable_model_id" ON "translatable_models_i18n" ("translatable_model_id")[0m
|
583
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("translatable_models_i18n")
|
584
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_translatable_model_id')[0m
|
585
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_translatable_models_i18n_on_locale" ON "translatable_models_i18n" ("locale")
|
586
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_models_i18n")[0m
|
587
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_locale')
|
588
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_translatable_model_id')[0m
|
589
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_translatable_models_i18n_on_name" ON "translatable_models_i18n" ("name")
|
590
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_models_i18n")[0m
|
591
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_name')
|
592
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_locale')[0m
|
593
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_translatable_model_id')
|
594
|
+
[1m[36m (0.2ms)[0m [1mCREATE INDEX "index_translatable_models_i18n_on_created_at" ON "translatable_models_i18n" ("created_at")[0m
|
595
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("translatable_models_i18n")
|
596
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_created_at')[0m
|
597
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_name')
|
598
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_locale')[0m
|
599
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_translatable_model_id')
|
600
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translatable_models_i18n_on_updated_at" ON "translatable_models_i18n" ("updated_at")[0m
|
601
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120923195534')
|
602
|
+
[1m[36m (3.5ms)[0m [1mcommit transaction[0m
|
603
|
+
Migrating to CreateModels (20120924010158)
|
604
|
+
[1m[35m (0.0ms)[0m begin transaction
|
605
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "slug" varchar(255)) [0m
|
606
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120924010158')
|
607
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
608
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
609
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
610
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("models")
|
611
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_models")[0m
|
612
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("translatable_models_i18n")
|
613
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_updated_at')[0m
|
614
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_created_at')
|
615
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_name')[0m
|
616
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_locale')
|
617
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_translatable_model_id')[0m
|
618
|
+
Connecting to database specified by database.yml
|
619
|
+
Connecting to database specified by database.yml
|
620
|
+
Connecting to database specified by database.yml
|
621
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
622
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
623
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "slug" varchar(255)) [0m
|
624
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "translatable_models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
625
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "translatable_models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "age" integer NOT NULL, "slug" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
626
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("translatable_models_i18n")
|
627
|
+
[1m[36m (2.7ms)[0m [1mCREATE INDEX "index_translatable_models_i18n_on_created_at" ON "translatable_models_i18n" ("created_at")[0m
|
628
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("translatable_models_i18n")
|
629
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_created_at')[0m
|
630
|
+
[1m[35m (2.9ms)[0m CREATE INDEX "index_translatable_models_i18n_on_locale" ON "translatable_models_i18n" ("locale")
|
631
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("translatable_models_i18n")[0m
|
632
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_locale')
|
633
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_created_at')[0m
|
634
|
+
[1m[35m (2.9ms)[0m CREATE INDEX "index_translatable_models_i18n_on_name" ON "translatable_models_i18n" ("name")
|
635
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_models_i18n")[0m
|
636
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_name')
|
637
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_locale')[0m
|
638
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_created_at')
|
639
|
+
[1m[36m (2.8ms)[0m [1mCREATE INDEX "index_translatable_models_i18n_on_translatable_model_id" ON "translatable_models_i18n" ("translatable_model_id")[0m
|
640
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("translatable_models_i18n")
|
641
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_translatable_model_id')[0m
|
642
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_name')
|
643
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_models_i18n_on_locale')[0m
|
644
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_models_i18n_on_created_at')
|
645
|
+
[1m[36m (3.7ms)[0m [1mCREATE INDEX "index_translatable_models_i18n_on_updated_at" ON "translatable_models_i18n" ("updated_at")[0m
|
646
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
647
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
648
|
+
[1m[35m (4.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
649
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
650
|
+
[1m[35m (2.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120924010158')
|
651
|
+
[1m[36m (2.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120923194640')[0m
|
652
|
+
[1m[35m (4.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120923195534')
|
653
|
+
Connecting to database specified by database.yml
|
654
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
655
|
+
[1m[35m (2.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
656
|
+
[1m[36m (2.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
657
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
658
|
+
Migrating to CreateTranslatables (20120923194640)
|
659
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
660
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "translatables" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
661
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120923194640')[0m
|
662
|
+
[1m[35m (3.0ms)[0m commit transaction
|
663
|
+
Migrating to CreateTranslatablesI18n (20120923195534)
|
664
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
665
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "translatables_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "age" integer NOT NULL, "slug" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
666
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translatables_i18n_on_translatable_id" ON "translatables_i18n" ("translatable_id")[0m
|
667
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_translatables_i18n_on_locale" ON "translatables_i18n" ("locale")
|
668
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translatables_i18n_on_name" ON "translatables_i18n" ("name")[0m
|
669
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_translatables_i18n_on_created_at" ON "translatables_i18n" ("created_at")
|
670
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translatables_i18n_on_updated_at" ON "translatables_i18n" ("updated_at")[0m
|
671
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120923195534')
|
672
|
+
[1m[36m (3.2ms)[0m [1mcommit transaction[0m
|
673
|
+
Migrating to CreateSimples (20120924010158)
|
674
|
+
[1m[35m (0.1ms)[0m begin transaction
|
675
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "simples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "slug" varchar(255)) [0m
|
676
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120924010158')
|
677
|
+
[1m[36m (4.9ms)[0m [1mcommit transaction[0m
|
678
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
679
|
+
Connecting to database specified by database.yml
|
680
|
+
Connecting to database specified by database.yml
|
681
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
682
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
683
|
+
[1m[36m (51.5ms)[0m [1mCREATE TABLE "simples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "slug" varchar(255)) [0m
|
684
|
+
[1m[35m (3.5ms)[0m CREATE TABLE "translatables" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
685
|
+
[1m[36m (3.5ms)[0m [1mCREATE TABLE "translatables_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "age" integer NOT NULL, "slug" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
686
|
+
[1m[35m (3.6ms)[0m CREATE INDEX "index_translatables_i18n_on_created_at" ON "translatables_i18n" ("created_at")
|
687
|
+
[1m[36m (4.2ms)[0m [1mCREATE INDEX "index_translatables_i18n_on_locale" ON "translatables_i18n" ("locale")[0m
|
688
|
+
[1m[35m (3.0ms)[0m CREATE INDEX "index_translatables_i18n_on_name" ON "translatables_i18n" ("name")
|
689
|
+
[1m[36m (3.1ms)[0m [1mCREATE INDEX "index_translatables_i18n_on_translatable_id" ON "translatables_i18n" ("translatable_id")[0m
|
690
|
+
[1m[35m (2.8ms)[0m CREATE INDEX "index_translatables_i18n_on_updated_at" ON "translatables_i18n" ("updated_at")
|
691
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
692
|
+
[1m[35m (4.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
693
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
694
|
+
[1m[35m (2.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120924010158')
|
695
|
+
[1m[36m (2.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120923194640')[0m
|
696
|
+
[1m[35m (3.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120923195534')
|
697
|
+
Connecting to database specified by database.yml
|
698
|
+
[1m[36m (1.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
699
|
+
Migrating to CreateTranslatables (20120923194640)
|
700
|
+
Migrating to CreateTranslatablesI18n (20120923195534)
|
701
|
+
Migrating to CreateSimples (20120924010158)
|
702
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
703
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
704
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
705
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
706
|
+
[1m[35m (2.5ms)[0m DROP TABLE "simples"
|
707
|
+
[1m[36m (2.3ms)[0m [1mCREATE TABLE "simples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "slug" varchar(255)) [0m
|
708
|
+
[1m[35m (2.8ms)[0m DROP TABLE "translatables"
|
709
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "translatables" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
710
|
+
[1m[35m (2.6ms)[0m DROP TABLE "translatables_i18n"
|
711
|
+
[1m[36m (3.1ms)[0m [1mCREATE TABLE "translatables_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "age" integer NOT NULL, "slug" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
712
|
+
[1m[35m (3.1ms)[0m CREATE INDEX "index_translatables_i18n_on_created_at" ON "translatables_i18n" ("created_at")
|
713
|
+
[1m[36m (3.0ms)[0m [1mCREATE INDEX "index_translatables_i18n_on_locale" ON "translatables_i18n" ("locale")[0m
|
714
|
+
[1m[35m (3.1ms)[0m CREATE INDEX "index_translatables_i18n_on_name" ON "translatables_i18n" ("name")
|
715
|
+
[1m[36m (3.5ms)[0m [1mCREATE INDEX "index_translatables_i18n_on_translatable_id" ON "translatables_i18n" ("translatable_id")[0m
|
716
|
+
[1m[35m (3.3ms)[0m CREATE INDEX "index_translatables_i18n_on_updated_at" ON "translatables_i18n" ("updated_at")
|
717
|
+
[1m[36m (9.4ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
718
|
+
Connecting to database specified by database.yml
|
719
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
720
|
+
Migrating to CreateTranslatables (20120923194640)
|
721
|
+
Migrating to CreateTranslatablesI18n (20120923195534)
|
722
|
+
Migrating to CreateSimples (20120924010158)
|
723
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
724
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
725
|
+
Connecting to database specified by database.yml
|
726
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM schema_migrations[0m
|
727
|
+
Connecting to database specified by database.yml
|
728
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
729
|
+
Migrating to CreateTranslatables (20120923194640)
|
730
|
+
Migrating to CreateTranslatablesI18n (20120923195534)
|
731
|
+
Migrating to CreateSimples (20120924010158)
|
732
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
733
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
734
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
735
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
736
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "simples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "slug" varchar(255))
|
737
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "translatables" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
738
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "translatables_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "age" integer NOT NULL, "slug" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
739
|
+
[1m[36m (0.2ms)[0m [1mCREATE INDEX "index_translatables_i18n_on_created_at" ON "translatables_i18n" ("created_at")[0m
|
740
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_translatables_i18n_on_locale" ON "translatables_i18n" ("locale")
|
741
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translatables_i18n_on_name" ON "translatables_i18n" ("name")[0m
|
742
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_translatables_i18n_on_translatable_id" ON "translatables_i18n" ("translatable_id")
|
743
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translatables_i18n_on_updated_at" ON "translatables_i18n" ("updated_at")[0m
|
744
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
745
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
746
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
747
|
+
[1m[36m (0.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120924010158')[0m
|
748
|
+
[1m[35m (0.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120923194640')
|
749
|
+
[1m[36m (0.0ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120923195534')[0m
|
750
|
+
Connecting to database specified by database.yml
|
751
|
+
Connecting to database specified by database.yml
|
752
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
753
|
+
[1m[35m (51.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
754
|
+
[1m[36m (3.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
755
|
+
[1m[35m (0.2ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
756
|
+
Migrating to CreateTranslatables (20120923194640)
|
757
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
758
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "translatables" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "dummy" varchar(255))
|
759
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120923194640')[0m
|
760
|
+
[1m[35m (3.1ms)[0m commit transaction
|
761
|
+
Migrating to CreateTranslatablesI18n (20120923195534)
|
762
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
763
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "translatables_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "age" integer NOT NULL, "slug" varchar(255) NOT NULL)
|
764
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120923195534')[0m
|
765
|
+
[1m[35m (3.4ms)[0m commit transaction
|
766
|
+
Migrating to CreateSimples (20120924010158)
|
767
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
768
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "simples" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "age" integer, "slug" varchar(255))
|
769
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120924010158')[0m
|
770
|
+
[1m[35m (3.5ms)[0m commit transaction
|
771
|
+
Migrating to CreateWithouts (20130128234241)
|
772
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
773
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "withouts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
|
774
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130128234241')[0m
|
775
|
+
[1m[35m (4.5ms)[0m commit transaction
|
776
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|