rails_i18n_record 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. checksums.yaml +7 -0
  2. metadata +18 -130
  3. data/MIT-LICENSE +0 -20
  4. data/README.rdoc +0 -44
  5. data/Rakefile +0 -38
  6. data/lib/generators/i18n_generator.rb +0 -26
  7. data/lib/generators/templates/migration.erb +0 -19
  8. data/lib/generators/templates/model.erb +0 -13
  9. data/lib/rails_i18n_record.rb +0 -6
  10. data/lib/rails_i18n_record/active_record/base.rb +0 -79
  11. data/lib/rails_i18n_record/railtie.rb +0 -9
  12. data/lib/rails_i18n_record/version.rb +0 -5
  13. data/test/dummy/README.rdoc +0 -261
  14. data/test/dummy/Rakefile +0 -7
  15. data/test/dummy/app/assets/javascripts/application.js +0 -15
  16. data/test/dummy/app/assets/stylesheets/application.css +0 -13
  17. data/test/dummy/app/controllers/application_controller.rb +0 -3
  18. data/test/dummy/app/helpers/application_helper.rb +0 -2
  19. data/test/dummy/app/models/model.rb +0 -4
  20. data/test/dummy/app/models/model_translation.rb +0 -13
  21. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  22. data/test/dummy/config.ru +0 -4
  23. data/test/dummy/config/application.rb +0 -59
  24. data/test/dummy/config/boot.rb +0 -10
  25. data/test/dummy/config/database.yml +0 -25
  26. data/test/dummy/config/environment.rb +0 -5
  27. data/test/dummy/config/environments/development.rb +0 -37
  28. data/test/dummy/config/environments/production.rb +0 -67
  29. data/test/dummy/config/environments/test.rb +0 -37
  30. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  31. data/test/dummy/config/initializers/inflections.rb +0 -15
  32. data/test/dummy/config/initializers/mime_types.rb +0 -5
  33. data/test/dummy/config/initializers/secret_token.rb +0 -7
  34. data/test/dummy/config/initializers/session_store.rb +0 -8
  35. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  36. data/test/dummy/config/locales/en.yml +0 -5
  37. data/test/dummy/config/routes.rb +0 -58
  38. data/test/dummy/db/development.sqlite3 +0 -0
  39. data/test/dummy/db/migrate/20120831205714_create_models.rb +0 -7
  40. data/test/dummy/db/migrate/20130404161713_create_models_i18n.rb +0 -19
  41. data/test/dummy/db/schema.rb +0 -35
  42. data/test/dummy/db/test.sqlite3 +0 -0
  43. data/test/dummy/log/development.log +0 -499
  44. data/test/dummy/log/test.log +0 -2397
  45. data/test/dummy/public/404.html +0 -26
  46. data/test/dummy/public/422.html +0 -26
  47. data/test/dummy/public/500.html +0 -25
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/dummy/script/rails +0 -6
  50. data/test/generators_test.rb +0 -24
  51. data/test/rails_i18n_record_test.rb +0 -9
  52. data/test/records_test.rb +0 -27
  53. data/test/test_helper.rb +0 -21
