translatable_records 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +52 -0
  4. data/Rakefile +32 -0
  5. data/lib/generators/templates/migration.rb.erb +12 -0
  6. data/lib/generators/templates/model.rb.erb +13 -0
  7. data/lib/generators/translation_generator.rb +21 -0
  8. data/lib/translatable_records/active_record/base.rb +59 -0
  9. data/lib/translatable_records/active_record/translatable.rb +30 -0
  10. data/lib/translatable_records/railtie.rb +9 -0
  11. data/lib/translatable_records/version.rb +5 -0
  12. data/lib/translatable_records.rb +7 -0
  13. data/test/dummy/README.rdoc +28 -0
  14. data/test/dummy/Rakefile +6 -0
  15. data/test/dummy/app/assets/javascripts/application.js +13 -0
  16. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  17. data/test/dummy/app/controllers/application_controller.rb +5 -0
  18. data/test/dummy/app/helpers/application_helper.rb +2 -0
  19. data/test/dummy/app/models/model.rb +3 -0
  20. data/test/dummy/app/models/model_translation.rb +9 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/test/dummy/bin/bundle +3 -0
  23. data/test/dummy/bin/rails +4 -0
  24. data/test/dummy/bin/rake +4 -0
  25. data/test/dummy/config/application.rb +23 -0
  26. data/test/dummy/config/boot.rb +5 -0
  27. data/test/dummy/config/database.yml +25 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +29 -0
  30. data/test/dummy/config/environments/production.rb +80 -0
  31. data/test/dummy/config/environments/test.rb +36 -0
  32. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +5 -0
  36. data/test/dummy/config/initializers/secret_token.rb +12 -0
  37. data/test/dummy/config/initializers/session_store.rb +3 -0
  38. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/test/dummy/config/locales/en.yml +23 -0
  40. data/test/dummy/config/routes.rb +56 -0
  41. data/test/dummy/config.ru +4 -0
  42. data/test/dummy/db/development.sqlite3 +0 -0
  43. data/test/dummy/db/migrate/20130819155126_create_models.rb +8 -0
  44. data/test/dummy/db/migrate/20130819165249_create_model_translations.rb +13 -0
  45. data/test/dummy/db/schema.rb +32 -0
  46. data/test/dummy/log/development.log +170 -0
  47. data/test/dummy/log/test.log +616 -0
  48. data/test/dummy/public/404.html +58 -0
  49. data/test/dummy/public/422.html +58 -0
  50. data/test/dummy/public/500.html +57 -0
  51. data/test/dummy/public/favicon.ico +0 -0
  52. data/test/generators_test.rb +20 -0
  53. data/test/records_test.rb +23 -0
  54. data/test/test_helper.rb +21 -0
  55. metadata +167 -0
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '7df7e2131e8049bf1397fd7586bd3dfa812f69914f258ee99734a62b8cc16896147a9276e35b6349629341cf1a9b62025e277ea721be144377dbc3979e90a629'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Dummy::Application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
Binary file
@@ -0,0 +1,8 @@
1
+ class CreateModels < ActiveRecord::Migration
2
+ def change
3
+ create_table :models do |t|
4
+
5
+ t.timestamps
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,13 @@
1
+ class CreateModelTranslations < ActiveRecord::Migration
2
+ def change
3
+ create_table :model_translations do |t|
4
+ t.integer :model_id
5
+ t.string :locale
6
+ t.string :name
7
+
8
+ t.timestamps
9
+ end
10
+ add_index :model_translations, :model_id
11
+ add_index :model_translations, :locale
12
+ end
13
+ end
@@ -0,0 +1,32 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20130819165249) do
15
+
16
+ create_table "model_translations", force: true do |t|
17
+ t.integer "model_id"
18
+ t.string "locale"
19
+ t.string "name"
20
+ t.datetime "created_at"
21
+ t.datetime "updated_at"
22
+ end
23
+
24
+ add_index "model_translations", ["locale"], name: "index_model_translations_on_locale"
25
+ add_index "model_translations", ["model_id"], name: "index_model_translations_on_model_id"
26
+
27
+ create_table "models", force: true do |t|
28
+ t.datetime "created_at"
29
+ t.datetime "updated_at"
30
+ end
31
+
32
+ end
@@ -0,0 +1,170 @@
1
+ DEPRECATION WARNING: Calling #scope or #default_scope with a hash is deprecated. Please use a lambda containing a scope. E.g. scope :red, -> { where(color: 'red') }. (called from make_translatable at /Users/Matt/Documents/Mattways/Emprendimientos/Rails/translatable_records/lib/translatable_records/active_record/base.rb:24)
2
+ DEPRECATION WARNING: Calling #scope or #default_scope with a hash is deprecated. Please use a lambda containing a scope. E.g. scope :red, -> { where(color: 'red') }. (called from make_translatable at /Users/Matt/Documents/Mattways/Emprendimientos/Rails/translatable_records/lib/translatable_records/active_record/base.rb:24)
3
+ DEPRECATION WARNING: Calling #scope or #default_scope with a hash is deprecated. Please use a lambda containing a scope. E.g. scope :red, -> { where(color: 'red') }. (called from make_translatable at /Users/Matt/Documents/Mattways/Emprendimientos/Rails/translatable_records/lib/translatable_records/active_record/base.rb:24)
4
+ DEPRECATION WARNING: Calling #scope or #default_scope with a hash is deprecated. Please use a lambda containing a scope. E.g. scope :red, -> { where(color: 'red') }. (called from make_translatable at /Users/Matt/Documents/Mattways/Emprendimientos/Rails/translatable_records/lib/translatable_records/active_record/base.rb:24)
5
+ DEPRECATION WARNING: Calling #scope or #default_scope with a hash is deprecated. Please use a lambda containing a scope. E.g. scope :red, -> { where(color: 'red') }. (called from make_translatable at /Users/Matt/Documents/Mattways/Emprendimientos/Rails/translatable_records/lib/translatable_records/active_record/base.rb:24)
6
+  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7
+  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9
+ Migrating to CreateModels (20130819155126)
10
+  (0.1ms) begin transaction
11
+  (0.3ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
12
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130819155126"]]
13
+  (3.2ms) commit transaction
14
+ Migrating to CreateModelsTranslation (20130819160808)
15
+ DEPRECATION WARNING: Calling #scope or #default_scope with a hash is deprecated. Please use a lambda containing a scope. E.g. scope :red, -> { where(color: 'red') }. (called from make_translatable at /Users/Matt/Documents/Mattways/Emprendimientos/Rails/translatable_records/lib/translatable_records/active_record/base.rb:24)
16
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
17
+ Migrating to CreateModelTranslations (20130819160941)
18
+  (0.1ms) begin transaction
19
+  (0.4ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "created_at" datetime, "updated_at" datetime) 
20
+  (0.2ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
21
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
22
+  (0.1ms) CREATE INDEX "index_model_translations_on_created_at" ON "model_translations" ("created_at")
23
+  (0.1ms) CREATE INDEX "index_model_translations_on_updated_at" ON "model_translations" ("updated_at")
24
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130819160941"]]
25
+  (51.2ms) commit transaction
26
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
27
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
28
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
29
+  (0.2ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "created_at" datetime, "updated_at" datetime) 
30
+  (0.1ms) CREATE INDEX "index_model_translations_on_created_at" ON "model_translations" ("created_at")
31
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
32
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
33
+  (0.1ms) CREATE INDEX "index_model_translations_on_updated_at" ON "model_translations" ("updated_at")
34
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
35
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
36
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
37
+  (0.0ms) SELECT version FROM "schema_migrations"
38
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819160941')
39
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819155126')
40
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
41
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
42
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "created_at" datetime, "updated_at" datetime) 
43
+  (0.1ms) CREATE INDEX "index_model_translations_on_created_at" ON "model_translations" ("created_at")
44
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
45
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
46
+  (0.1ms) CREATE INDEX "index_model_translations_on_updated_at" ON "model_translations" ("updated_at")
47
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
48
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
49
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
50
+  (0.0ms) SELECT version FROM "schema_migrations"
51
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819160941')
52
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819155126')
53
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "created_at" datetime, "updated_at" datetime) 
54
+  (0.1ms) CREATE INDEX "index_model_translations_on_created_at" ON "model_translations" ("created_at")
55
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
56
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
57
+  (0.1ms) CREATE INDEX "index_model_translations_on_updated_at" ON "model_translations" ("updated_at")
58
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
59
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
60
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
61
+  (0.1ms) SELECT version FROM "schema_migrations"
62
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819160941')
63
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819155126')
64
+  (50.2ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "created_at" datetime, "updated_at" datetime) 
65
+  (2.9ms) CREATE INDEX "index_model_translations_on_created_at" ON "model_translations" ("created_at")
66
+  (2.5ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
67
+  (2.7ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
68
+  (2.6ms) CREATE INDEX "index_model_translations_on_updated_at" ON "model_translations" ("updated_at")
69
+  (3.0ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
70
+  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
71
+  (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
72
+  (0.1ms) SELECT version FROM "schema_migrations"
73
+  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819160941')
74
+  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819155126')
75
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
76
+  (0.2ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "created_at" datetime, "updated_at" datetime) 
77
+  (0.1ms) CREATE INDEX "index_model_translations_on_created_at" ON "model_translations" ("created_at")
78
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
79
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
80
+  (0.1ms) CREATE INDEX "index_model_translations_on_updated_at" ON "model_translations" ("updated_at")
81
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
82
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
83
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
84
+  (0.0ms) SELECT version FROM "schema_migrations"
85
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819160941')
86
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819155126')
87
+  (54.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
88
+  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
89
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
90
+ Migrating to CreateModels (20130819155126)
91
+  (0.1ms) begin transaction
92
+  (0.4ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
93
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130819155126"]]
94
+  (3.0ms) commit transaction
95
+ Migrating to CreateModelTranslations (20130819160941)
96
+  (0.1ms) begin transaction
97
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
98
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
99
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
100
+  (0.1ms) CREATE INDEX "index_model_translations_on_created_at" ON "model_translations" ("created_at")
101
+  (0.1ms) CREATE INDEX "index_model_translations_on_updated_at" ON "model_translations" ("updated_at")
102
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130819160941"]]
103
+  (3.2ms) commit transaction
104
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
105
+  (52.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
106
+  (3.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
107
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
108
+ Migrating to CreateModels (20130819155126)
109
+  (0.1ms) begin transaction
110
+  (0.3ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
111
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130819155126"]]
112
+  (3.4ms) commit transaction
113
+ Migrating to CreateModelTranslations (20130819160941)
114
+  (0.1ms) begin transaction
115
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
116
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
117
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
118
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130819160941"]]
119
+  (3.8ms) commit transaction
120
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
121
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
122
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
123
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
124
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
125
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
126
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
127
+  (0.0ms) SELECT version FROM "schema_migrations"
128
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819160941')
129
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819155126')
130
+  (58.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
131
+  (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
132
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
133
+ Migrating to CreateModels (20130819155126)
134
+  (0.1ms) begin transaction
135
+  (0.3ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
136
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130819155126"]]
137
+  (3.9ms) commit transaction
138
+ Migrating to CreateModelTranslations (20130819165249)
139
+  (0.1ms) begin transaction
140
+  (0.3ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "created_at" datetime, "updated_at" datetime) 
141
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
142
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
143
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130819165249"]]
144
+  (3.8ms) commit transaction
145
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
146
+  (54.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
147
+  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
148
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
149
+ Migrating to CreateModels (20130819155126)
150
+  (0.1ms) begin transaction
151
+  (0.4ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
152
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130819155126"]]
153
+  (3.4ms) commit transaction
154
+ Migrating to CreateModelTranslations (20130819165249)
155
+  (0.1ms) begin transaction
156
+  (0.4ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
157
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
158
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
159
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130819165249"]]
160
+  (3.7ms) commit transaction
161
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
162
+  (0.2ms) CREATE TABLE "model_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model_id" integer, "locale" varchar(255), "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
163
+  (0.1ms) CREATE INDEX "index_model_translations_on_locale" ON "model_translations" ("locale")
164
+  (0.1ms) CREATE INDEX "index_model_translations_on_model_id" ON "model_translations" ("model_id")
165
+  (0.1ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
166
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
167
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
168
+  (0.0ms) SELECT version FROM "schema_migrations"
169
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819165249')
170
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130819155126')