rails_i18n_record 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +45 -0
- data/Rakefile +38 -0
- data/lib/generators/i18n_generator.rb +26 -0
- data/lib/generators/templates/migration.erb +19 -0
- data/lib/generators/templates/model.erb +13 -0
- data/lib/rails_i18n_record/base.rb +77 -0
- data/lib/rails_i18n_record/railtie.rb +9 -0
- data/lib/rails_i18n_record/version.rb +5 -0
- data/lib/rails_i18n_record.rb +6 -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/model.rb +4 -0
- data/test/dummy/app/models/model_translation.rb +13 -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/20120831205714_create_models.rb +7 -0
- data/test/dummy/db/migrate/20130404161713_create_models_i18n.rb +19 -0
- data/test/dummy/db/schema.rb +35 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +499 -0
- data/test/dummy/log/test.log +2296 -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/generators_test.rb +24 -0
- data/test/rails_i18n_record_test.rb +9 -0
- data/test/records_test.rb +27 -0
- data/test/test_helper.rb +21 -0
- metadata +170 -0
@@ -0,0 +1,499 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
Connecting to database specified by database.yml
|
3
|
+
Connecting to database specified by database.yml
|
4
|
+
Connecting to database specified by database.yml
|
5
|
+
Connecting to database specified by database.yml
|
6
|
+
Connecting to database specified by database.yml
|
7
|
+
Connecting to database specified by database.yml
|
8
|
+
Connecting to database specified by database.yml
|
9
|
+
Connecting to database specified by database.yml
|
10
|
+
Connecting to database specified by database.yml
|
11
|
+
Connecting to database specified by database.yml
|
12
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
13
|
+
[1m[35m (52.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
14
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
15
|
+
[1m[35m (3.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
16
|
+
[1m[36m (0.2ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
17
|
+
Migrating to CreateSomethings (20120831200235)
|
18
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19
|
+
[1m[36m (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120831200235')[0m
|
20
|
+
[1m[35m (2.7ms)[0m commit transaction
|
21
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
22
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
23
|
+
Connecting to database specified by database.yml
|
24
|
+
Connecting to database specified by database.yml
|
25
|
+
Connecting to database specified by database.yml
|
26
|
+
Connecting to database specified by database.yml
|
27
|
+
Connecting to database specified by database.yml
|
28
|
+
Connecting to database specified by database.yml
|
29
|
+
Connecting to database specified by database.yml
|
30
|
+
Connecting to database specified by database.yml
|
31
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
32
|
+
Migrating to CreateSomethings (20120831200235)
|
33
|
+
Migrating to CreateSomethingsI18n (20120831201902)
|
34
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
35
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
36
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "somethings_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "something_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
37
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("somethings_i18n")[0m
|
38
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_somethings_i18n_on_something_id" ON "somethings_i18n" ("something_id")
|
39
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("somethings_i18n")[0m
|
40
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_something_id')
|
41
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_somethings_i18n_on_locale" ON "somethings_i18n" ("locale")[0m
|
42
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("somethings_i18n")
|
43
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_locale')[0m
|
44
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_something_id')
|
45
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_somethings_i18n_on_name" ON "somethings_i18n" ("name")[0m
|
46
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("somethings_i18n")
|
47
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_name')[0m
|
48
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_locale')
|
49
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_something_id')[0m
|
50
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_somethings_i18n_on_created_at" ON "somethings_i18n" ("created_at")
|
51
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("somethings_i18n")[0m
|
52
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_created_at')
|
53
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_name')[0m
|
54
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_locale')
|
55
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_something_id')[0m
|
56
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_somethings_i18n_on_updated_at" ON "somethings_i18n" ("updated_at")
|
57
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120831201902')[0m
|
58
|
+
[1m[35m (56.0ms)[0m commit transaction
|
59
|
+
[1m[36m (0.4ms)[0m [1mselect sqlite_version(*)[0m
|
60
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
61
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("somethings_i18n")[0m
|
62
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_updated_at')
|
63
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_created_at')[0m
|
64
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_name')
|
65
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_locale')[0m
|
66
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_something_id')
|
67
|
+
Connecting to database specified by database.yml
|
68
|
+
Connecting to database specified by database.yml
|
69
|
+
[1m[36m (1.5ms)[0m [1mselect sqlite_version(*)[0m
|
70
|
+
[1m[35m (2.2ms)[0m CREATE TABLE "somethings_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "something_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.4ms)[0m [1mPRAGMA index_list("somethings_i18n")[0m
|
72
|
+
[1m[35m (2.8ms)[0m CREATE INDEX "index_somethings_i18n_on_created_at" ON "somethings_i18n" ("created_at")
|
73
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("somethings_i18n")[0m
|
74
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_created_at')
|
75
|
+
[1m[36m (2.7ms)[0m [1mCREATE INDEX "index_somethings_i18n_on_locale" ON "somethings_i18n" ("locale")[0m
|
76
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("somethings_i18n")
|
77
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_locale')[0m
|
78
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_created_at')
|
79
|
+
[1m[36m (2.7ms)[0m [1mCREATE INDEX "index_somethings_i18n_on_name" ON "somethings_i18n" ("name")[0m
|
80
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("somethings_i18n")
|
81
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_name')[0m
|
82
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_locale')
|
83
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_created_at')[0m
|
84
|
+
[1m[35m (3.0ms)[0m CREATE INDEX "index_somethings_i18n_on_something_id" ON "somethings_i18n" ("something_id")
|
85
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("somethings_i18n")[0m
|
86
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_something_id')
|
87
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_name')[0m
|
88
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_somethings_i18n_on_locale')
|
89
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_somethings_i18n_on_created_at')[0m
|
90
|
+
[1m[35m (2.6ms)[0m CREATE INDEX "index_somethings_i18n_on_updated_at" ON "somethings_i18n" ("updated_at")
|
91
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
92
|
+
[1m[35m (0.1ms)[0m PRAGMA index_list("schema_migrations")
|
93
|
+
[1m[36m (2.6ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
94
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
95
|
+
[1m[36m (2.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120831201902')[0m
|
96
|
+
[1m[35m (2.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120831200235')
|
97
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
98
|
+
Connecting to database specified by database.yml
|
99
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
100
|
+
Connecting to database specified by database.yml
|
101
|
+
Connecting to database specified by database.yml
|
102
|
+
Connecting to database specified by database.yml
|
103
|
+
Connecting to database specified by database.yml
|
104
|
+
Connecting to database specified by database.yml
|
105
|
+
Connecting to database specified by database.yml
|
106
|
+
Connecting to database specified by database.yml
|
107
|
+
Connecting to database specified by database.yml
|
108
|
+
Connecting to database specified by database.yml
|
109
|
+
Connecting to database specified by database.yml
|
110
|
+
Connecting to database specified by database.yml
|
111
|
+
Connecting to database specified by database.yml
|
112
|
+
Connecting to database specified by database.yml
|
113
|
+
Connecting to database specified by database.yml
|
114
|
+
Connecting to database specified by database.yml
|
115
|
+
Connecting to database specified by database.yml
|
116
|
+
Connecting to database specified by database.yml
|
117
|
+
Connecting to database specified by database.yml
|
118
|
+
Connecting to database specified by database.yml
|
119
|
+
Connecting to database specified by database.yml
|
120
|
+
Connecting to database specified by database.yml
|
121
|
+
Connecting to database specified by database.yml
|
122
|
+
Connecting to database specified by database.yml
|
123
|
+
Connecting to database specified by database.yml
|
124
|
+
Connecting to database specified by database.yml
|
125
|
+
Connecting to database specified by database.yml
|
126
|
+
Connecting to database specified by database.yml
|
127
|
+
Connecting to database specified by database.yml
|
128
|
+
Connecting to database specified by database.yml
|
129
|
+
Connecting to database specified by database.yml
|
130
|
+
Connecting to database specified by database.yml
|
131
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
132
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
133
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
134
|
+
[1m[35m (2.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
135
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
136
|
+
Migrating to CreateTranslatableRecords (20120831205714)
|
137
|
+
[1m[35m (0.0ms)[0m begin transaction
|
138
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "translatable_records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
139
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
|
140
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
141
|
+
Migrating to CreateTranslatableRecordsI18n (20120831205813)
|
142
|
+
[1m[35m (0.0ms)[0m begin transaction
|
143
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
144
|
+
Connecting to database specified by database.yml
|
145
|
+
Connecting to database specified by database.yml
|
146
|
+
Connecting to database specified by database.yml
|
147
|
+
Connecting to database specified by database.yml
|
148
|
+
Connecting to database specified by database.yml
|
149
|
+
Connecting to database specified by database.yml
|
150
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
151
|
+
Migrating to CreateTranslatableRecords (20120831205714)
|
152
|
+
Migrating to CreateTranslatableRecordsI18n (20120831210818)
|
153
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
154
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
155
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "translatable_records_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_record_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
156
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
157
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_translatable_records_i18n_on_translatable_record_id" ON "translatable_records_i18n" ("translatable_record_id")
|
158
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
159
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')
|
160
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translatable_records_i18n_on_locale" ON "translatable_records_i18n" ("locale")[0m
|
161
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')
|
162
|
+
[1m[36m (61.5ms)[0m [1mcommit transaction[0m
|
163
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
164
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
165
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("translatable_records")
|
166
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
167
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_records_i18n_on_locale')
|
168
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')[0m
|
169
|
+
Connecting to database specified by database.yml
|
170
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
171
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
172
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "translatable_records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
173
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "translatable_records_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_record_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
174
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
175
|
+
[1m[35m (2.8ms)[0m CREATE INDEX "index_translatable_records_i18n_on_locale" ON "translatable_records_i18n" ("locale")
|
176
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
177
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_records_i18n_on_locale')
|
178
|
+
[1m[36m (2.7ms)[0m [1mCREATE INDEX "index_translatable_records_i18n_on_translatable_record_id" ON "translatable_records_i18n" ("translatable_record_id")[0m
|
179
|
+
[1m[35m (3.6ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
180
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
181
|
+
[1m[35m (2.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
182
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
183
|
+
[1m[35m (3.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120831210818')
|
184
|
+
[1m[36m (3.5ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120831205714')[0m
|
185
|
+
Connecting to database specified by database.yml
|
186
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
187
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
188
|
+
Migrating to CreateTranslatableRecordsI18n (20120831210818)
|
189
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
190
|
+
[1m[35m (0.0ms)[0m begin transaction
|
191
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
192
|
+
[1m[35m (0.1ms)[0m PRAGMA index_info('index_translatable_records_i18n_on_locale')
|
193
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')[0m
|
194
|
+
[1m[35m (0.3ms)[0m DROP INDEX "index_translatable_records_i18n_on_locale"
|
195
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
196
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')
|
197
|
+
[1m[36m (0.2ms)[0m [1mDROP INDEX "index_translatable_records_i18n_on_translatable_record_id"[0m
|
198
|
+
[1m[35m (0.2ms)[0m DROP TABLE "translatable_records_i18n"
|
199
|
+
[1m[36m (0.1ms)[0m [1mDELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120831210818'[0m
|
200
|
+
[1m[35m (3.2ms)[0m commit transaction
|
201
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
202
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
203
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records")[0m
|
204
|
+
Connecting to database specified by database.yml
|
205
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
206
|
+
Migrating to CreateTranslatableRecords (20120831205714)
|
207
|
+
Migrating to CreateTranslatableRecordsI18n (20120831210818)
|
208
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
209
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
210
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "translatable_records_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_record_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
211
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
212
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_translatable_records_i18n_on_translatable_record_id" ON "translatable_records_i18n" ("translatable_record_id")
|
213
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
214
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')
|
215
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_translatable_records_i18n_on_locale" ON "translatable_records_i18n" ("locale")[0m
|
216
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')
|
217
|
+
[1m[36m (177.1ms)[0m [1mcommit transaction[0m
|
218
|
+
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
219
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
220
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("translatable_records")
|
221
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
222
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_records_i18n_on_locale')
|
223
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')[0m
|
224
|
+
Connecting to database specified by database.yml
|
225
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
226
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
227
|
+
[1m[36m (15.7ms)[0m [1mCREATE TABLE "translatable_records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
228
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "translatable_records_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "translatable_record_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
229
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
230
|
+
[1m[35m (2.9ms)[0m CREATE INDEX "index_translatable_records_i18n_on_locale" ON "translatable_records_i18n" ("locale")
|
231
|
+
[1m[36m (0.4ms)[0m [1mPRAGMA index_list("translatable_records_i18n")[0m
|
232
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_translatable_records_i18n_on_locale')
|
233
|
+
[1m[36m (2.8ms)[0m [1mCREATE INDEX "index_translatable_records_i18n_on_translatable_record_id" ON "translatable_records_i18n" ("translatable_record_id")[0m
|
234
|
+
[1m[35m (3.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
235
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
236
|
+
[1m[35m (2.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
237
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
238
|
+
[1m[35m (2.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120831210818')
|
239
|
+
[1m[36m (2.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120831205714')[0m
|
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
|
+
Connecting to database specified by database.yml
|
253
|
+
Connecting to database specified by database.yml
|
254
|
+
Connecting to database specified by database.yml
|
255
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
256
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
257
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
258
|
+
[1m[35m (3.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
259
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
260
|
+
Migrating to CreateModels (20120831205714)
|
261
|
+
[1m[35m (0.0ms)[0m begin transaction
|
262
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
263
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
|
264
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
265
|
+
Migrating to CreateModelsI18n (20120831210818)
|
266
|
+
[1m[35m (0.0ms)[0m begin transaction
|
267
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
268
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("models_i18n")
|
269
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")[0m
|
270
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("models_i18n")
|
271
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_models_i18n_on_model_id')[0m
|
272
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
|
273
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')[0m
|
274
|
+
[1m[35m (3.3ms)[0m commit transaction
|
275
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
276
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
277
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("models")[0m
|
278
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("models_i18n")
|
279
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_models_i18n_on_locale')[0m
|
280
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_models_i18n_on_model_id')
|
281
|
+
Connecting to database specified by database.yml
|
282
|
+
Connecting to database specified by database.yml
|
283
|
+
Connecting to database specified by database.yml
|
284
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
285
|
+
[1m[35m (53.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
286
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
287
|
+
[1m[35m (2.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
288
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
289
|
+
Migrating to CreateModels (20120831205714)
|
290
|
+
[1m[35m (0.0ms)[0m begin transaction
|
291
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
292
|
+
Connecting to database specified by database.yml
|
293
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
294
|
+
Migrating to CreateRecords (20120831205714)
|
295
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
296
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
297
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
298
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')[0m
|
299
|
+
[1m[35m (53.3ms)[0m commit transaction
|
300
|
+
Migrating to CreateRecordsI18n (20120831210818)
|
301
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
302
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "records_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "record_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
303
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("records_i18n")[0m
|
304
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_records_i18n_on_record_id" ON "records_i18n" ("record_id")
|
305
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("records_i18n")[0m
|
306
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_records_i18n_on_record_id')
|
307
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_records_i18n_on_locale" ON "records_i18n" ("locale")[0m
|
308
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')
|
309
|
+
[1m[36m (3.3ms)[0m [1mcommit transaction[0m
|
310
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
311
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
312
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("records")
|
313
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("records_i18n")[0m
|
314
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_records_i18n_on_locale')
|
315
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_records_i18n_on_record_id')[0m
|
316
|
+
Connecting to database specified by database.yml
|
317
|
+
Connecting to database specified by database.yml
|
318
|
+
Connecting to database specified by database.yml
|
319
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
320
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
321
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
322
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "records_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "record_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
323
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("records_i18n")[0m
|
324
|
+
[1m[35m (2.6ms)[0m CREATE INDEX "index_records_i18n_on_locale" ON "records_i18n" ("locale")
|
325
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("records_i18n")[0m
|
326
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_records_i18n_on_locale')
|
327
|
+
[1m[36m (2.8ms)[0m [1mCREATE INDEX "index_records_i18n_on_record_id" ON "records_i18n" ("record_id")[0m
|
328
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
329
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
330
|
+
[1m[35m (2.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
331
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
332
|
+
[1m[35m (2.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120831210818')
|
333
|
+
[1m[36m (2.6ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120831205714')[0m
|
334
|
+
Connecting to database specified by database.yml
|
335
|
+
Connecting to database specified by database.yml
|
336
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
337
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
338
|
+
[1m[36m (31.1ms)[0m [1mCREATE TABLE "records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
339
|
+
[1m[35m (6.4ms)[0m CREATE TABLE "records_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "record_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
340
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("records_i18n")[0m
|
341
|
+
[1m[35m (4.2ms)[0m CREATE INDEX "index_records_i18n_on_locale" ON "records_i18n" ("locale")
|
342
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("records_i18n")[0m
|
343
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_records_i18n_on_locale')
|
344
|
+
[1m[36m (5.9ms)[0m [1mCREATE INDEX "index_records_i18n_on_record_id" ON "records_i18n" ("record_id")[0m
|
345
|
+
[1m[35m (4.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
346
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
347
|
+
[1m[35m (4.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
348
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
349
|
+
[1m[35m (3.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120831210818')
|
350
|
+
[1m[36m (6.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120831205714')[0m
|
351
|
+
Connecting to database specified by database.yml
|
352
|
+
Connecting to database specified by database.yml
|
353
|
+
Connecting to database specified by database.yml
|
354
|
+
Connecting to database specified by database.yml
|
355
|
+
Connecting to database specified by database.yml
|
356
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
357
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
358
|
+
[1m[36m (53.8ms)[0m [1mCREATE TABLE "records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
359
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "records_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "record_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
360
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("records_i18n")[0m
|
361
|
+
[1m[35m (2.9ms)[0m CREATE INDEX "index_records_i18n_on_locale" ON "records_i18n" ("locale")
|
362
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("records_i18n")[0m
|
363
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_records_i18n_on_locale')
|
364
|
+
[1m[36m (2.6ms)[0m [1mCREATE INDEX "index_records_i18n_on_record_id" ON "records_i18n" ("record_id")[0m
|
365
|
+
[1m[35m (2.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
366
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
367
|
+
[1m[35m (3.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
368
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
369
|
+
[1m[35m (2.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120831210818')
|
370
|
+
[1m[36m (3.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120831205714')[0m
|
371
|
+
Connecting to database specified by database.yml
|
372
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
373
|
+
[1m[35m (2.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
374
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
375
|
+
[1m[35m (2.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
376
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
377
|
+
Migrating to CreateModels (20120831205714)
|
378
|
+
[1m[35m (0.0ms)[0m begin transaction
|
379
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
380
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
|
381
|
+
[1m[36m (3.1ms)[0m [1mcommit transaction[0m
|
382
|
+
Migrating to CreateModelsI18n (20120831210818)
|
383
|
+
[1m[35m (0.0ms)[0m begin transaction
|
384
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "model_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
385
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("model_i18n")
|
386
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_model_i18n_on_model_id" ON "model_i18n" ("model_id")[0m
|
387
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("model_i18n")
|
388
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_model_i18n_on_model_id')[0m
|
389
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_model_i18n_on_locale" ON "model_i18n" ("locale")
|
390
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')[0m
|
391
|
+
[1m[35m (3.2ms)[0m commit transaction
|
392
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
393
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
394
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("model_i18n")[0m
|
395
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_model_i18n_on_locale')
|
396
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_model_i18n_on_model_id')[0m
|
397
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("models")
|
398
|
+
Connecting to database specified by database.yml
|
399
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
400
|
+
[1m[35m (69.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
401
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
402
|
+
[1m[35m (3.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
403
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
404
|
+
Migrating to CreateModels (20120831205714)
|
405
|
+
[1m[35m (0.1ms)[0m begin transaction
|
406
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
407
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
|
408
|
+
[1m[36m (3.7ms)[0m [1mcommit transaction[0m
|
409
|
+
Migrating to CreateModelsI18n (20120831210818)
|
410
|
+
[1m[35m (0.4ms)[0m begin transaction
|
411
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
412
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("models_i18n")
|
413
|
+
[1m[36m (0.2ms)[0m [1mCREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")[0m
|
414
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("models_i18n")
|
415
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_models_i18n_on_model_id')[0m
|
416
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
|
417
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')[0m
|
418
|
+
[1m[35m (3.9ms)[0m commit transaction
|
419
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
420
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
421
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("models")[0m
|
422
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("models_i18n")
|
423
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_info('index_models_i18n_on_locale')[0m
|
424
|
+
[1m[35m (0.0ms)[0m PRAGMA index_info('index_models_i18n_on_model_id')
|
425
|
+
Connecting to database specified by database.yml
|
426
|
+
Connecting to database specified by database.yml
|
427
|
+
Connecting to database specified by database.yml
|
428
|
+
Connecting to database specified by database.yml
|
429
|
+
Connecting to database specified by database.yml
|
430
|
+
Connecting to database specified by database.yml
|
431
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
432
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
433
|
+
[1m[36m (2.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
434
|
+
[1m[35m (1.6ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
435
|
+
Migrating to CreateModels (20120831205714)
|
436
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
437
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
438
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')[0m
|
439
|
+
[1m[35m (3.7ms)[0m commit transaction
|
440
|
+
Migrating to CreateModelsI18n (20130404161713)
|
441
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
442
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
443
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")[0m
|
444
|
+
[1m[35m (0.2ms)[0m CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
|
445
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_created_at" ON "models_i18n" ("created_at")[0m
|
446
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_models_i18n_on_updated_at" ON "models_i18n" ("updated_at")
|
447
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20130404161713')[0m
|
448
|
+
[1m[35m (2.9ms)[0m commit transaction
|
449
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
450
|
+
Connecting to database specified by database.yml
|
451
|
+
[1m[36m (1.3ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
452
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
453
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
454
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
455
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_created_at" ON "models_i18n" ("created_at")[0m
|
456
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
|
457
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")[0m
|
458
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_models_i18n_on_updated_at" ON "models_i18n" ("updated_at")
|
459
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
460
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
461
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
462
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20130404161713')
|
463
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120831205714')[0m
|
464
|
+
Connecting to database specified by database.yml
|
465
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
466
|
+
[1m[35m (51.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
467
|
+
[1m[36m (3.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
468
|
+
[1m[35m (2.3ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
469
|
+
Migrating to CreateModels (20120831205714)
|
470
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
471
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
472
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')[0m
|
473
|
+
[1m[35m (3.3ms)[0m commit transaction
|
474
|
+
Migrating to CreateModelsI18n (20130404161713)
|
475
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
476
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
477
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")[0m
|
478
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
|
479
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_name" ON "models_i18n" ("name")[0m
|
480
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_models_i18n_on_created_at" ON "models_i18n" ("created_at")
|
481
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_updated_at" ON "models_i18n" ("updated_at")[0m
|
482
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20130404161713')
|
483
|
+
[1m[36m (4.8ms)[0m [1mcommit transaction[0m
|
484
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
485
|
+
Connecting to database specified by database.yml
|
486
|
+
[1m[36m (1.4ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
487
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
488
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
489
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "models_i18n" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer NOT NULL, "locale" varchar(255) NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
490
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_created_at" ON "models_i18n" ("created_at")[0m
|
491
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
|
492
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")[0m
|
493
|
+
[1m[35m (0.1ms)[0m CREATE INDEX "index_models_i18n_on_name" ON "models_i18n" ("name")
|
494
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_models_i18n_on_updated_at" ON "models_i18n" ("updated_at")[0m
|
495
|
+
[1m[35m (0.1ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
496
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
497
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
498
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130404161713')[0m
|
499
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120831205714')
|