rails-i18nterface 0.1.7 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. data/README.md +17 -10
  2. data/app/controllers/rails_i18nterface/application_controller.rb +2 -0
  3. data/app/controllers/rails_i18nterface/translate_controller.rb +29 -80
  4. data/app/helpers/rails_i18nterface/application_helper.rb +2 -0
  5. data/app/helpers/rails_i18nterface/translate_helper.rb +2 -0
  6. data/app/views/rails_i18nterface/translate/index.html.erb +14 -23
  7. data/config/routes.rb +2 -0
  8. data/lib/rails-i18nterface.rb +3 -1
  9. data/lib/rails-i18nterface/cache.rb +40 -0
  10. data/lib/rails-i18nterface/engine.rb +2 -0
  11. data/lib/rails-i18nterface/keys.rb +24 -112
  12. data/lib/rails-i18nterface/sourcefiles.rb +14 -12
  13. data/lib/rails-i18nterface/storage.rb +2 -4
  14. data/lib/rails-i18nterface/utils.rb +51 -0
  15. data/lib/rails-i18nterface/version.rb +3 -1
  16. data/lib/rails-i18nterface/yamlfile.rb +15 -17
  17. data/lib/tasks/rails-i18nterface.rake +1 -0
  18. data/spec/controllers/translate_controller_spec.rb +18 -33
  19. data/spec/internal/app/controllers/application_controller.rb +2 -0
  20. data/spec/internal/app/models/article.rb +8 -2
  21. data/spec/internal/config/routes.rb +2 -0
  22. data/spec/internal/db/combustion_test.sqlite +0 -0
  23. data/spec/internal/log/test.log +241 -1608
  24. data/spec/lib/cache_spec.rb +51 -0
  25. data/spec/lib/keys_spec.rb +59 -88
  26. data/spec/lib/sourcefiles_spec.rb +8 -6
  27. data/spec/lib/storage_spec.rb +2 -0
  28. data/spec/lib/utils_spec.rb +34 -0
  29. data/spec/lib/yamlfile_spec.rb +10 -5
  30. data/spec/requests/search_spec.rb +2 -0
  31. data/spec/spec_helper.rb +3 -3
  32. metadata +104 -67
  33. checksums.yaml +0 -7
  34. data/app/models/rails_i18nterface/translation.rb +0 -23
  35. data/db/migrate/20110921112044_create_translations.rb +0 -18
  36. data/db/migrate/20130422115639_rename_translation_to_namespace.rb +0 -8
  37. data/lib/rails-i18nterface/log.rb +0 -40
  38. data/spec/lib/log_spec.rb +0 -47
  39. data/spec/models/translation_spec.rb +0 -9
@@ -1,7 +1,9 @@
1
+ # encoding: utf-8
2
+
1
3
  module RailsI18nterface
2
4
  module Sourcefiles
3
5
 
4
- def self.extract_files
6
+ def self.extract_files(root_dir)
5
7
  i18n_lookup_pattern = /\b
6
8
  (?:I18n\.t|I18n\.translate|t)
