rails_slugs 1.0.10 → 1.1.0

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