@@ -1,5 +0,0 @@
1
- # Load the rails application
2
- require File.expand_path('../application', __FILE__)
3
-
4
- # Initialize the rails application
5
- Dummy::Application.initialize!
@@ -1,37 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # In the development environment your application's code is reloaded on
5
- # every request. This slows down response time but is perfect for development
6
- # since you don't have to restart the web server when you make code changes.
7
- config.cache_classes = false
8
-
9
- # Log error messages when you accidentally call methods on nil.
10
- config.whiny_nils = true
11
-
12
- # Show full error reports and disable caching
13
- config.consider_all_requests_local = true
14
- config.action_controller.perform_caching = false
15
-
16
- # Don't care if the mailer can't send
17
- config.action_mailer.raise_delivery_errors = false
18
-
19
- # Print deprecation notices to the Rails logger
20
- config.active_support.deprecation = :log
21
-
22
- # Only use best-standards-support built into browsers
23
- config.action_dispatch.best_standards_support = :builtin
24
-
25
- # Raise exception on mass assignment protection for Active Record models
26
- config.active_record.mass_assignment_sanitizer = :strict
27
-
28
- # Log the query plan for queries taking more than this (works
29
- # with SQLite, MySQL, and PostgreSQL)
30
- config.active_record.auto_explain_threshold_in_seconds = 0.5
31
-
32
- # Do not compress assets
33
- config.assets.compress = false
34
-
35
- # Expands the lines which load the assets
36
- config.assets.debug = true
37
- end
@@ -1,67 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # Code is not reloaded between requests
5
- config.cache_classes = true
6
-
7
- # Full error reports are disabled and caching is turned on
8
- config.consider_all_requests_local = false
9
- config.action_controller.perform_caching = true
10
-
11
- # Disable Rails's static asset server (Apache or nginx will already do this)
12
- config.serve_static_assets = false
13
-
14
- # Compress JavaScripts and CSS
15
- config.assets.compress = true
16
-
17
- # Don't fallback to assets pipeline if a precompiled asset is missed
18
- config.assets.compile = false
19
-
20
- # Generate digests for assets URLs
21
- config.assets.digest = true
22
-
23
- # Defaults to nil and saved in location specified by config.assets.prefix
24
- # config.assets.manifest = YOUR_PATH
25
-
26
- # Specifies the header that your server uses for sending files
27
- # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
- # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
-
30
- # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
- # config.force_ssl = true
32
-
33
- # See everything in the log (default is :info)
34
- # config.log_level = :debug
35
-
36
- # Prepend all log lines with the following tags
37
- # config.log_tags = [ :subdomain, :uuid ]
38
-
39
- # Use a different logger for distributed setups
40
- # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
-
42
- # Use a different cache store in production
43
- # config.cache_store = :mem_cache_store
44
-
45
- # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
- # config.action_controller.asset_host = "http://assets.example.com"
47
-
48
- # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
- # config.assets.precompile += %w( search.js )
50
-
51
- # Disable delivery errors, bad email addresses will be ignored
52
- # config.action_mailer.raise_delivery_errors = false
53
-
54
- # Enable threaded mode
55
- # config.threadsafe!
56
-
57
- # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
- # the I18n.default_locale when a translation can not be found)
59
- config.i18n.fallbacks = true
60
-
61
- # Send deprecation notices to registered listeners
62
- config.active_support.deprecation = :notify
63
-
64
- # Log the query plan for queries taking more than this (works
65
- # with SQLite, MySQL, and PostgreSQL)
66
- # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
- end
@@ -1,37 +0,0 @@
1
- Dummy::Application.configure do
2
- # Settings specified here will take precedence over those in config/application.rb
3
-
4
- # The test environment is used exclusively to run your application's
5
- # test suite. You never need to work with it otherwise. Remember that
6
- # your test database is "scratch space" for the test suite and is wiped
7
- # and recreated between test runs. Don't rely on the data there!
8
- config.cache_classes = true
9
-
10
- # Configure static asset server for tests with Cache-Control for performance
11
- config.serve_static_assets = true
12
- config.static_cache_control = "public, max-age=3600"
13
-
14
- # Log error messages when you accidentally call methods on nil
15
- config.whiny_nils = true
16
-
17
- # Show full error reports and disable caching
18
- config.consider_all_requests_local = true
19
- config.action_controller.perform_caching = false
20
-
21
- # Raise exceptions instead of rendering exception templates
22
- config.action_dispatch.show_exceptions = false
23
-
24
- # Disable request forgery protection in test environment
25
- config.action_controller.allow_forgery_protection = false
26
-
27
- # Tell Action Mailer not to deliver emails to the real world.
28
- # The :test delivery method accumulates sent emails in the
29
- # ActionMailer::Base.deliveries array.
30
- config.action_mailer.delivery_method = :test
31
-
32
- # Raise exception on mass assignment protection for Active Record models
33
- config.active_record.mass_assignment_sanitizer = :strict
34
-
35
- # Print deprecation notices to the stderr
36
- config.active_support.deprecation = :stderr
37
- end
@@ -1,7 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
- # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
-
6
- # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
- # Rails.backtrace_cleaner.remove_silencers!
@@ -1,15 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new inflection rules using the following format
4
- # (all these examples are active by default):
5
- # ActiveSupport::Inflector.inflections do |inflect|
6
- # inflect.plural /^(ox)$/i, '\1en'
7
- # inflect.singular /^(ox)en/i, '\1'
8
- # inflect.irregular 'person', 'people'
9
- # inflect.uncountable %w( fish sheep )
10
- # end
11
- #
12
- # These inflection rules are supported but not enabled by default:
13
- # ActiveSupport::Inflector.inflections do |inflect|
14
- # inflect.acronym 'RESTful'
15
- # end
@@ -1,5 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Add new mime types for use in respond_to blocks:
4
- # Mime::Type.register "text/richtext", :rtf
5
- # Mime::Type.register_alias "text/html", :iphone
@@ -1,7 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
- # Make sure the secret is at least 30 characters and all random,
6
- # no regular words or you'll be exposed to dictionary attacks.
7
- Dummy::Application.config.secret_token = 'e32b72c2134778adc9a6774771b363e7f20d6f7b221276d0d8b6371437cc08e418a6efa1ae6a44f1f84e76d9cc51f3cd778978c84007648c82419a62a720d1cb'
@@ -1,8 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
-
5
- # Use the database for sessions instead of the cookie-based default,
6
- # which shouldn't be used to store highly confidential information
7
- # (create the session table with "rails generate session_migration")
8
- # Dummy::Application.config.session_store :active_record_store
@@ -1,14 +0,0 @@
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]
9
- end
10
-
11
- # Disable root element in JSON by default.
12
- ActiveSupport.on_load(:active_record) do
13
- self.include_root_in_json = false
14
- end
@@ -1,5 +0,0 @@
1
- # Sample localization file for English. Add more files in this directory for other locales.
2
- # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
-
4
- en:
5
- hello: "Hello world"
@@ -1,58 +0,0 @@
1
- Dummy::Application.routes.draw do
2
- # The priority is based upon order of creation:
3
- # first created -> highest priority.
4
-
5
- # Sample of regular route:
6
- # match 'products/:id' => 'catalog#view'
7
- # Keep in mind you can assign values other than :controller and :action
8
-
9
- # Sample of named route:
10
- # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
11
- # This route can be invoked with purchase_url(:id => product.id)
12
-
13
- # Sample resource route (maps HTTP verbs to controller actions automatically):
14
- # resources :products
15
-
16
- # Sample resource route with options:
17
- # resources :products do
18
- # member do
19
- # get 'short'
20
- # post 'toggle'
21
- # end
22
- #
23
- # collection do
24
- # get 'sold'
25
- # end
26
- # end
27
-
28
- # Sample resource route with sub-resources:
29
- # resources :products do
30
- # resources :comments, :sales
31
- # resource :seller
32
- # end
33
-
34
- # Sample resource route with more complex sub-resources
35
- # resources :products do
36
- # resources :comments
37
- # resources :sales do
38
- # get 'recent', :on => :collection
39
- # end
40
- # end
41
-
42
- # Sample resource route within a namespace:
43
- # namespace :admin do
44
- # # Directs /admin/products/* to Admin::ProductsController
45
- # # (app/controllers/admin/products_controller.rb)
46
- # resources :products
47
- # end
48
-
49
- # You can have the root of your site routed with "root"
50
- # just remember to delete public/index.html.
51
- # root :to => 'welcome#index'
52
-
53
- # See how all your routes lay out with "rake routes"
54
-
55
- # This is a legacy wild controller route that's not recommended for RESTful applications.
56
- # Note: This route will make all actions in every controller accessible via GET requests.
57
- # match ':controller(/:action(/:id))(.:format)'
58
- end
@@ -1,7 +0,0 @@
1
- class CreateModels < ActiveRecord::Migration
2
- def change
3
- create_table :models do |t|
4
- t.timestamps
5
- end
6
- end
7
- end
@@ -1,19 +0,0 @@
1
- class CreateModelsI18n < ActiveRecord::Migration
2
- def up
3
- create_table :models_i18n do |t|
4
- t.integer :model_id, :null => false
5
- t.string :locale, :null => false
6
- t.string :name
7
- t.timestamps
8
- end
9
- add_index :models_i18n, :model_id
10
- add_index :models_i18n, :locale
11
- add_index :models_i18n, :name
12
- add_index :models_i18n, :created_at
13
- add_index :models_i18n, :updated_at
14
- end
15
-
16
- def down
17
- drop_table :models_i18n
18
- end
19
- end
@@ -1,35 +0,0 @@
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 to check this file into your version control system.
13
-
14
- ActiveRecord::Schema.define(:version => 20130404161713) do
15
-
16
- create_table "models", :force => true do |t|
17
- t.datetime "created_at", :null => false
18
- t.datetime "updated_at", :null => false
19
- end
20
-
21
- create_table "models_i18n", :force => true do |t|
22
- t.integer "model_id", :null => false
23
- t.string "locale", :null => false
24
- t.string "name"
25
- t.datetime "created_at", :null => false
26
- t.datetime "updated_at", :null => false
27
- end
28
-
29
- add_index "models_i18n", ["created_at"], :name => "index_models_i18n_on_created_at"
30
- add_index "models_i18n", ["locale"], :name => "index_models_i18n_on_locale"
31
- add_index "models_i18n", ["model_id"], :name => "index_models_i18n_on_model_id"
32
- add_index "models_i18n", ["name"], :name => "index_models_i18n_on_name"
33
- add_index "models_i18n", ["updated_at"], :name => "index_models_i18n_on_updated_at"
34
-
35
- end
Binary file
@@ -1,499 +0,0 @@
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
-  (0.1ms) select sqlite_version(*)
13
-  (52.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
-  (0.1ms) PRAGMA index_list("schema_migrations")
15
-  (3.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
16
-  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
17
- Migrating to CreateSomethings (20120831200235)
18
-  (0.1ms) begin transaction
19
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831200235')
20
-  (2.7ms) commit transaction
21
-  (0.3ms) select sqlite_version(*)
22
-  (0.1ms) 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
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
32
- Migrating to CreateSomethings (20120831200235)
33
- Migrating to CreateSomethingsI18n (20120831201902)
34
-  (0.0ms) select sqlite_version(*)
35
-  (0.0ms) begin transaction
36
-  (0.4ms) 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
-  (0.0ms) PRAGMA index_list("somethings_i18n")
38
-  (0.1ms) CREATE INDEX "index_somethings_i18n_on_something_id" ON "somethings_i18n" ("something_id")
39
-  (0.0ms) PRAGMA index_list("somethings_i18n")
40
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_something_id')
41
-  (0.1ms) CREATE INDEX "index_somethings_i18n_on_locale" ON "somethings_i18n" ("locale")
42
-  (0.0ms) PRAGMA index_list("somethings_i18n")
43
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_locale')
44
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_something_id')
45
-  (0.1ms) CREATE INDEX "index_somethings_i18n_on_name" ON "somethings_i18n" ("name")
46
-  (0.0ms) PRAGMA index_list("somethings_i18n")
47
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_name')
48
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_locale')
49
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_something_id')
50
-  (0.1ms) CREATE INDEX "index_somethings_i18n_on_created_at" ON "somethings_i18n" ("created_at")
51
-  (0.0ms) PRAGMA index_list("somethings_i18n")
52
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_created_at')
53
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_name')
54
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_locale')
55
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_something_id')
56
-  (0.1ms) CREATE INDEX "index_somethings_i18n_on_updated_at" ON "somethings_i18n" ("updated_at")
57
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831201902')
58
-  (56.0ms) commit transaction
59
-  (0.4ms) select sqlite_version(*)
60
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
61
-  (0.1ms) PRAGMA index_list("somethings_i18n")
62
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_updated_at')
63
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_created_at')
64
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_name')
65
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_locale')
66
-  (0.0ms) 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
-  (1.5ms) select sqlite_version(*)
70
-  (2.2ms) 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
-  (0.4ms) PRAGMA index_list("somethings_i18n")
72
-  (2.8ms) CREATE INDEX "index_somethings_i18n_on_created_at" ON "somethings_i18n" ("created_at")
73
-  (0.1ms) PRAGMA index_list("somethings_i18n")
74
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_created_at')
75
-  (2.7ms) CREATE INDEX "index_somethings_i18n_on_locale" ON "somethings_i18n" ("locale")
76
-  (0.0ms) PRAGMA index_list("somethings_i18n")
77
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_locale')
78
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_created_at')
79
-  (2.7ms) CREATE INDEX "index_somethings_i18n_on_name" ON "somethings_i18n" ("name")
80
-  (0.1ms) PRAGMA index_list("somethings_i18n")
81
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_name')
82
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_locale')
83
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_created_at')
84
-  (3.0ms) CREATE INDEX "index_somethings_i18n_on_something_id" ON "somethings_i18n" ("something_id")
85
-  (0.1ms) PRAGMA index_list("somethings_i18n")
86
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_something_id')
87
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_name')
88
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_locale')
89
-  (0.0ms) PRAGMA index_info('index_somethings_i18n_on_created_at')
90
-  (2.6ms) CREATE INDEX "index_somethings_i18n_on_updated_at" ON "somethings_i18n" ("updated_at")
91
-  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
92
-  (0.1ms) PRAGMA index_list("schema_migrations")
93
-  (2.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
94
-  (0.1ms) SELECT version FROM "schema_migrations"
95
-  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831201902')
96
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831200235')
97
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
98
- Connecting to database specified by database.yml
99
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
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
-  (0.1ms) select sqlite_version(*)
132
-  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
133
-  (0.0ms) PRAGMA index_list("schema_migrations")
134
-  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
135
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
136
- Migrating to CreateTranslatableRecords (20120831205714)
137
-  (0.0ms) begin transaction
138
-  (0.3ms) CREATE TABLE "translatable_records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
139
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
140
-  (3.0ms) commit transaction
141
- Migrating to CreateTranslatableRecordsI18n (20120831205813)
142
-  (0.0ms) begin transaction
143
-  (0.0ms) rollback transaction
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
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
151
- Migrating to CreateTranslatableRecords (20120831205714)
152
- Migrating to CreateTranslatableRecordsI18n (20120831210818)
153
-  (0.0ms) select sqlite_version(*)
154
-  (0.0ms) begin transaction
155
-  (0.3ms) 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
-  (0.0ms) PRAGMA index_list("translatable_records_i18n")
157
-  (0.1ms) CREATE INDEX "index_translatable_records_i18n_on_translatable_record_id" ON "translatable_records_i18n" ("translatable_record_id")
158
-  (0.0ms) PRAGMA index_list("translatable_records_i18n")
159
-  (0.0ms) PRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')
160
-  (0.1ms) CREATE INDEX "index_translatable_records_i18n_on_locale" ON "translatable_records_i18n" ("locale")
161
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')
162
-  (61.5ms) commit transaction
163
-  (0.3ms) select sqlite_version(*)
164
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
165
-  (0.0ms) PRAGMA index_list("translatable_records")
166
-  (0.0ms) PRAGMA index_list("translatable_records_i18n")
167
-  (0.0ms) PRAGMA index_info('index_translatable_records_i18n_on_locale')
168
-  (0.0ms) PRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')
169
- Connecting to database specified by database.yml
170
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
171
-  (0.2ms) select sqlite_version(*)
172
-  (2.1ms) CREATE TABLE "translatable_records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
173
-  (2.4ms) 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
-  (0.0ms) PRAGMA index_list("translatable_records_i18n")
175
-  (2.8ms) CREATE INDEX "index_translatable_records_i18n_on_locale" ON "translatable_records_i18n" ("locale")
176
-  (0.0ms) PRAGMA index_list("translatable_records_i18n")
177
-  (0.0ms) PRAGMA index_info('index_translatable_records_i18n_on_locale')
178
-  (2.7ms) CREATE INDEX "index_translatable_records_i18n_on_translatable_record_id" ON "translatable_records_i18n" ("translatable_record_id")
179
-  (3.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
180
-  (0.0ms) PRAGMA index_list("schema_migrations")
181
-  (2.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
182
-  (0.1ms) SELECT version FROM "schema_migrations"
183
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831210818')
184
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831205714')
185
- Connecting to database specified by database.yml
186
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
187
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
188
- Migrating to CreateTranslatableRecordsI18n (20120831210818)
189
-  (0.0ms) select sqlite_version(*)
190
-  (0.0ms) begin transaction
191
-  (0.1ms) PRAGMA index_list("translatable_records_i18n")
192
-  (0.1ms) PRAGMA index_info('index_translatable_records_i18n_on_locale')
193
-  (0.0ms) PRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')
194
-  (0.3ms) DROP INDEX "index_translatable_records_i18n_on_locale"
195
-  (0.0ms) PRAGMA index_list("translatable_records_i18n")
196
-  (0.0ms) PRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')
197
-  (0.2ms) DROP INDEX "index_translatable_records_i18n_on_translatable_record_id"
198
-  (0.2ms) DROP TABLE "translatable_records_i18n"
199
-  (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20120831210818'
200
-  (3.2ms) commit transaction
201
-  (0.2ms) select sqlite_version(*)
202
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
203
-  (0.0ms) PRAGMA index_list("translatable_records")
204
- Connecting to database specified by database.yml
205
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
206
- Migrating to CreateTranslatableRecords (20120831205714)
207
- Migrating to CreateTranslatableRecordsI18n (20120831210818)
208
-  (0.0ms) select sqlite_version(*)
209
-  (0.0ms) begin transaction
210
-  (0.4ms) 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
-  (0.0ms) PRAGMA index_list("translatable_records_i18n")
212
-  (0.1ms) CREATE INDEX "index_translatable_records_i18n_on_translatable_record_id" ON "translatable_records_i18n" ("translatable_record_id")
213
-  (0.0ms) PRAGMA index_list("translatable_records_i18n")
214
-  (0.0ms) PRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')
215
-  (0.1ms) CREATE INDEX "index_translatable_records_i18n_on_locale" ON "translatable_records_i18n" ("locale")
216
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')
217
-  (177.1ms) commit transaction
218
-  (0.4ms) select sqlite_version(*)
219
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
220
-  (0.0ms) PRAGMA index_list("translatable_records")
221
-  (0.0ms) PRAGMA index_list("translatable_records_i18n")
222
-  (0.0ms) PRAGMA index_info('index_translatable_records_i18n_on_locale')
223
-  (0.0ms) PRAGMA index_info('index_translatable_records_i18n_on_translatable_record_id')
224
- Connecting to database specified by database.yml
225
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
226
-  (0.2ms) select sqlite_version(*)
227
-  (15.7ms) CREATE TABLE "translatable_records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
228
-  (3.1ms) 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
-  (0.0ms) PRAGMA index_list("translatable_records_i18n")
230
-  (2.9ms) CREATE INDEX "index_translatable_records_i18n_on_locale" ON "translatable_records_i18n" ("locale")
231
-  (0.4ms) PRAGMA index_list("translatable_records_i18n")
232
-  (0.0ms) PRAGMA index_info('index_translatable_records_i18n_on_locale')
233
-  (2.8ms) CREATE INDEX "index_translatable_records_i18n_on_translatable_record_id" ON "translatable_records_i18n" ("translatable_record_id")
234
-  (3.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
235
-  (0.0ms) PRAGMA index_list("schema_migrations")
236
-  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
237
-  (0.1ms) SELECT version FROM "schema_migrations"
238
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831210818')
239
-  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831205714')
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
-  (0.1ms) select sqlite_version(*)
256
-  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
257
-  (0.0ms) PRAGMA index_list("schema_migrations")
258
-  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
259
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
260
- Migrating to CreateModels (20120831205714)
261
-  (0.0ms) begin transaction
262
-  (0.3ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
263
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
264
-  (3.0ms) commit transaction
265
- Migrating to CreateModelsI18n (20120831210818)
266
-  (0.0ms) begin transaction
267
-  (0.3ms) 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) 
268
-  (0.0ms) PRAGMA index_list("models_i18n")
269
-  (0.1ms) CREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")
270
-  (0.0ms) PRAGMA index_list("models_i18n")
271
-  (0.0ms) PRAGMA index_info('index_models_i18n_on_model_id')
272
-  (0.1ms) CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
273
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')
274
-  (3.3ms) commit transaction
275
-  (0.2ms) select sqlite_version(*)
276
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
277
-  (0.0ms) PRAGMA index_list("models")
278
-  (0.0ms) PRAGMA index_list("models_i18n")
279
-  (0.0ms) PRAGMA index_info('index_models_i18n_on_locale')
280
-  (0.0ms) 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
-  (0.1ms) select sqlite_version(*)
285
-  (53.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
286
-  (0.0ms) PRAGMA index_list("schema_migrations")
287
-  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
288
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
289
- Migrating to CreateModels (20120831205714)
290
-  (0.0ms) begin transaction
291
-  (0.0ms) rollback transaction
292
- Connecting to database specified by database.yml
293
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
294
- Migrating to CreateRecords (20120831205714)
295
-  (0.0ms) select sqlite_version(*)
296
-  (0.0ms) begin transaction
297
-  (0.5ms) CREATE TABLE "records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
298
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
299
-  (53.3ms) commit transaction
300
- Migrating to CreateRecordsI18n (20120831210818)
301
-  (0.0ms) begin transaction
302
-  (0.3ms) 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
-  (0.0ms) PRAGMA index_list("records_i18n")
304
-  (0.1ms) CREATE INDEX "index_records_i18n_on_record_id" ON "records_i18n" ("record_id")
305
-  (0.0ms) PRAGMA index_list("records_i18n")
306
-  (0.0ms) PRAGMA index_info('index_records_i18n_on_record_id')
307
-  (0.1ms) CREATE INDEX "index_records_i18n_on_locale" ON "records_i18n" ("locale")
308
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')
309
-  (3.3ms) commit transaction
310
-  (0.3ms) select sqlite_version(*)
311
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
312
-  (0.0ms) PRAGMA index_list("records")
313
-  (0.0ms) PRAGMA index_list("records_i18n")
314
-  (0.0ms) PRAGMA index_info('index_records_i18n_on_locale')
315
-  (0.0ms) PRAGMA index_info('index_records_i18n_on_record_id')
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
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
320
-  (0.3ms) select sqlite_version(*)
321
-  (2.5ms) CREATE TABLE "records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
322
-  (2.7ms) 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
-  (0.0ms) PRAGMA index_list("records_i18n")
324
-  (2.6ms) CREATE INDEX "index_records_i18n_on_locale" ON "records_i18n" ("locale")
325
-  (0.0ms) PRAGMA index_list("records_i18n")
326
-  (0.0ms) PRAGMA index_info('index_records_i18n_on_locale')
327
-  (2.8ms) CREATE INDEX "index_records_i18n_on_record_id" ON "records_i18n" ("record_id")
328
-  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
329
-  (0.0ms) PRAGMA index_list("schema_migrations")
330
-  (2.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
331
-  (0.1ms) SELECT version FROM "schema_migrations"
332
-  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831210818')
333
-  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831205714')
334
- Connecting to database specified by database.yml
335
- Connecting to database specified by database.yml
336
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
337
-  (0.2ms) select sqlite_version(*)
338
-  (31.1ms) CREATE TABLE "records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
339
-  (6.4ms) 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
-  (0.0ms) PRAGMA index_list("records_i18n")
341
-  (4.2ms) CREATE INDEX "index_records_i18n_on_locale" ON "records_i18n" ("locale")
342
-  (0.0ms) PRAGMA index_list("records_i18n")
343
-  (0.0ms) PRAGMA index_info('index_records_i18n_on_locale')
344
-  (5.9ms) CREATE INDEX "index_records_i18n_on_record_id" ON "records_i18n" ("record_id")
345
-  (4.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
346
-  (0.0ms) PRAGMA index_list("schema_migrations")
347
-  (4.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
348
-  (0.1ms) SELECT version FROM "schema_migrations"
349
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831210818')
350
-  (6.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831205714')
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
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
357
-  (0.2ms) select sqlite_version(*)
358
-  (53.8ms) CREATE TABLE "records" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
359
-  (2.7ms) 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
-  (0.0ms) PRAGMA index_list("records_i18n")
361
-  (2.9ms) CREATE INDEX "index_records_i18n_on_locale" ON "records_i18n" ("locale")
362
-  (0.1ms) PRAGMA index_list("records_i18n")
363
-  (0.0ms) PRAGMA index_info('index_records_i18n_on_locale')
364
-  (2.6ms) CREATE INDEX "index_records_i18n_on_record_id" ON "records_i18n" ("record_id")
365
-  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
366
-  (0.0ms) PRAGMA index_list("schema_migrations")
367
-  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
368
-  (0.1ms) SELECT version FROM "schema_migrations"
369
-  (2.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831210818')
370
-  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831205714')
371
- Connecting to database specified by database.yml
372
-  (0.2ms) select sqlite_version(*)
373
-  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
374
-  (0.1ms) PRAGMA index_list("schema_migrations")
375
-  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
376
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
377
- Migrating to CreateModels (20120831205714)
378
-  (0.0ms) begin transaction
379
-  (0.3ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
380
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
381
-  (3.1ms) commit transaction
382
- Migrating to CreateModelsI18n (20120831210818)
383
-  (0.0ms) begin transaction
384
-  (0.3ms) CREATE 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) 
385
-  (0.0ms) PRAGMA index_list("model_i18n")
386
-  (0.1ms) CREATE INDEX "index_model_i18n_on_model_id" ON "model_i18n" ("model_id")
387
-  (0.0ms) PRAGMA index_list("model_i18n")
388
-  (0.0ms) PRAGMA index_info('index_model_i18n_on_model_id')
389
-  (0.1ms) CREATE INDEX "index_model_i18n_on_locale" ON "model_i18n" ("locale")
390
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')
391
-  (3.2ms) commit transaction
392
-  (0.2ms) select sqlite_version(*)
393
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
394
-  (0.0ms) PRAGMA index_list("model_i18n")
395
-  (0.0ms) PRAGMA index_info('index_model_i18n_on_locale')
396
-  (0.0ms) PRAGMA index_info('index_model_i18n_on_model_id')
397
-  (0.0ms) PRAGMA index_list("models")
398
- Connecting to database specified by database.yml
399
-  (0.1ms) select sqlite_version(*)
400
-  (69.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
401
-  (0.1ms) PRAGMA index_list("schema_migrations")
402
-  (3.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
403
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
404
- Migrating to CreateModels (20120831205714)
405
-  (0.1ms) begin transaction
406
-  (0.5ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
407
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
408
-  (3.7ms) commit transaction
409
- Migrating to CreateModelsI18n (20120831210818)
410
-  (0.4ms) begin transaction
411
-  (0.5ms) 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) 
412
-  (0.0ms) PRAGMA index_list("models_i18n")
413
-  (0.2ms) CREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")
414
-  (0.0ms) PRAGMA index_list("models_i18n")
415
-  (0.0ms) PRAGMA index_info('index_models_i18n_on_model_id')
416
-  (0.1ms) CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
417
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831210818')
418
-  (3.9ms) commit transaction
419
-  (0.2ms) select sqlite_version(*)
420
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
421
-  (0.0ms) PRAGMA index_list("models")
422
-  (0.0ms) PRAGMA index_list("models_i18n")
423
-  (0.0ms) PRAGMA index_info('index_models_i18n_on_locale')
424
-  (0.0ms) 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
-  (0.1ms) select sqlite_version(*)
432
-  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
433
-  (2.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
434
-  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
435
- Migrating to CreateModels (20120831205714)
436
-  (0.0ms) begin transaction
437
-  (0.4ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
438
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
439
-  (3.7ms) commit transaction
440
- Migrating to CreateModelsI18n (20130404161713)
441
-  (0.1ms) begin transaction
442
-  (0.3ms) 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
-  (0.1ms) CREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")
444
-  (0.2ms) CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
445
-  (0.1ms) CREATE INDEX "index_models_i18n_on_created_at" ON "models_i18n" ("created_at")
446
-  (0.1ms) CREATE INDEX "index_models_i18n_on_updated_at" ON "models_i18n" ("updated_at")
447
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130404161713')
448
-  (2.9ms) commit transaction
449
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
450
- Connecting to database specified by database.yml
451
-  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
452
-  (0.1ms) select sqlite_version(*)
453
-  (0.2ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
454
-  (0.1ms) 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
-  (0.1ms) CREATE INDEX "index_models_i18n_on_created_at" ON "models_i18n" ("created_at")
456
-  (0.1ms) CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
457
-  (0.1ms) CREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")
458
-  (0.1ms) CREATE INDEX "index_models_i18n_on_updated_at" ON "models_i18n" ("updated_at")
459
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
460
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
461
-  (0.0ms) SELECT version FROM "schema_migrations"
462
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130404161713')
463
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831205714')
464
- Connecting to database specified by database.yml
465
-  (0.1ms) select sqlite_version(*)
466
-  (51.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
467
-  (3.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
468
-  (2.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
469
- Migrating to CreateModels (20120831205714)
470
-  (0.1ms) begin transaction
471
-  (0.5ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
472
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120831205714')
473
-  (3.3ms) commit transaction
474
- Migrating to CreateModelsI18n (20130404161713)
475
-  (0.1ms) begin transaction
476
-  (0.3ms) 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
-  (0.1ms) CREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")
478
-  (0.1ms) CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
479
-  (0.1ms) CREATE INDEX "index_models_i18n_on_name" ON "models_i18n" ("name")
480
-  (0.1ms) CREATE INDEX "index_models_i18n_on_created_at" ON "models_i18n" ("created_at")
481
-  (0.1ms) CREATE INDEX "index_models_i18n_on_updated_at" ON "models_i18n" ("updated_at")
482
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130404161713')
483
-  (4.8ms) commit transaction
484
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
485
- Connecting to database specified by database.yml
486
-  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
487
-  (0.1ms) select sqlite_version(*)
488
-  (0.2ms) CREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
489
-  (0.1ms) 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
-  (0.1ms) CREATE INDEX "index_models_i18n_on_created_at" ON "models_i18n" ("created_at")
491
-  (0.1ms) CREATE INDEX "index_models_i18n_on_locale" ON "models_i18n" ("locale")
492
-  (0.1ms) CREATE INDEX "index_models_i18n_on_model_id" ON "models_i18n" ("model_id")
493
-  (0.1ms) CREATE INDEX "index_models_i18n_on_name" ON "models_i18n" ("name")
494
-  (0.1ms) CREATE INDEX "index_models_i18n_on_updated_at" ON "models_i18n" ("updated_at")
495
-  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
496
-  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
497
-  (0.0ms) SELECT version FROM "schema_migrations"
498
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130404161713')
499
-  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120831205714')