7
9
  (?:\s|\():?(?:'|")
@@ -9,14 +11,14 @@ module RailsI18nterface
9
11
  (?:'|")
10
12
  /x
11
13
  f = {}
12
- self.files_to_scan.reduce(HashWithIndifferentAccess.new) do |files, file|
13
- f = files.merge! self.populate_keys(file, i18n_lookup_pattern)
14
+ self.files_to_scan(root_dir).reduce(HashWithIndifferentAccess.new) do |files, file|
15
+ f = files.merge! self.populate_keys(root_dir, file, i18n_lookup_pattern)
14
16
  end
15
- f.merge self.extract_activerecords
17
+ f.merge self.extract_activerecords(root_dir)
16
18
  end
17
19
 
18
- def self.populate_keys(file, pattern)
19
- files = self.extract_activerecords
20
+ def self.populate_keys(root_dir, file, pattern)
21
+ files = {}
20
22
  begin #hack to avoid UTF-8 error
21
23
  IO.read(file).scan(pattern).flatten.map(&:to_sym).each do |key|
22
24
  path = self.relative_path(file)
@@ -34,19 +36,19 @@ module RailsI18nterface
34
36
  Pathname.new(File.expand_path(file)).relative_path_from(Pathname.new(Rails.root)).to_s
35
37
  end
36
38
 
37
- def self.files_to_scan
38
- Dir.glob(File.join(Storage.root_dir, '{app,config,lib}', '**', '*.{rb,erb,haml,slim,rhtml}')) +
39
- Dir.glob(File.join(Storage.root_dir, '{public,app/assets}', 'javascripts', '**', '*.{js,coffee}'))
39
+ def self.files_to_scan(root_dir)
40
+ Dir.glob(File.join(root_dir, '{app,config,lib}', '**', '*.{rb,erb,haml,slim,rhtml}')) +
41
+ Dir.glob(File.join(root_dir, '{public,app/assets}', 'javascripts', '**', '*.{js,coffee}'))
40
42
  end
41
43
 
42
- def self.extract_activerecords
44
+ def self.extract_activerecords(root_dir)
43
45
  files = {}
44
- schema = File.join(Storage.root_dir, 'db', 'schema.rb')
46
+ schema = File.join(root_dir, 'db', 'schema.rb')
45
47
  if File.exists? schema
46
48
  regex = Regexp.new('\s*create_table\s"([^"]*)[^\n]*\n(.*?)\send\n', Regexp::MULTILINE)
47
49
  matchdata = regex.match(File.read(schema))
48
50
  while matchdata != nil
49
- model = matchdata[1]
51
+ model = matchdata[1].classify.underscore
50
52
  files["activerecord.models.#{model}"] = ['db/schema.rb']
51
53
  files.merge!(self.extract_attributes(model, matchdata[2]))
52
54
  matchdata = regex.match(matchdata.post_match)
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  module RailsI18nterface
2
4
  class Storage
3
5
 
@@ -13,10 +15,6 @@ module RailsI18nterface
13
15
  Yamlfile.new(file_path).write(remove_blanks(keys))
14
16
  end
15
17
 
16
- def self.file_paths(locale)
17
- Dir.glob(File.join(root_dir, 'config', 'locales', '**', "#{locale}.yml"))
18
- end
19
-
20
18
  def self.root_dir
21
19
  Rails.root
22
20
  end
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  module RailsI18nterface
2
4
  module Utils
3
5
 
@@ -20,5 +22,54 @@ module RailsI18nterface
20
22
  end
21
23
  end
22
24
 
25
+ def to_shallow_hash(hash)
26
+ hash.reduce({}) do |shallow_hash, (key, value)|
27
+ if value.is_a?(Hash)
28
+ to_shallow_hash(value).each do |sub_key, sub_value|
29
+ shallow_hash[[key, sub_key].join('.')] = sub_value
30
+ end
31
+ else
32
+ shallow_hash[key.to_s] = value
33
+ end
34
+ shallow_hash
35
+ end
36
+ end
37
+
38
+ def to_deep_hash(hash)
39
+ hash.reduce({}) do |a, (key, value)|
40
+ keys = key.to_s.split('.').reverse
41
+ leaf_key = keys.shift
42
+ key_hash = keys.reduce({leaf_key.to_sym => value}) { |h, k| { k.to_sym => h } }
43
+ deep_merge!(a, key_hash)
44
+ a
45
+ end
46
+ end
47
+
48
+ def deep_merge!(hash1, hash2)
49
+ merger = proc { |key, v1, v2| Hash === v1 && Hash === v2 ? v1.merge(v2, &merger) : v2 }
50
+ hash1.merge!(hash2, &merger)
51
+ end
52
+
53
+ def contains_key?(hash, key)
54
+ keys = key.to_s.split('.')
55
+ return false if keys.empty?
56
+ !keys.reduce(HashWithIndifferentAccess.new(hash)) do |memo, k|
57
+ memo.is_a?(Hash) ? memo.try(:[], k) : nil
58
+ end.nil?
59
+ end
60
+
61
+ def deep_stringify_keys(hash)
62
+ hash.reduce({ }) do |result, (key, value)|
63
+ value = deep_stringify_keys(value) if value.is_a? Hash
64
+ result[(key.to_s rescue key) || key] = value
65
+ result
66
+ end
67
+ end
68
+
69
+ def keys_to_yaml(hash)
70
+ keys = deep_stringify_keys(hash)
71
+ keys.respond_to?(:ya2yaml) ? keys.ya2yaml(escape_as_utf8: true) : keys.to_yaml
72
+ end
73
+
23
74
  end
24
75
  end
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  module RailsI18nterface
2
- VERSION = '0.1.7'
4
+ VERSION = '0.2.0'
3
5
  end
@@ -1,37 +1,35 @@
1
+ # encoding: utf-8
2
+
1
3
  require 'fileutils'
2
4
 
3
5
  module RailsI18nterface
4
6
  class Yamlfile
7
+
8
+ include Utils
9
+
5
10
  attr_reader :path
6
11
 
7
- def initialize(path)
8
- @path = path
12
+ def initialize(root_dir, locale)
13
+ @root_dir = root_dir
14
+ @locale = locale
15
+ @file_path = File.join(@root_dir, 'config', 'locales', "#{locale}.yml")
9
16
  end
10
17
 
11
18
  def write(hash)
12
- FileUtils.mkdir_p File.dirname(@path)
13
- File.open(@path, 'w') do |file|
19
+ FileUtils.mkdir_p File.dirname(@file_path)
20
+ File.open(@file_path, 'w') do |file|
14
21
  file.puts keys_to_yaml(hash)
15
22
  end
16
23
  end
17
24
 
18
25
  def read
19
- File.exists?(path) ? YAML::load(IO.read(@path)) : { }
26
+ File.exists?(@file_path) ? YAML::load(IO.read(@file_path)) : { }
20
27
  end
21
28
 
22
- # Stringifying keys for prettier YAML
23
- def deep_stringify_keys(hash)
24
- hash.reduce({ }) do |result, (key, value)|
25
- value = deep_stringify_keys(value) if value.is_a? Hash
26
- result[(key.to_s rescue key) || key] = value
27
- result
28
- end
29
+ def write_to_file
30
+ keys = { @locale => I18n.backend.send(:translations)[@locale] }
31
+ write remove_blanks(keys)
29
32
  end
30
33
 
31
- def keys_to_yaml(hash)
32
- # Using ya2yaml, if available, for UTF8 support
33
- keys = deep_stringify_keys(hash)
34
- keys.respond_to?(:ya2yaml) ? keys.ya2yaml(escape_as_utf8: true) : keys.to_yaml
35
- end
36
34
  end
37
35
  end
@@ -1,3 +1,4 @@
1
+ # encoding: utf-8
1
2
  # desc "Explaining what the task does"
2
3
  # task :translate do
3
4
  # # Task goes here
@@ -1,15 +1,16 @@
1
+ # encoding: utf-8
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  describe RailsI18nterface::TranslateController do
4
6
  describe 'index' do
7
+
8
+ include RailsI18nterface::Utils
9
+
5
10
  before(:each) do
6
11
  controller.stub!(:per_page).and_return(1)
7
12
  I18n.backend.stub!(:translations).and_return(i18n_translations)
8
13
  I18n.backend.instance_eval { @initialized = true }
9
- keys = mock(:keys)
10
- keys.stub!(:i18n_keys).and_return(['vendor.foobar'])
11
- RailsI18nterface::Keys.should_receive(:new).and_return(keys)
12
- RailsI18nterface::Keys.should_receive(:files).and_return(files)
13
14
  I18n.stub!(:valid_locales).and_return([:en, :sv])
14
15
  I18n.stub!(:default_locale).and_return(:sv)
15
16
  end
@@ -18,35 +19,31 @@ describe RailsI18nterface::TranslateController do
18
19
  get_page :index, use_route: 'rails-i18nterface'
19
20
  assigns(:from_locale).should == :sv
20
21
  assigns(:to_locale).should == :en
21
- assigns(:files).should == files
22
- assigns(:keys).sort.should == ['articles.new.page_title', 'home.page_title', 'vendor.foobar']
23
- assigns(:paginated_keys).should == ['articles.new.page_title']
22
+ assigns(:all_keys).size.should == 22
23
+ assigns(:paginated_keys).should == ['activerecord.attributes.article.active']
24
24
  end
25
25
 
26
26
  it 'can be paginated with the page param' do
27
27
  get_page :index, :page => 2, use_route: 'rails-i18nterface'
28
- assigns(:files).should == files
29
- assigns(:paginated_keys).should == ['home.page_title']
28
+ assigns(:paginated_keys).should == ['activerecord.attributes.article.body']
30
29
  end
31
30
 
32
31
  it 'accepts a key_pattern param with key_type=starts_with' do
33
32
  get_page :index, :key_pattern => 'articles', :key_type => 'starts_with', use_route: 'rails-i18nterface'
34
- assigns(:files).should == files
35
33
  assigns(:paginated_keys).should == ['articles.new.page_title']
36
34
  assigns(:total_entries).should == 1
37
35
  end
38
36
 
39
37
  it 'accepts a key_pattern param with key_type=contains' do
40
38
  get_page :index, :key_pattern => 'page_', :key_type => 'contains', use_route: 'rails-i18nterface'
41
- assigns(:files).should == files
42
39
  assigns(:total_entries).should == 2
43
40
  assigns(:paginated_keys).should == ['articles.new.page_title']
44
41
  end
45
42
 
46
43
  it 'accepts a filter=untranslated param' do
47
44
  get_page :index, :filter => 'untranslated', use_route: 'rails-i18nterface'
48
- assigns(:total_entries).should == 2
49
- assigns(:paginated_keys).should == ['articles.new.page_title']
45
+ assigns(:total_entries).should == 21
46
+ assigns(:paginated_keys).should == ['activerecord.attributes.article.active']
50
47
  end
51
48
 
52
49
  it 'accepts a filter=translated param' do
@@ -55,15 +52,14 @@ describe RailsI18nterface::TranslateController do
55
52
  assigns(:paginated_keys).should == ['vendor.foobar']
56
53
  end
57
54
 
58
- it 'accepts a filter=changed param' do
59
- log = mock(:log)
60
- old_translations = {:home => {:page_title => 'Skapar ny artikel'}}
61
- log.should_receive(:read).and_return(RailsI18nterface::Yamlfile.new(nil).deep_stringify_keys(old_translations))
62
- RailsI18nterface::Log.should_receive(:new).with(:sv, :en, {}).and_return(log)
63
- get_page :index, :filter => 'changed', use_route: 'rails-i18nterface'
64
- assigns(:total_entries).should == 1
65
- assigns(:keys).should == ['home.page_title']
66
- end
55
+ # it 'accepts a filter=changed param' do
56
+ # log = mock(:log)
57
+ # old_translations = {:home => {:page_title => 'Skapar ny artikel'}}
58
+ # log.should_receive(:read).and_return(deep_stringify_keys(old_translations))
59
+ # get_page :index, :filter => 'changed', use_route: 'rails-i18nterface'
60
+ # assigns(:total_entries).should == 1
61
+ # assigns(:keys).should == ['home.page_title']
62
+ # end
67
63
 
68
64
  def i18n_translations
69
65
  HashWithIndifferentAccess.new({
@@ -111,13 +107,6 @@ describe RailsI18nterface::TranslateController do
111
107
  # }
112
108
  key_param = {'articles.new.title' => 'New Article', 'category' => 'Category'}
113
109
  #I18n.backend.should_receive(:store_translations).with(:en, translations)
114
- storage = mock(:storage)
115
- storage.should_receive(:write_to_file)
116
- RailsI18nterface::Storage.should_receive(:new).with(:en).and_return(storage)
117
- log = mock(:log)
118
- log.should_receive(:write_to_file)
119
- RailsI18nterface::Log.should_receive(:new).with(:sv, :en, key_param.keys).and_return(log)
120
- RailsI18nterface::Storage.stub!(:root_dir).and_return(i18n_files_dir)
121
110
  put :update, key: key_param, version: 1, use_route: 'rails-i18nterface'
122
111
  response.should be_redirect
123
112
  end
@@ -128,8 +117,4 @@ describe RailsI18nterface::TranslateController do
128
117
  response.should be_success
129
118
  end
130
119
 
131
- def i18n_files_dir
132
- File.expand_path(File.join('..', '..', '..', 'spec', 'internal'), __FILE__)
133
- end
134
-
135
120
  end
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  class ApplicationController < ActionController::Base
2
4
  def index
3
5
  end
@@ -1,11 +1,17 @@
1
- class Article < ActiveRecord::Base
1
+ # encoding: utf-8
2
+
3
+ class Article
2
4
  def validate
3
- errors.add_to_base([t(:'article.key1') + "#{t('article.key2')}"])
5
+ # rubocop : disable all
6
+ something([t(:'article.key1') + "#{t('article.key2')}"])
4
7
  I18n.t 'article.key3'
5
8
  I18n.t 'article.key3'
6
9
  I18n.t :'article.key4'
7
10
  I18n.translate :'article.key5'
8
11
  'bla bla t("blubba bla") foobar'
9
12
  'bla bla t ' + "blubba bla" + ' foobar'
13
+ # rubocop : enable all
14
+ end
15
+ def something
10
16
  end
11
17
  end
@@ -1,3 +1,5 @@
1
+ # encoding: utf-8
2
+
1
3
  Rails.application.routes.draw do
2
4
  root to: 'application#index'
3
5
  mount RailsI18nterface::Engine => '/translate', as: 'translate_engine'
@@ -1,1707 +1,340 @@
1
1
  Connecting to database specified by database.yml
2
-  (0.1ms) select sqlite_version(*)
3
-  (176.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
-  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2
+  (2.4ms) select sqlite_version(*)
3
+  (112.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
4
+  (88.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
5
+  (91.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
6
+  (91.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7
+  (5.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
8
  Migrating to CreateTranslations (20110921112044)
7
9
   (0.0ms) begin transaction
8
10
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
9
11
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
10
-  (120.6ms) commit transaction
11
- Connecting to database specified by database.yml
12
-  (0.1ms) select sqlite_version(*)
13
-  (163.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
16
- Migrating to CreateTranslations (20110921112044)
17
-  (0.0ms) begin transaction
18
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
19
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
20
-  (145.9ms) commit transaction
21
- Connecting to database specified by database.yml
22
-  (0.1ms) select sqlite_version(*)
23
-  (123.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
24
-  (133.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
26
- Migrating to CreateTranslations (20110921112044)
27
-  (0.0ms) begin transaction
28
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
29
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
30
-  (128.8ms) commit transaction
31
- Connecting to database specified by database.yml
32
-  (0.1ms) select sqlite_version(*)
33
-  (154.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
34
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
35
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
36
- Migrating to CreateTranslations (20110921112044)
37
-  (0.0ms) begin transaction
38
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
39
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
40
-  (193.7ms) commit transaction
41
- Connecting to database specified by database.yml
42
-  (0.1ms) select sqlite_version(*)
43
-  (209.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
44
-  (166.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
45
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
46
- Migrating to CreateTranslations (20110921112044)
47
-  (0.0ms) begin transaction
48
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
49
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
50
-  (137.5ms) commit transaction
51
- Connecting to database specified by database.yml
52
-  (0.1ms) select sqlite_version(*)
53
-  (176.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
54
-  (166.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
55
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
56
- Migrating to CreateTranslations (20110921112044)
57
-  (0.0ms) begin transaction
58
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
59
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
60
-  (154.0ms) commit transaction
61
- Connecting to database specified by database.yml
62
-  (0.1ms) select sqlite_version(*)
63
-  (158.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
64
-  (167.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
65
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
66
- Migrating to CreateTranslations (20110921112044)
67
-  (0.0ms) begin transaction
68
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
69
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
70
-  (145.9ms) commit transaction
71
- Connecting to database specified by database.yml
72
-  (0.1ms) select sqlite_version(*)
73
-  (188.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
74
-  (134.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
75
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
76
- Migrating to CreateTranslations (20110921112044)
77
-  (0.0ms) begin transaction
78
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
79
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
80
-  (137.0ms) commit transaction
81
- Connecting to database specified by database.yml
82
-  (0.1ms) select sqlite_version(*)
83
-  (180.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
84
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
85
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
86
- Migrating to CreateTranslations (20110921112044)
87
-  (0.0ms) begin transaction
88
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
89
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
90
-  (137.5ms) commit transaction
91
- Connecting to database specified by database.yml
92
-  (0.1ms) select sqlite_version(*)
93
-  (171.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
94
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
96
- Migrating to CreateTranslations (20110921112044)
97
-  (0.0ms) begin transaction
98
-  (0.5ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
99
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
100
-  (162.0ms) commit transaction
101
- Connecting to database specified by database.yml
102
-  (0.1ms) select sqlite_version(*)
103
-  (271.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
104
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
105
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
106
- Migrating to CreateTranslations (20110921112044)
107
-  (0.0ms) begin transaction
108
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
109
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
110
-  (157.7ms) commit transaction
111
- Connecting to database specified by database.yml
112
-  (0.1ms) select sqlite_version(*)
113
-  (202.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
114
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
115
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
116
- Migrating to CreateTranslations (20110921112044)
117
-  (0.0ms) begin transaction
118
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
119
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
120
-  (154.3ms) commit transaction
121
- Connecting to database specified by database.yml
122
-  (0.1ms) select sqlite_version(*)
123
-  (156.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
124
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
125
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
126
- Migrating to CreateTranslations (20110921112044)
127
-  (0.0ms) begin transaction
128
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
129
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
130
-  (154.3ms) commit transaction
131
- Connecting to database specified by database.yml
132
-  (0.1ms) select sqlite_version(*)
133
-  (162.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
134
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
135
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
136
- Migrating to CreateTranslations (20110921112044)
137
-  (0.0ms) begin transaction
138
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
139
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
140
-  (129.1ms) commit transaction
141
- Connecting to database specified by database.yml
142
-  (0.1ms) select sqlite_version(*)
143
-  (169.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
144
-  (160.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
145
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
146
- Migrating to CreateTranslations (20110921112044)
147
-  (0.0ms) begin transaction
148
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
149
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
150
-  (137.6ms) commit transaction
151
- Connecting to database specified by database.yml
152
-  (0.1ms) select sqlite_version(*)
153
-  (153.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
154
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
155
- Connecting to database specified by database.yml
156
-  (0.1ms) select sqlite_version(*)
157
-  (174.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
158
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
159
- Connecting to database specified by database.yml
160
-  (0.1ms) select sqlite_version(*)
161
-  (177.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
162
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
163
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
164
- Migrating to CreateTranslations (20110921112044)
165
-  (0.0ms) begin transaction
166
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
167
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
168
-  (177.7ms) commit transaction
169
- Connecting to database specified by database.yml
170
-  (0.6ms) select sqlite_version(*)
171
-  (145.0ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
172
-  (150.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
173
-  (159.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
174
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
175
- Migrating to CreateTranslations (20110921112044)
176
-  (0.0ms) begin transaction
177
-  (0.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
178
- SQLite3::SQLException: table "translations" already exists: CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
179
-  (0.1ms) rollback transaction
180
- Connecting to database specified by database.yml
181
-  (0.6ms) select sqlite_version(*)
182
-  (164.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
183
-  (158.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
184
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
185
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
186
- Migrating to CreateTranslations (20110921112044)
187
-  (0.0ms) begin transaction
188
-  (0.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
189
- SQLite3::SQLException: table "translations" already exists: CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
190
-  (0.0ms) rollback transaction
191
- Connecting to database specified by database.yml
192
-  (0.9ms) select sqlite_version(*)
193
-  (157.8ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
194
-  (191.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
195
-  (167.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
196
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
197
- Migrating to CreateTranslations (20110921112044)
198
-  (0.0ms) begin transaction
199
-  (0.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
200
- SQLite3::SQLException: table "translations" already exists: CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
201
-  (0.1ms) rollback transaction
202
- Connecting to database specified by database.yml
203
-  (0.1ms) select sqlite_version(*)
204
-  (200.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
205
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
206
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
207
- Migrating to CreateTranslations (20110921112044)
208
-  (0.0ms) begin transaction
209
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
210
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
211
-  (168.3ms) commit transaction
212
- Connecting to database specified by database.yml
213
-  (0.1ms) select sqlite_version(*)
214
-  (169.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
215
-  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
216
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
217
- Migrating to CreateTranslations (20110921112044)
218
-  (0.0ms) begin transaction
219
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
220
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
221
-  (137.5ms) commit transaction
222
- Connecting to database specified by database.yml
223
-  (0.1ms) select sqlite_version(*)
224
-  (151.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
225
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
226
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
227
- Migrating to CreateTranslations (20110921112044)
228
-  (0.0ms) begin transaction
229
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
230
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
231
-  (161.7ms) commit transaction
232
- Connecting to database specified by database.yml
233
-  (0.1ms) select sqlite_version(*)
234
-  (160.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
235
-  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
236
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
237
- Migrating to CreateTranslations (20110921112044)
238
-  (0.0ms) begin transaction
239
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
240
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
241
-  (162.5ms) commit transaction
242
- Connecting to database specified by database.yml
243
-  (0.1ms) select sqlite_version(*)
244
-  (182.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
245
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
246
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
247
- Migrating to CreateTranslations (20110921112044)
248
-  (0.0ms) begin transaction
249
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
250
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
251
-  (145.8ms) commit transaction
252
- Connecting to database specified by database.yml
253
-  (0.1ms) select sqlite_version(*)
254
-  (128.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
255
-  (133.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
256
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
257
- Migrating to CreateTranslations (20110921112044)
258
-  (0.0ms) begin transaction
259
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
260
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
261
-  (120.8ms) commit transaction
262
- Connecting to database specified by database.yml
263
-  (0.1ms) select sqlite_version(*)
264
-  (143.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
265
-  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
266
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
267
- Migrating to CreateTranslations (20110921112044)
268
-  (0.0ms) begin transaction
269
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
270
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
271
-  (104.2ms) commit transaction
272
- Connecting to database specified by database.yml
273
-  (0.1ms) select sqlite_version(*)
274
-  (146.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
275
-  (117.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
276
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
277
- Migrating to CreateTranslations (20110921112044)
278
-  (0.0ms) begin transaction
279
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
280
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
281
-  (112.6ms) commit transaction
282
- Connecting to database specified by database.yml
283
-  (0.1ms) select sqlite_version(*)
284
-  (199.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
285
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
286
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
287
- Migrating to CreateTranslations (20110921112044)
288
-  (0.0ms) begin transaction
289
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
290
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
291
-  (145.8ms) commit transaction
292
- Connecting to database specified by database.yml
293
-  (0.1ms) select sqlite_version(*)
294
-  (164.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
295
-  (154.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
296
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
297
- Migrating to CreateTranslations (20110921112044)
298
-  (0.0ms) begin transaction
299
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
300
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
301
-  (152.7ms) commit transaction
302
- Connecting to database specified by database.yml
303
-  (0.1ms) select sqlite_version(*)
304
-  (168.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
305
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
306
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
307
- Migrating to CreateTranslations (20110921112044)
308
-  (0.0ms) begin transaction
309
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
310
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
311
-  (168.5ms) commit transaction
312
- Connecting to database specified by database.yml
313
-  (0.1ms) select sqlite_version(*)
314
-  (147.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
315
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
316
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
317
- Migrating to CreateTranslations (20110921112044)
318
-  (0.0ms) begin transaction
319
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
320
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
321
-  (160.9ms) commit transaction
322
- Connecting to database specified by database.yml
323
-  (0.1ms) select sqlite_version(*)
324
-  (166.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
325
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
326
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
327
- Migrating to CreateTranslations (20110921112044)
328
-  (0.0ms) begin transaction
329
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
330
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
331
-  (130.5ms) commit transaction
332
- Connecting to database specified by database.yml
333
-  (0.1ms) select sqlite_version(*)
334
-  (146.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
335
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
336
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
337
- Migrating to CreateTranslations (20110921112044)
338
-  (0.0ms) begin transaction
339
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
340
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
341
-  (161.0ms) commit transaction
342
- Connecting to database specified by database.yml
343
-  (0.1ms) select sqlite_version(*)
344
-  (147.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
345
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
346
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
347
- Migrating to CreateTranslations (20110921112044)
348
-  (0.0ms) begin transaction
349
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
350
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
351
-  (137.4ms) commit transaction
352
- Connecting to database specified by database.yml
353
-  (0.1ms) select sqlite_version(*)
354
-  (179.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
355
-  (143.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
356
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
357
- Migrating to CreateTranslations (20110921112044)
358
-  (0.0ms) begin transaction
359
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
360
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
361
-  (144.3ms) commit transaction
362
- Connecting to database specified by database.yml
363
-  (0.1ms) select sqlite_version(*)
364
-  (166.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
365
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
366
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
367
- Migrating to CreateTranslations (20110921112044)
368
-  (0.0ms) begin transaction
369
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
370
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
371
-  (160.1ms) commit transaction
372
- Connecting to database specified by database.yml
373
-  (0.1ms) select sqlite_version(*)
374
-  (173.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
375
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
376
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
377
- Migrating to CreateTranslations (20110921112044)
378
-  (0.0ms) begin transaction
379
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
380
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
381
-  (144.6ms) commit transaction
382
- Connecting to database specified by database.yml
383
-  (0.1ms) select sqlite_version(*)
384
-  (161.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
385
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
386
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
387
- Migrating to CreateTranslations (20110921112044)
388
-  (0.0ms) begin transaction
389
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
390
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
391
-  (120.5ms) commit transaction
392
- Connecting to database specified by database.yml
393
-  (0.1ms) select sqlite_version(*)
394
-  (194.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
395
-  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
396
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
397
- Migrating to CreateTranslations (20110921112044)
398
-  (0.0ms) begin transaction
399
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
400
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
401
-  (145.7ms) commit transaction
402
- Connecting to database specified by database.yml
403
-  (0.1ms) select sqlite_version(*)
404
-  (160.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
405
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
406
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
407
- Migrating to CreateTranslations (20110921112044)
408
-  (0.0ms) begin transaction
409
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
410
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
411
-  (179.1ms) commit transaction
412
- Connecting to database specified by database.yml
413
-  (0.1ms) select sqlite_version(*)
414
-  (164.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
415
-  (141.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
416
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
417
- Migrating to CreateTranslations (20110921112044)
418
-  (0.0ms) begin transaction
419
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
420
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
421
-  (162.4ms) commit transaction
422
- Connecting to database specified by database.yml
423
-  (0.1ms) select sqlite_version(*)
424
-  (219.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
425
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
426
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
427
- Migrating to CreateTranslations (20110921112044)
428
-  (0.0ms) begin transaction
429
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
430
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
431
-  (154.0ms) commit transaction
432
- Connecting to database specified by database.yml
433
-  (0.1ms) select sqlite_version(*)
434
-  (166.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
435
-  (160.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
436
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
437
- Migrating to CreateTranslations (20110921112044)
438
-  (0.0ms) begin transaction
439
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
440
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
441
-  (162.5ms) commit transaction
442
- Connecting to database specified by database.yml
443
-  (0.1ms) select sqlite_version(*)
444
-  (191.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
445
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
446
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
447
- Migrating to CreateTranslations (20110921112044)
448
-  (0.0ms) begin transaction
449
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
450
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
451
-  (154.1ms) commit transaction
452
- Connecting to database specified by database.yml
453
-  (0.1ms) select sqlite_version(*)
454
-  (159.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
455
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
456
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
457
- Migrating to CreateTranslations (20110921112044)
458
-  (0.0ms) begin transaction
459
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
460
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
461
-  (204.2ms) commit transaction
462
- Connecting to database specified by database.yml
463
-  (0.1ms) select sqlite_version(*)
464
-  (165.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
465
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
466
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
467
- Migrating to CreateTranslations (20110921112044)
468
-  (0.0ms) begin transaction
469
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
470
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
471
-  (143.0ms) commit transaction
472
- Connecting to database specified by database.yml
473
-  (0.1ms) select sqlite_version(*)
474
-  (133.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
475
-  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
476
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
477
- Migrating to CreateTranslations (20110921112044)
478
-  (0.0ms) begin transaction
479
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
480
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
481
-  (197.4ms) commit transaction
482
- Connecting to database specified by database.yml
483
-  (0.1ms) select sqlite_version(*)
484
-  (130.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
485
-  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
486
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
487
- Migrating to CreateTranslations (20110921112044)
488
-  (0.0ms) begin transaction
489
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
490
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
491
-  (137.5ms) commit transaction
492
- Connecting to database specified by database.yml
493
-  (0.1ms) select sqlite_version(*)
494
-  (137.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
495
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
496
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
497
- Migrating to CreateTranslations (20110921112044)
498
-  (0.0ms) begin transaction
499
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
500
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
501
-  (145.9ms) commit transaction
502
- Connecting to database specified by database.yml
503
-  (0.1ms) select sqlite_version(*)
504
-  (196.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
505
-  (182.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
506
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
507
- Migrating to CreateTranslations (20110921112044)
508
-  (0.0ms) begin transaction
509
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
510
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
511
-  (145.8ms) commit transaction
512
- Connecting to database specified by database.yml
513
-  (0.1ms) select sqlite_version(*)
514
-  (213.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
515
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
516
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
517
- Migrating to CreateTranslations (20110921112044)
518
-  (0.0ms) begin transaction
519
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
520
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
521
-  (151.3ms) commit transaction
522
- Connecting to database specified by database.yml
523
-  (0.1ms) select sqlite_version(*)
524
-  (214.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
525
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
526
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
527
- Migrating to CreateTranslations (20110921112044)
528
-  (0.0ms) begin transaction
529
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
530
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
531
-  (129.3ms) commit transaction
532
- Connecting to database specified by database.yml
533
-  (0.1ms) select sqlite_version(*)
534
-  (145.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
535
-  (134.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
536
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
537
- Migrating to CreateTranslations (20110921112044)
538
-  (0.0ms) begin transaction
539
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
540
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
541
-  (128.1ms) commit transaction
542
- Connecting to database specified by database.yml
543
-  (0.1ms) select sqlite_version(*)
544
-  (172.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
545
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
546
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
547
- Migrating to CreateTranslations (20110921112044)
548
-  (0.0ms) begin transaction
549
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
550
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
551
-  (178.9ms) commit transaction
552
- Connecting to database specified by database.yml
553
-  (0.1ms) select sqlite_version(*)
554
-  (164.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
555
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
556
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
557
- Migrating to CreateTranslations (20110921112044)
558
-  (0.0ms) begin transaction
559
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
560
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
561
-  (153.6ms) commit transaction
562
- Connecting to database specified by database.yml
563
-  (0.1ms) select sqlite_version(*)
564
-  (275.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
565
-  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
566
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
567
- Migrating to CreateTranslations (20110921112044)
568
-  (0.0ms) begin transaction
569
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
570
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
571
-  (162.1ms) commit transaction
572
- Connecting to database specified by database.yml
573
-  (0.1ms) select sqlite_version(*)
574
-  (167.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
575
-  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
576
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
577
- Migrating to CreateTranslations (20110921112044)
578
-  (0.0ms) begin transaction
579
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
580
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
581
-  (120.9ms) commit transaction
582
- Connecting to database specified by database.yml
583
-  (0.1ms) select sqlite_version(*)
584
-  (169.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
585
-  (151.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
586
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
587
- Migrating to CreateTranslations (20110921112044)
588
-  (0.0ms) begin transaction
589
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
590
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
591
-  (152.8ms) commit transaction
592
- Connecting to database specified by database.yml
593
-  (0.1ms) select sqlite_version(*)
594
-  (150.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
595
-  (216.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
596
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
597
- Migrating to CreateTranslations (20110921112044)
598
-  (0.0ms) begin transaction
599
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
600
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
601
-  (143.0ms) commit transaction
602
- Connecting to database specified by database.yml
603
-  (0.1ms) select sqlite_version(*)
604
-  (190.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
605
-  (125.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
606
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
607
- Migrating to CreateTranslations (20110921112044)
608
-  (0.0ms) begin transaction
609
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
610
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
611
-  (112.3ms) commit transaction
612
- Connecting to database specified by database.yml
613
-  (0.1ms) select sqlite_version(*)
614
-  (170.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
615
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
616
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
617
- Migrating to CreateTranslations (20110921112044)
618
-  (0.0ms) begin transaction
619
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
620
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
621
-  (145.8ms) commit transaction
622
- Connecting to database specified by database.yml
623
-  (0.1ms) select sqlite_version(*)
624
-  (153.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
625
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
626
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
627
- Migrating to CreateTranslations (20110921112044)
628
-  (0.0ms) begin transaction
629
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
630
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
631
-  (161.2ms) commit transaction
632
- Connecting to database specified by database.yml
633
-  (0.1ms) select sqlite_version(*)
634
-  (157.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
635
-  (150.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
636
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
637
- Migrating to CreateTranslations (20110921112044)
638
-  (0.0ms) begin transaction
639
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
640
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
641
-  (145.6ms) commit transaction
642
- Connecting to database specified by database.yml
643
-  (0.1ms) select sqlite_version(*)
644
-  (159.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
645
-  (151.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
646
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
647
- Migrating to CreateTranslations (20110921112044)
648
-  (0.0ms) begin transaction
649
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
650
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
651
-  (145.7ms) commit transaction
652
- Connecting to database specified by database.yml
653
-  (0.1ms) select sqlite_version(*)
654
-  (157.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
655
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
656
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
657
- Migrating to CreateTranslations (20110921112044)
658
-  (0.0ms) begin transaction
659
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
660
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
661
-  (160.2ms) commit transaction
662
- Connecting to database specified by database.yml
663
-  (0.1ms) select sqlite_version(*)
664
-  (170.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
665
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
666
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
667
- Migrating to CreateTranslations (20110921112044)
668
-  (0.0ms) begin transaction
669
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
670
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
671
-  (152.0ms) commit transaction
672
- Connecting to database specified by database.yml
673
-  (0.1ms) select sqlite_version(*)
674
-  (178.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
675
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
676
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
677
- Migrating to CreateTranslations (20110921112044)
678
-  (0.0ms) begin transaction
679
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
680
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
681
-  (160.9ms) commit transaction
682
- Connecting to database specified by database.yml
683
-  (0.1ms) select sqlite_version(*)
684
-  (160.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
685
-  (133.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
686
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
687
- Migrating to CreateTranslations (20110921112044)
688
-  (0.0ms) begin transaction
689
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
690
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
691
-  (144.8ms) commit transaction
692
- Connecting to database specified by database.yml
693
-  (0.1ms) select sqlite_version(*)
694
-  (150.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
695
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
696
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
697
- Migrating to CreateTranslations (20110921112044)
698
-  (0.0ms) begin transaction
699
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
700
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
701
-  (160.9ms) commit transaction
702
- Connecting to database specified by database.yml
703
-  (0.1ms) select sqlite_version(*)
704
-  (159.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
705
-  (168.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
706
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
707
- Migrating to CreateTranslations (20110921112044)
708
-  (0.0ms) begin transaction
709
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
710
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
711
-  (153.9ms) commit transaction
712
- Connecting to database specified by database.yml
713
-  (0.1ms) select sqlite_version(*)
714
-  (147.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
715
-  (151.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
716
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
717
- Migrating to CreateTranslations (20110921112044)
718
-  (0.0ms) begin transaction
719
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
720
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
721
-  (162.4ms) commit transaction
722
- Connecting to database specified by database.yml
723
-  (0.1ms) select sqlite_version(*)
724
-  (219.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
725
-  (150.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
726
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
727
- Migrating to CreateTranslations (20110921112044)
728
-  (0.0ms) begin transaction
729
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
730
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
731
-  (153.9ms) commit transaction
732
- Connecting to database specified by database.yml
733
-  (0.1ms) select sqlite_version(*)
734
-  (165.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
735
-  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
736
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
737
- Migrating to CreateTranslations (20110921112044)
738
-  (0.0ms) begin transaction
739
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
740
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
741
-  (112.3ms) commit transaction
742
- Connecting to database specified by database.yml
743
-  (0.1ms) select sqlite_version(*)
744
-  (160.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
745
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
746
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
747
- Migrating to CreateTranslations (20110921112044)
748
-  (0.0ms) begin transaction
749
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
750
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
751
-  (137.4ms) commit transaction
752
- Connecting to database specified by database.yml
753
-  (0.1ms) select sqlite_version(*)
754
-  (181.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
755
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
756
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
757
- Migrating to CreateTranslations (20110921112044)
758
-  (0.1ms) begin transaction
759
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
760
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
761
-  (161.7ms) commit transaction
762
- Connecting to database specified by database.yml
763
-  (0.1ms) select sqlite_version(*)
764
-  (179.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
765
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
766
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
767
- Migrating to CreateTranslations (20110921112044)
768
-  (0.0ms) begin transaction
769
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
770
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
771
-  (154.2ms) commit transaction
772
- Connecting to database specified by database.yml
773
-  (0.1ms) select sqlite_version(*)
774
-  (178.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
775
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
776
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
777
- Migrating to CreateTranslations (20110921112044)
778
-  (0.0ms) begin transaction
779
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
780
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
781
-  (137.0ms) commit transaction
782
- Connecting to database specified by database.yml
783
-  (0.1ms) select sqlite_version(*)
784
-  (162.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
785
-  (151.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
786
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
787
- Migrating to CreateTranslations (20110921112044)
788
-  (0.0ms) begin transaction
789
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
790
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
791
-  (144.7ms) commit transaction
792
- Connecting to database specified by database.yml
793
-  (0.1ms) select sqlite_version(*)
794
-  (167.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
795
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
796
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
797
- Migrating to CreateTranslations (20110921112044)
798
-  (0.0ms) begin transaction
799
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
800
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
801
-  (154.3ms) commit transaction
802
- Connecting to database specified by database.yml
803
-  (0.1ms) select sqlite_version(*)
804
-  (151.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
805
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
806
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
807
- Migrating to CreateTranslations (20110921112044)
808
-  (0.0ms) begin transaction
809
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
810
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
811
-  (151.8ms) commit transaction
812
- Connecting to database specified by database.yml
813
-  (0.1ms) select sqlite_version(*)
814
-  (182.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
815
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
816
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
817
- Migrating to CreateTranslations (20110921112044)
818
-  (0.0ms) begin transaction
819
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
820
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
821
-  (145.9ms) commit transaction
822
- Connecting to database specified by database.yml
823
-  (0.1ms) select sqlite_version(*)
824
-  (162.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
825
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
826
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
827
- Migrating to CreateTranslations (20110921112044)
828
-  (0.0ms) begin transaction
829
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
830
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
831
-  (147.3ms) commit transaction
832
- Connecting to database specified by database.yml
833
-  (0.1ms) select sqlite_version(*)
834
-  (157.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
835
-  (192.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
836
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
837
- Migrating to CreateTranslations (20110921112044)
838
-  (0.0ms) begin transaction
839
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
840
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
841
-  (145.0ms) commit transaction
842
- Connecting to database specified by database.yml
843
-  (0.1ms) select sqlite_version(*)
844
-  (248.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
845
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
846
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
847
- Migrating to CreateTranslations (20110921112044)
848
-  (0.0ms) begin transaction
849
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
850
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
851
-  (145.2ms) commit transaction
852
- Connecting to database specified by database.yml
853
-  (0.1ms) select sqlite_version(*)
854
-  (182.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
855
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
856
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
857
- Migrating to CreateTranslations (20110921112044)
858
-  (0.0ms) begin transaction
859
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
860
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
861
-  (146.0ms) commit transaction
862
- Connecting to database specified by database.yml
863
-  (17.5ms) select sqlite_version(*)
864
-  (184.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
865
-  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
866
-  (151.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
867
-  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
868
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
869
- Migrating to CreateTranslations (20110921112044)
870
-  (0.0ms) begin transaction
871
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
872
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
873
-  (122.7ms) commit transaction
874
- Connecting to database specified by database.yml
875
-  (0.6ms) select sqlite_version(*)
876
-  (172.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
877
-  (158.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
878
-  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
879
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
880
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
881
- Migrating to CreateTranslations (20110921112044)
882
-  (0.0ms) begin transaction
883
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
884
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
885
-  (131.3ms) commit transaction
886
- Connecting to database specified by database.yml
887
-  (0.6ms) select sqlite_version(*)
888
-  (159.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
889
-  (133.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
890
-  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
891
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
892
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
893
- Migrating to CreateTranslations (20110921112044)
894
-  (0.0ms) begin transaction
895
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
896
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
897
-  (139.7ms) commit transaction
898
- Connecting to database specified by database.yml
899
-  (0.6ms) select sqlite_version(*)
900
-  (164.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
901
-  (158.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
902
-  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
903
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
904
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
905
- Migrating to CreateTranslations (20110921112044)
906
-  (0.0ms) begin transaction
907
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
908
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
909
-  (139.6ms) commit transaction
910
- Connecting to database specified by database.yml
911
-  (0.5ms) select sqlite_version(*)
912
-  (170.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
913
-  (108.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
914
-  (167.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
915
-  (117.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
916
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
917
- Migrating to CreateTranslations (20110921112044)
918
-  (0.0ms) begin transaction
919
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
920
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
921
-  (115.9ms) commit transaction
922
- Connecting to database specified by database.yml
923
-  (0.6ms) select sqlite_version(*)
924
-  (167.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
925
-  (133.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
926
-  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
927
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
928
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
929
- Migrating to CreateTranslations (20110921112044)
930
-  (0.0ms) begin transaction
931
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
932
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
933
-  (156.0ms) commit transaction
934
- Connecting to database specified by database.yml
935
-  (0.6ms) select sqlite_version(*)
936
-  (172.8ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
937
-  (158.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
938
-  (166.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
939
-  (175.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
940
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
941
- Migrating to CreateTranslations (20110921112044)
942
-  (0.0ms) begin transaction
943
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
944
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
945
-  (114.3ms) commit transaction
946
- Connecting to database specified by database.yml
947
-  (0.6ms) select sqlite_version(*)
948
-  (159.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
949
-  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
950
-  (151.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
951
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
952
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
953
- Migrating to CreateTranslations (20110921112044)
954
-  (0.0ms) begin transaction
955
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
956
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
957
-  (147.9ms) commit transaction
958
- Connecting to database specified by database.yml
959
-  (0.6ms) select sqlite_version(*)
960
-  (145.7ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
961
-  (133.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
962
-  (161.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
963
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
964
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
965
- Migrating to CreateTranslations (20110921112044)
966
-  (0.0ms) begin transaction
967
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
968
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
969
-  (156.3ms) commit transaction
970
- Connecting to database specified by database.yml
971
-  (0.6ms) select sqlite_version(*)
972
-  (165.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
973
-  (176.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
974
-  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
975
-  (125.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
976
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
977
- Migrating to CreateTranslations (20110921112044)
978
-  (0.0ms) begin transaction
979
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
980
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
981
-  (156.5ms) commit transaction
982
- Connecting to database specified by database.yml
983
-  (0.5ms) select sqlite_version(*)
984
-  (158.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
985
-  (124.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
986
-  (166.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
987
-  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
988
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
989
- Migrating to CreateTranslations (20110921112044)
990
-  (0.0ms) begin transaction
991
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
992
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
993
-  (131.2ms) commit transaction
994
- Connecting to database specified by database.yml
995
-  (0.5ms) select sqlite_version(*)
996
-  (156.4ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
997
-  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
998
-  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
999
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1000
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1001
- Migrating to CreateTranslations (20110921112044)
1002
-  (0.0ms) begin transaction
1003
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1004
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1005
-  (139.5ms) commit transaction
1006
- Connecting to database specified by database.yml
1007
-  (0.5ms) select sqlite_version(*)
1008
-  (161.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1009
-  (159.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1010
-  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1011
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1012
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1013
- Migrating to CreateTranslations (20110921112044)
1014
-  (0.0ms) begin transaction
1015
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1016
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1017
-  (139.5ms) commit transaction
1018
- Connecting to database specified by database.yml
1019
-  (0.6ms) select sqlite_version(*)
1020
-  (169.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1021
-  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1022
-  (175.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1023
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1024
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1025
- Migrating to CreateTranslations (20110921112044)
1026
-  (0.0ms) begin transaction
1027
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1028
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1029
-  (155.6ms) commit transaction
1030
- Connecting to database specified by database.yml
1031
-  (0.6ms) select sqlite_version(*)
1032
-  (158.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1033
-  (158.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1034
-  (166.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1035
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1036
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1037
- Migrating to CreateTranslations (20110921112044)
1038
-  (0.0ms) begin transaction
1039
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1040
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1041
-  (156.1ms) commit transaction
1042
- Connecting to database specified by database.yml
1043
-  (0.6ms) select sqlite_version(*)
1044
-  (177.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1045
-  (141.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1046
-  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1047
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1048
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1049
- Migrating to CreateTranslations (20110921112044)
1050
-  (0.0ms) begin transaction
1051
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1052
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1053
-  (139.4ms) commit transaction
1054
- Connecting to database specified by database.yml
1055
-  (0.5ms) select sqlite_version(*)
1056
-  (188.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1057
-  (149.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1058
-  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1059
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1060
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1061
- Migrating to CreateTranslations (20110921112044)
1062
-  (0.0ms) begin transaction
1063
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1064
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1065
-  (180.9ms) commit transaction
1066
- Connecting to database specified by database.yml
1067
-  (0.6ms) select sqlite_version(*)
1068
-  (177.8ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1069
-  (149.9ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1070
-  (150.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1071
-  (166.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1072
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1073
- Migrating to CreateTranslations (20110921112044)
1074
-  (0.0ms) begin transaction
1075
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1076
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1077
-  (163.5ms) commit transaction
1078
- Connecting to database specified by database.yml
1079
-  (0.5ms) select sqlite_version(*)
1080
-  (150.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1081
-  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1082
-  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1083
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1084
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1085
- Migrating to CreateTranslations (20110921112044)
1086
-  (0.2ms) begin transaction
1087
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1088
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1089
-  (139.5ms) commit transaction
12
+  (121.8ms) commit transaction
13
+ Migrating to RenameTranslationToNamespace (20130422115639)
14
+  (0.1ms) begin transaction
15
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
16
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
17
+  (102.4ms) commit transaction
1090
18
  Connecting to database specified by database.yml
1091
-  (0.6ms) select sqlite_version(*)
1092
-  (166.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1093
-  (133.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1094
-  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1095
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1096
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
19
+  (2.2ms) select sqlite_version(*)
20
+  (125.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
21
+  (107.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
22
+  (157.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
23
+  (126.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
24
+  (3.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1097
25
  Migrating to CreateTranslations (20110921112044)
1098
26
   (0.0ms) begin transaction
1099
27
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1100
28
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1101
-  (155.8ms) commit transaction
1102
- Connecting to database specified by database.yml
1103
-  (0.6ms) select sqlite_version(*)
1104
-  (179.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1105
-  (166.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1106
-  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1107
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1108
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1109
- Migrating to CreateTranslations (20110921112044)
1110
-  (0.0ms) begin transaction
1111
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1112
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1113
-  (164.4ms) commit transaction
1114
- Connecting to database specified by database.yml
1115
-  (0.6ms) select sqlite_version(*)
1116
-  (159.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1117
-  (134.3ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1118
-  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1119
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1120
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1121
- Migrating to CreateTranslations (20110921112044)
1122
-  (0.0ms) begin transaction
1123
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1124
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1125
-  (164.3ms) commit transaction
1126
- Connecting to database specified by database.yml
1127
-  (0.6ms) select sqlite_version(*)
1128
-  (151.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1129
-  (133.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1130
-  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1131
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1132
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1133
- Migrating to CreateTranslations (20110921112044)
1134
-  (0.0ms) begin transaction
1135
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1136
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1137
-  (149.1ms) commit transaction
1138
- Connecting to database specified by database.yml
1139
-  (0.6ms) select sqlite_version(*)
1140
-  (176.4ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1141
-  (158.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1142
-  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1143
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1144
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1145
- Migrating to CreateTranslations (20110921112044)
1146
-  (0.0ms) begin transaction
1147
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1148
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1149
-  (140.9ms) commit transaction
1150
- Connecting to database specified by database.yml
1151
-  (0.6ms) select sqlite_version(*)
1152
-  (170.7ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1153
-  (166.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1154
-  (166.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1155
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1156
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1157
- Migrating to CreateTranslations (20110921112044)
1158
-  (0.0ms) begin transaction
1159
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1160
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1161
-  (147.9ms) commit transaction
1162
- Connecting to database specified by database.yml
1163
-  (0.6ms) select sqlite_version(*)
1164
-  (162.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1165
-  (151.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1166
-  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1167
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1168
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1169
- Migrating to CreateTranslations (20110921112044)
1170
-  (0.0ms) begin transaction
1171
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1172
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1173
-  (148.0ms) commit transaction
1174
- Connecting to database specified by database.yml
1175
-  (0.6ms) select sqlite_version(*)
1176
-  (172.4ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1177
-  (149.9ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1178
-  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1179
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1180
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1181
- Migrating to CreateTranslations (20110921112044)
1182
-  (0.0ms) begin transaction
1183
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1184
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1185
-  (131.2ms) commit transaction
1186
- Connecting to database specified by database.yml
1187
-  (0.6ms) select sqlite_version(*)
1188
-  (161.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1189
-  (133.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1190
-  (133.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1191
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1192
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1193
- Migrating to CreateTranslations (20110921112044)
1194
-  (0.0ms) begin transaction
1195
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1196
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1197
-  (165.6ms) commit transaction
1198
- Connecting to database specified by database.yml
1199
-  (0.6ms) select sqlite_version(*)
1200
-  (160.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1201
-  (191.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1202
-  (133.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1203
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1204
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1205
- Migrating to CreateTranslations (20110921112044)
1206
-  (0.0ms) begin transaction
1207
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1208
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1209
-  (131.2ms) commit transaction
1210
- Connecting to database specified by database.yml
1211
-  (0.6ms) select sqlite_version(*)
1212
-  (150.4ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1213
-  (133.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1214
-  (143.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1215
-  (192.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1216
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1217
- Migrating to CreateTranslations (20110921112044)
1218
-  (0.0ms) begin transaction
1219
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1220
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1221
-  (147.7ms) commit transaction
1222
- Connecting to database specified by database.yml
1223
-  (0.6ms) select sqlite_version(*)
1224
-  (149.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1225
-  (141.9ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1226
-  (133.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1227
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1228
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1229
- Migrating to CreateTranslations (20110921112044)
1230
-  (0.0ms) begin transaction
1231
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1232
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1233
-  (131.2ms) commit transaction
1234
- Connecting to database specified by database.yml
1235
-  (0.6ms) select sqlite_version(*)
1236
-  (177.8ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1237
-  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1238
-  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1239
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1240
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1241
- Migrating to CreateTranslations (20110921112044)
1242
-  (0.0ms) begin transaction
1243
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1244
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1245
-  (164.2ms) commit transaction
1246
- Connecting to database specified by database.yml
1247
-  (0.6ms) select sqlite_version(*)
1248
-  (185.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1249
-  (149.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1250
-  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1251
-  (133.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1252
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1253
- Migrating to CreateTranslations (20110921112044)
1254
-  (0.0ms) begin transaction
1255
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1256
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1257
-  (131.3ms) commit transaction
1258
- Connecting to database specified by database.yml
1259
-  (0.6ms) select sqlite_version(*)
1260
-  (151.8ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1261
-  (141.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1262
-  (151.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1263
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1264
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1265
- Migrating to CreateTranslations (20110921112044)
1266
-  (0.0ms) begin transaction
1267
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1268
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1269
-  (148.2ms) commit transaction
1270
- Connecting to database specified by database.yml
1271
-  (0.6ms) select sqlite_version(*)
1272
-  (179.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1273
-  (158.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1274
-  (159.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1275
-  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1276
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1277
- Migrating to CreateTranslations (20110921112044)
1278
-  (0.0ms) begin transaction
1279
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1280
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1281
-  (131.0ms) commit transaction
1282
- Connecting to database specified by database.yml
1283
-  (0.6ms) select sqlite_version(*)
1284
-  (163.7ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1285
-  (159.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1286
-  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1287
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1288
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1289
- Migrating to CreateTranslations (20110921112044)
1290
-  (0.0ms) begin transaction
1291
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1292
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1293
-  (139.6ms) commit transaction
1294
- Connecting to database specified by database.yml
1295
-  (0.6ms) select sqlite_version(*)
1296
-  (177.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1297
-  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1298
-  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1299
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1300
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1301
- Migrating to CreateTranslations (20110921112044)
1302
-  (0.0ms) begin transaction
1303
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1304
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1305
-  (156.2ms) commit transaction
1306
- Connecting to database specified by database.yml
1307
-  (0.6ms) select sqlite_version(*)
1308
-  (137.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1309
-  (133.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1310
-  (116.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1311
-  (117.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1312
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1313
- Migrating to CreateTranslations (20110921112044)
1314
-  (0.0ms) begin transaction
1315
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1316
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1317
-  (106.1ms) commit transaction
1318
- Connecting to database specified by database.yml
1319
-  (0.6ms) select sqlite_version(*)
1320
-  (159.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1321
-  (133.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1322
-  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1323
-  (225.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1324
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1325
- Migrating to CreateTranslations (20110921112044)
1326
-  (0.0ms) begin transaction
1327
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1328
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1329
-  (147.2ms) commit transaction
29
+  (131.7ms) commit transaction
30
+ Migrating to RenameTranslationToNamespace (20130422115639)
31
+  (0.1ms) begin transaction
32
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
33
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
34
+  (127.1ms) commit transaction
1330
35
  Connecting to database specified by database.yml
1331
-  (0.6ms) select sqlite_version(*)
1332
-  (149.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1333
-  (133.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1334
-  (133.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1335
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1336
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
36
+  (2.4ms) select sqlite_version(*)
37
+  (149.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
38
+  (105.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
39
+  (99.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
40
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
41
+  (5.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1337
42
  Migrating to CreateTranslations (20110921112044)
1338
-  (0.0ms) begin transaction
1339
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1340
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1341
-  (131.2ms) commit transaction
43
+  (0.1ms) begin transaction
44
+  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
45
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
46
+  (107.5ms) commit transaction
47
+ Migrating to RenameTranslationToNamespace (20130422115639)
48
+  (0.1ms) begin transaction
49
+  (0.4ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
50
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
51
+  (87.2ms) commit transaction
1342
52
  Connecting to database specified by database.yml
1343
-  (0.6ms) select sqlite_version(*)
1344
-  (134.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1345
-  (108.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1346
-  (125.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
53
+  (2.3ms) select sqlite_version(*)
54
+  (107.7ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
55
+  (114.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
56
+  (124.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1347
57
   (125.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1348
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1349
- Migrating to CreateTranslations (20110921112044)
1350
-  (0.0ms) begin transaction
1351
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1352
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1353
-  (123.1ms) commit transaction
1354
- Connecting to database specified by database.yml
1355
-  (0.6ms) select sqlite_version(*)
1356
-  (167.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1357
-  (141.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1358
-  (235.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1359
-  (108.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1360
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1361
- Migrating to CreateTranslations (20110921112044)
1362
-  (0.0ms) begin transaction
1363
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1364
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1365
-  (106.1ms) commit transaction
1366
- Connecting to database specified by database.yml
1367
-  (0.8ms) select sqlite_version(*)
1368
-  (156.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1369
-  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1370
-  (125.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1371
-  (117.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1372
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1373
- Migrating to CreateTranslations (20110921112044)
1374
-  (0.0ms) begin transaction
1375
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1376
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1377
-  (116.0ms) commit transaction
1378
- Connecting to database specified by database.yml
1379
-  (0.7ms) select sqlite_version(*)
1380
-  (169.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1381
-  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1382
-  (183.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1383
-  (176.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1384
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1385
- Migrating to CreateTranslations (20110921112044)
1386
-  (0.0ms) begin transaction
1387
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1388
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1389
-  (164.5ms) commit transaction
1390
- Connecting to database specified by database.yml
1391
-  (0.6ms) select sqlite_version(*)
1392
-  (175.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1393
-  (158.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1394
-  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1395
-  (135.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1396
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1397
- Migrating to CreateTranslations (20110921112044)
1398
-  (0.0ms) begin transaction
1399
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1400
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1401
-  (147.9ms) commit transaction
1402
- Connecting to database specified by database.yml
1403
-  (0.6ms) select sqlite_version(*)
1404
-  (174.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1405
-  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1406
-  (141.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1407
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1408
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1409
- Migrating to CreateTranslations (20110921112044)
1410
-  (0.0ms) begin transaction
1411
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1412
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1413
-  (172.9ms) commit transaction
1414
- Connecting to database specified by database.yml
1415
-  (0.6ms) select sqlite_version(*)
1416
-  (182.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1417
-  (167.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1418
-  (133.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1419
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1420
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
58
+  (6.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1421
59
  Migrating to CreateTranslations (20110921112044)
1422
-  (0.0ms) begin transaction
60
+  (0.1ms) begin transaction
1423
61
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1424
62
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1425
-  (130.8ms) commit transaction
1426
- Connecting to database specified by database.yml
1427
-  (0.6ms) select sqlite_version(*)
1428
-  (192.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1429
-  (166.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1430
-  (151.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1431
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1432
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1433
- Migrating to CreateTranslations (20110921112044)
1434
-  (0.0ms) begin transaction
1435
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1436
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1437
-  (131.0ms) commit transaction
1438
- Connecting to database specified by database.yml
1439
-  (0.6ms) select sqlite_version(*)
1440
-  (186.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1441
-  (134.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1442
-  (150.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1443
-  (167.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1444
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1445
- Migrating to CreateTranslations (20110921112044)
1446
-  (0.0ms) begin transaction
1447
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1448
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1449
-  (156.1ms) commit transaction
63
+  (133.6ms) commit transaction
64
+ Migrating to RenameTranslationToNamespace (20130422115639)
65
+  (0.1ms) begin transaction
66
+  (2.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
67
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
68
+  (126.2ms) commit transaction
1450
69
  Connecting to database specified by database.yml
1451
-  (0.6ms) select sqlite_version(*)
1452
-  (169.4ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1453
-  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1454
-  (175.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1455
-  (167.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1456
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
70
+  (2.2ms) select sqlite_version(*)
71
+  (143.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
72
+  (169.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
73
+  (99.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
74
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
75
+  (4.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1457
76
  Migrating to CreateTranslations (20110921112044)
1458
77
   (0.0ms) begin transaction
1459
78
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1460
79
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1461
-  (156.4ms) commit transaction
80
+  (98.0ms) commit transaction
81
+ Migrating to RenameTranslationToNamespace (20130422115639)
82
+  (0.1ms) begin transaction
83
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
84
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
85
+  (94.0ms) commit transaction
1462
86
  Connecting to database specified by database.yml
1463
-  (0.6ms) select sqlite_version(*)
1464
-  (171.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1465
-  (224.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1466
-  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1467
-  (167.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1468
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
87
+  (2.3ms) select sqlite_version(*)
88
+  (122.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
89
+  (105.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
90
+  (98.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
91
+  (99.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
92
+  (2.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1469
93
  Migrating to CreateTranslations (20110921112044)
1470
94
   (0.0ms) begin transaction
1471
95
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1472
96
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1473
-  (165.4ms) commit transaction
97
+  (91.1ms) commit transaction
1474
98
  Migrating to RenameTranslationToNamespace (20130422115639)
1475
-  (0.0ms) begin transaction
1476
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1477
-  (149.6ms) commit transaction
99
+  (0.1ms) begin transaction
100
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
101
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
102
+  (94.1ms) commit transaction
1478
103
  Connecting to database specified by database.yml
1479
-  (0.6ms) select sqlite_version(*)
1480
-  (161.8ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1481
-  (134.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1482
-  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1483
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1484
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
104
+  (2.3ms) select sqlite_version(*)
105
+  (123.8ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
106
+  (122.3ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
107
+  (124.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
108
+  (124.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
109
+  (3.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1485
110
  Migrating to CreateTranslations (20110921112044)
1486
111
   (0.0ms) begin transaction
1487
112
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1488
113
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1489
-  (155.9ms) commit transaction
114
+  (123.3ms) commit transaction
1490
115
  Migrating to RenameTranslationToNamespace (20130422115639)
1491
-  (0.0ms) begin transaction
1492
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1493
-  (141.3ms) commit transaction
116
+  (0.1ms) begin transaction
117
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
118
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
119
+  (120.6ms) commit transaction
1494
120
  Connecting to database specified by database.yml
1495
-  (0.6ms) select sqlite_version(*)
1496
-  (194.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1497
-  (133.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1498
-  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1499
-  (168.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1500
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
121
+  (2.4ms) select sqlite_version(*)
122
+  (110.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
123
+  (105.3ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
124
+  (107.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
125
+  (82.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
126
+  (5.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1501
127
  Migrating to CreateTranslations (20110921112044)
1502
128
   (0.0ms) begin transaction
1503
129
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1504
130
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1505
-  (163.4ms) commit transaction
131
+  (79.5ms) commit transaction
1506
132
  Migrating to RenameTranslationToNamespace (20130422115639)
1507
-  (0.0ms) begin transaction
1508
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1509
-  (174.5ms) commit transaction
133
+  (0.1ms) begin transaction
134
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
135
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
136
+  (94.0ms) commit transaction
1510
137
  Connecting to database specified by database.yml
1511
-  (0.6ms) select sqlite_version(*)
1512
-  (147.4ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1513
-  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1514
-  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1515
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1516
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
138
+  (2.2ms) select sqlite_version(*)
139
+  (127.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
140
+  (124.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
141
+  (124.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
142
+  (124.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
143
+  (6.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1517
144
  Migrating to CreateTranslations (20110921112044)
1518
-  (0.0ms) begin transaction
1519
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
145
+  (0.1ms) begin transaction
146
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1520
147
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1521
-  (147.8ms) commit transaction
148
+  (134.2ms) commit transaction
1522
149
  Migrating to RenameTranslationToNamespace (20130422115639)
1523
150
   (0.1ms) begin transaction
1524
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1525
-  (149.6ms) commit transaction
151
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
152
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
153
+  (135.7ms) commit transaction
1526
154
  Connecting to database specified by database.yml
1527
-  (0.6ms) select sqlite_version(*)
1528
-  (187.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1529
-  (133.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1530
-  (116.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1531
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1532
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
155
+  (2.3ms) select sqlite_version(*)
156
+  (107.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
157
+  (105.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
158
+  (115.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
159
+  (124.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
160
+  (3.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1533
161
  Migrating to CreateTranslations (20110921112044)
1534
162
   (0.0ms) begin transaction
1535
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
163
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1536
164
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1537
-  (139.5ms) commit transaction
165
+  (123.5ms) commit transaction
1538
166
  Migrating to RenameTranslationToNamespace (20130422115639)
1539
-  (0.0ms) begin transaction
1540
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1541
-  (141.3ms) commit transaction
167
+  (0.1ms) begin transaction
168
+  (1.4ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
169
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
170
+  (102.1ms) commit transaction
1542
171
  Connecting to database specified by database.yml
1543
-  (0.6ms) select sqlite_version(*)
1544
-  (166.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1545
-  (133.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1546
-  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1547
-  (167.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1548
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
172
+  (3.0ms) select sqlite_version(*)
173
+  (128.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
174
+  (113.9ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
175
+  (115.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
176
+  (124.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
177
+  (3.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1549
178
  Migrating to CreateTranslations (20110921112044)
1550
179
   (0.0ms) begin transaction
1551
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
180
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1552
181
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1553
-  (157.4ms) commit transaction
182
+  (108.3ms) commit transaction
1554
183
  Migrating to RenameTranslationToNamespace (20130422115639)
1555
-  (0.0ms) begin transaction
1556
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1557
-  (149.6ms) commit transaction
184
+  (0.1ms) begin transaction
185
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
186
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
187
+  (102.4ms) commit transaction
1558
188
  Connecting to database specified by database.yml
1559
-  (0.6ms) select sqlite_version(*)
1560
-  (148.7ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1561
-  (133.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1562
-  (158.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1563
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1564
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
189
+  (2.4ms) select sqlite_version(*)
190
+  (101.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
191
+  (105.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
192
+  (115.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
193
+  (131.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
194
+  (5.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1565
195
  Migrating to CreateTranslations (20110921112044)
1566
-  (0.0ms) begin transaction
196
+  (0.1ms) begin transaction
1567
197
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1568
198
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1569
-  (155.6ms) commit transaction
199
+  (126.8ms) commit transaction
1570
200
  Migrating to RenameTranslationToNamespace (20130422115639)
1571
-  (0.0ms) begin transaction
1572
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1573
-  (141.3ms) commit transaction
201
+  (0.1ms) begin transaction
202
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
203
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
204
+  (127.3ms) commit transaction
1574
205
  Connecting to database specified by database.yml
1575
-  (0.6ms) select sqlite_version(*)
1576
-  (165.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1577
-  (141.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1578
-  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1579
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1580
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
206
+  (2.2ms) select sqlite_version(*)
207
+  (119.4ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
208
+  (114.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
209
+  (115.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
210
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
211
+  (3.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1581
212
  Migrating to CreateTranslations (20110921112044)
1582
213
   (0.0ms) begin transaction
1583
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
214
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1584
215
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1585
-  (156.0ms) commit transaction
216
+  (115.0ms) commit transaction
1586
217
  Migrating to RenameTranslationToNamespace (20130422115639)
1587
-  (0.0ms) begin transaction
1588
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1589
-  (157.9ms) commit transaction
218
+  (0.1ms) begin transaction
219
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
220
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
221
+  (110.7ms) commit transaction
1590
222
  Connecting to database specified by database.yml
1591
-  (0.6ms) select sqlite_version(*)
1592
-  (165.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1593
-  (158.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1594
-  (166.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1595
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1596
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
223
+  (2.2ms) select sqlite_version(*)
224
+  (105.8ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
225
+  (97.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
226
+  (99.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
227
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
228
+  (6.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1597
229
  Migrating to CreateTranslations (20110921112044)
1598
230
   (0.0ms) begin transaction
1599
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
231
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1600
232
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1601
-  (164.1ms) commit transaction
233
+  (254.5ms) commit transaction
1602
234
  Migrating to RenameTranslationToNamespace (20130422115639)
1603
-  (0.0ms) begin transaction
1604
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1605
-  (166.3ms) commit transaction
235
+  (0.1ms) begin transaction
236
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
237
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
238
+  (110.6ms) commit transaction
1606
239
  Connecting to database specified by database.yml
1607
-  (0.6ms) select sqlite_version(*)
1608
-  (184.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1609
-  (166.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1610
-  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1611
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1612
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
240
+  (2.4ms) select sqlite_version(*)
241
+  (116.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
242
+  (105.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
243
+  (115.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
244
+  (124.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
245
+  (6.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1613
246
  Migrating to CreateTranslations (20110921112044)
1614
-  (0.0ms) begin transaction
1615
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
247
+  (0.1ms) begin transaction
248
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1616
249
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1617
-  (114.5ms) commit transaction
250
+  (119.6ms) commit transaction
1618
251
  Migrating to RenameTranslationToNamespace (20130422115639)
1619
-  (0.0ms) begin transaction
1620
-  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1621
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1622
-  (140.8ms) commit transaction
252
+  (0.1ms) begin transaction
253
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
254
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
255
+  (119.1ms) commit transaction
1623
256
  Connecting to database specified by database.yml
1624
-  (0.7ms) select sqlite_version(*)
1625
-  (168.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1626
-  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1627
-  (166.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1628
-  (129.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1629
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
257
+  (2.4ms) select sqlite_version(*)
258
+  (97.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
259
+  (80.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
260
+  (99.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
261
+  (99.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
262
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1630
263
  Migrating to CreateTranslations (20110921112044)
1631
264
   (0.0ms) begin transaction
1632
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
265
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1633
266
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1634
-  (151.3ms) commit transaction
267
+  (115.4ms) commit transaction
1635
268
  Migrating to RenameTranslationToNamespace (20130422115639)
1636
-  (0.0ms) begin transaction
1637
-  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1638
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1639
-  (157.4ms) commit transaction
269
+  (0.1ms) begin transaction
270
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
271
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
272
+  (112.0ms) commit transaction
1640
273
  Connecting to database specified by database.yml
1641
-  (0.6ms) select sqlite_version(*)
1642
-  (156.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1643
-  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1644
-  (166.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1645
-  (183.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1646
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
274
+  (2.2ms) select sqlite_version(*)
275
+  (123.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
276
+  (105.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
277
+  (115.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
278
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
279
+  (6.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1647
280
  Migrating to CreateTranslations (20110921112044)
1648
-  (0.0ms) begin transaction
1649
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
281
+  (0.1ms) begin transaction
282
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1650
283
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1651
-  (189.3ms) commit transaction
284
+  (119.4ms) commit transaction
1652
285
  Migrating to RenameTranslationToNamespace (20130422115639)
1653
-  (0.0ms) begin transaction
1654
-  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1655
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1656
-  (157.5ms) commit transaction
286
+  (0.1ms) begin transaction
287
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
288
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
289
+  (118.8ms) commit transaction
1657
290
  Connecting to database specified by database.yml
1658
-  (0.7ms) select sqlite_version(*)
1659
-  (184.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1660
-  (150.9ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1661
-  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1662
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1663
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
291
+  (2.3ms) select sqlite_version(*)
292
+  (125.4ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
293
+  (122.3ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
294
+  (90.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
295
+  (124.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
296
+  (6.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1664
297
  Migrating to CreateTranslations (20110921112044)
1665
-  (0.0ms) begin transaction
1666
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1667
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1668
-  (164.3ms) commit transaction
298
+  (0.1ms) begin transaction
299
+  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
300
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
301
+  (106.7ms) commit transaction
1669
302
  Migrating to RenameTranslationToNamespace (20130422115639)
1670
-  (0.0ms) begin transaction
1671
-  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
303
+  (0.1ms) begin transaction
304
+  (1.0ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1672
305
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1673
-  (149.2ms) commit transaction
306
+  (103.4ms) commit transaction
1674
307
  Connecting to database specified by database.yml
1675
-  (0.7ms) select sqlite_version(*)
1676
-  (167.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1677
-  (159.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1678
-  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1679
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1680
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
308
+  (2.2ms) select sqlite_version(*)
309
+  (142.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
310
+  (99.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
311
+  (107.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
312
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
313
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1681
314
  Migrating to CreateTranslations (20110921112044)
1682
315
   (0.0ms) begin transaction
1683
316
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1684
317
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1685
-  (147.0ms) commit transaction
318
+  (105.5ms) commit transaction
1686
319
  Migrating to RenameTranslationToNamespace (20130422115639)
1687
320
   (0.1ms) begin transaction
1688
-  (0.4ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1689
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1690
-  (148.7ms) commit transaction
321
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
322
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
323
+  (110.7ms) commit transaction
1691
324
  Connecting to database specified by database.yml
1692
-  (0.7ms) select sqlite_version(*)
1693
-  (157.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1694
-  (142.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1695
-  (140.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1696
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1697
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
325
+  (2.4ms) select sqlite_version(*)
326
+  (133.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
327
+  (122.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
328
+  (136.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
329
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
330
+  (26.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1698
331
  Migrating to CreateTranslations (20110921112044)
1699
332
   (0.0ms) begin transaction
1700
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
333
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1701
334
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1702
-  (122.8ms) commit transaction
335
+  (116.9ms) commit transaction
1703
336
  Migrating to RenameTranslationToNamespace (20130422115639)
1704
-  (0.0ms) begin transaction
1705
-  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1706
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1707
-  (107.3ms) commit transaction
337
+  (0.2ms) begin transaction
338
+  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
339
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
340
+  (119.0ms) commit transaction