rails-i18nterface 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,21 @@
3
3
  module RailsI18nterface
4
4
  module Sourcefiles
5
5
 
6
+ extend RailsI18nterface::Cache
7
+
8
+ def self.load_files(root_dir)
9
+ cachefile = File.join(root_dir, 'tmp', 'translation_strings')
10
+ cache_load cachefile, root_dir do |options|
11
+ RailsI18nterface::Sourcefiles.extract_files options
12
+ end
13
+ end
14
+
15
+ def self.refresh(root_dir)
16
+ cachefile = File.join(root_dir, 'tmp', 'translation_strings')
17
+ FileUtils.rm cachefile if File.exists? cachefile
18
+ self.load_files(root_dir)
19
+ end
20
+
6
21
  def self.extract_files(root_dir)
7
22
  i18n_lookup_pattern = /\b
8
23
  (?:I18n\.t|I18n\.translate|t)
@@ -19,15 +34,10 @@ module RailsI18nterface
19
34
 
20
35
  def self.populate_keys(root_dir, file, pattern)
21
36
  files = {}
22
- begin #hack to avoid UTF-8 error
23
- IO.read(file).scan(pattern).flatten.map(&:to_sym).each do |key|
24
- path = self.relative_path(file)
25
- files[key] ||= []
26
- files[key] << path unless files[key].include?(path)
27
- end
28
- rescue Exception => e
29
- puts e.inspect
30
- puts e.backtrace
37
+ IO.read(file).scan(pattern).flatten.map(&:to_sym).each do |key|
38
+ path = self.relative_path(file)
39
+ files[key] ||= []
40
+ files[key] << path unless files[key].include?(path)
31
41
  end
32
42
  files
33
43
  end
@@ -50,6 +50,20 @@ module RailsI18nterface
50
50
  hash1.merge!(hash2, &merger)
51
51
  end
52
52
 
53
+ def deep_sort(object)
54
+ if object.is_a?(Hash)
55
+ res = Hash.new
56
+ object.each {|k, v| res[k] = deep_sort(v) }
57
+ Hash[res.sort {|a, b| a[0].to_s <=> b[0].to_s } ]
58
+ elsif object.is_a?(Array)
59
+ array = Array.new
60
+ object.each_with_index {|v, i| array[i] = deep_sort(v) }
61
+ array
62
+ else
63
+ object
64
+ end
65
+ end
66
+
53
67
  def contains_key?(hash, key)
54
68
  keys = key.to_s.split('.')
55
69
  return false if keys.empty?
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module RailsI18nterface
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
@@ -8,7 +8,6 @@ describe RailsI18nterface::TranslateController do
8
8
  include RailsI18nterface::Utils
9
9
 
10
10
  before(:each) do
11
- controller.stub!(:per_page).and_return(1)
12
11
  I18n.backend.stub!(:translations).and_return(i18n_translations)
13
12
  I18n.backend.instance_eval { @initialized = true }
14
13
  I18n.stub!(:valid_locales).and_return([:en, :sv])
@@ -16,51 +15,52 @@ describe RailsI18nterface::TranslateController do
16
15
  end
17
16
 
18
17
  it 'shows sorted paginated keys from the translate from locale and extracted keys by default' do
19
- get_page :index, use_route: 'rails-i18nterface'
18
+ get_page :index, per_page: 1, use_route: 'rails-i18nterface'
20
19
  assigns(:from_locale).should == :sv
21
- assigns(:to_locale).should == :en
22
- assigns(:all_keys).size.should == 22
20
+ assigns(:to_locale).should == :sv
21
+ assigns(:keys).all_keys.size.should == 22
23
22
  assigns(:paginated_keys).should == ['activerecord.attributes.article.active']
24
23
  end
25
24
 
26
25
  it 'can be paginated with the page param' do
27
- get_page :index, :page => 2, use_route: 'rails-i18nterface'
26
+ get_page :index, per_page: 1, :page => 2, use_route: 'rails-i18nterface'
28
27
  assigns(:paginated_keys).should == ['activerecord.attributes.article.body']
29
28
  end
30
29
 
30
+ it 'can sort by key' do
31
+ get_page :index, per_page: 1, filter: 'translated', sort_by: 'key', use_route: 'rails-i18nterface'
32
+ assigns(:paginated_keys).should == ['articles.new.page_title']
33
+ end
34
+
35
+ it 'can sort by text' do
36
+ get_page :index, per_page: 1, filter: 'translated', sort_by: 'text', use_route: 'rails-i18nterface'
37
+ assigns(:paginated_keys).should == ['vendor.foobar']
38
+ end
39
+
31
40
  it 'accepts a key_pattern param with key_type=starts_with' do
32
- get_page :index, :key_pattern => 'articles', :key_type => 'starts_with', use_route: 'rails-i18nterface'
41
+ get_page :index, per_page: 1, key_pattern: 'articles', key_type: 'starts_with', use_route: 'rails-i18nterface'
33
42
  assigns(:paginated_keys).should == ['articles.new.page_title']
34
- assigns(:total_entries).should == 1
43
+ assigns(:keys).all_keys.size.should == 1
35
44
  end
36
45
 
37
46
  it 'accepts a key_pattern param with key_type=contains' do
38
- get_page :index, :key_pattern => 'page_', :key_type => 'contains', use_route: 'rails-i18nterface'
39
- assigns(:total_entries).should == 2
47
+ get_page :index, per_page: 1, key_pattern: 'page_', key_type: 'contains', use_route: 'rails-i18nterface'
48
+ assigns(:keys).all_keys.size.should == 2
40
49
  assigns(:paginated_keys).should == ['articles.new.page_title']
41
50
  end
42
51
 
43
52
  it 'accepts a filter=untranslated param' do
44
- get_page :index, :filter => 'untranslated', use_route: 'rails-i18nterface'
45
- assigns(:total_entries).should == 21
53
+ get_page :index, per_page: 1, filter: 'untranslated', use_route: 'rails-i18nterface'
54
+ assigns(:keys).all_keys.size.should == 19
46
55
  assigns(:paginated_keys).should == ['activerecord.attributes.article.active']
47
56
  end
48
57
 
49
58
  it 'accepts a filter=translated param' do
50
- get_page :index, :filter => 'translated', use_route: 'rails-i18nterface'
51
- assigns(:total_entries).should == 1
52
- assigns(:paginated_keys).should == ['vendor.foobar']
59
+ get_page :index, per_page: 1, filter: 'translated', use_route: 'rails-i18nterface'
60
+ assigns(:keys).all_keys.size.should == 3
61
+ assigns(:paginated_keys).should == ['articles.new.page_title']
53
62
  end
54
63
 
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
63
-
64
64
  def i18n_translations
65
65
  HashWithIndifferentAccess.new({
66
66
  :en => {
@@ -94,21 +94,17 @@ describe RailsI18nterface::TranslateController do
94
94
  end
95
95
 
96
96
  describe 'translate' do
97
+
97
98
  it 'should store translations to I18n backend and then write them to a YAML file' do
98
99
  session[:from_locale] = :sv
99
100
  session[:to_locale] = :en
100
- # translations = {
101
- # :articles => {
102
- # :new => {
103
- # :title => 'New Article'
104
- # }
105
- # },
106
- # :category => 'Category'
107
- # }
108
- key_param = {'articles.new.title' => 'New Article', 'category' => 'Category'}
109
- #I18n.backend.should_receive(:store_translations).with(:en, translations)
110
- put :update, key: key_param, version: 1, use_route: 'rails-i18nterface'
101
+ key_param = {}
102
+ # hmm, this is called 7 times, I would like to know why
103
+ # I18n.backend.should_receive(:store_translations)
104
+ RailsI18nterface::Yamlfile.stub!(:write_to_file)
105
+ put :update, key: key_param, use_route: 'rails-i18nterface'
111
106
  response.should be_redirect
107
+
112
108
  end
113
109
  end
114
110
 
@@ -1,6 +1,8 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  class ApplicationController < ActionController::Base
4
+
4
5
  def index
5
6
  end
7
+
6
8
  end
@@ -1,6 +1,7 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  class Article
4
+
4
5
  def validate
5
6
  # rubocop : disable all
6
7
  something([t(:'article.key1') + "#{t('article.key2')}"])
@@ -12,6 +13,8 @@ class Article
12
13
  'bla bla t ' + "blubba bla" + ' foobar'
13
14
  # rubocop : enable all
14
15
  end
16
+
15
17
  def something
16
18
  end
19
+
17
20
  end
@@ -1,340 +1,873 @@
1
1
  Connecting to database specified by database.yml
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"
2
+  (0.1ms) select sqlite_version(*)
3
+  (112.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
+ Migrating to CreateTranslations (20110921112044)
7
+  (0.1ms) begin transaction
8
+  (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)
9
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
10
+  (97.9ms) commit transaction
11
+ Connecting to database specified by database.yml
12
+  (0.1ms) select sqlite_version(*)
13
+  (124.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
+  (91.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
16
+ Migrating to CreateTranslations (20110921112044)
17
+  (0.1ms) begin transaction
18
+  (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)
19
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
20
+  (110.5ms) commit transaction
21
+ Connecting to database specified by database.yml
22
+  (0.1ms) select sqlite_version(*)
23
+  (145.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
24
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
26
+ Migrating to CreateTranslations (20110921112044)
27
+  (0.1ms) 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
+  (96.4ms) commit transaction
31
+ Connecting to database specified by database.yml
32
+  (0.1ms) select sqlite_version(*)
33
+  (125.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
34
+  (115.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
35
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
36
+ Migrating to CreateTranslations (20110921112044)
37
+  (0.1ms) 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
+  (115.3ms) commit transaction
41
+ Connecting to database specified by database.yml
42
+  (0.1ms) select sqlite_version(*)
43
+  (119.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
44
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
45
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
46
+ Migrating to CreateTranslations (20110921112044)
47
+  (0.1ms) begin transaction
48
+  (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)
49
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
50
+  (99.2ms) commit transaction
51
+ Connecting to database specified by database.yml
52
+  (0.1ms) select sqlite_version(*)
53
+  (106.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
54
+  (82.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
55
+  (2.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
8
56
  Migrating to CreateTranslations (20110921112044)
9
57
   (0.0ms) begin transaction
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)
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)
11
59
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
12
-  (121.8ms) commit transaction
13
- Migrating to RenameTranslationToNamespace (20130422115639)
60
+  (105.2ms) commit transaction
61
+ Connecting to database specified by database.yml
62
+  (0.1ms) select sqlite_version(*)
63
+  (126.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
64
+  (116.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
65
+  (5.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
66
+ Migrating to CreateTranslations (20110921112044)
14
67
   (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
68
+  (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)
69
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
70
+  (114.2ms) commit transaction
18
71
  Connecting to database specified by database.yml
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"
72
+  (0.1ms) select sqlite_version(*)
73
+  (120.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
74
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
75
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
76
+ Migrating to CreateTranslations (20110921112044)
77
+  (0.1ms) begin transaction
78
+  (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)
79
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
80
+  (116.4ms) commit transaction
81
+ Connecting to database specified by database.yml
82
+  (0.1ms) select sqlite_version(*)
83
+  (102.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
84
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
85
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
86
+ Migrating to CreateTranslations (20110921112044)
87
+  (0.1ms) begin transaction
88
+  (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)
89
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
90
+  (108.9ms) commit transaction
91
+ Connecting to database specified by database.yml
92
+  (0.1ms) select sqlite_version(*)
93
+  (101.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
94
+  (99.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
96
+ Migrating to CreateTranslations (20110921112044)
97
+  (0.1ms) 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.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
100
+  (113.8ms) commit transaction
101
+ Connecting to database specified by database.yml
102
+  (0.1ms) select sqlite_version(*)
103
+  (111.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
104
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
105
+  (5.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
106
+ Migrating to CreateTranslations (20110921112044)
107
+  (0.1ms) begin transaction
108
+  (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)
109
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
110
+  (118.8ms) commit transaction
111
+ Connecting to database specified by database.yml
112
+  (0.1ms) select sqlite_version(*)
113
+  (112.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
114
+  (92.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
115
+  (4.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
116
+ Migrating to CreateTranslations (20110921112044)
117
+  (0.1ms) begin transaction
118
+  (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)
119
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
120
+  (97.9ms) commit transaction
121
+ Connecting to database specified by database.yml
122
+  (0.1ms) select sqlite_version(*)
123
+  (116.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
124
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
125
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
126
+ Migrating to CreateTranslations (20110921112044)
127
+  (0.1ms) begin transaction
128
+  (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)
129
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
130
+  (104.9ms) commit transaction
131
+ Connecting to database specified by database.yml
132
+  (0.1ms) select sqlite_version(*)
133
+  (130.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
134
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
135
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
136
+ Migrating to CreateTranslations (20110921112044)
137
+  (0.1ms) begin transaction
138
+  (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)
139
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
140
+  (109.2ms) commit transaction
141
+ Connecting to database specified by database.yml
142
+  (0.1ms) select sqlite_version(*)
143
+  (98.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
144
+  (82.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
145
+  (4.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
25
146
  Migrating to CreateTranslations (20110921112044)
26
147
   (0.0ms) begin transaction
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)
148
+  (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)
28
149
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
29
-  (131.7ms) commit transaction
30
- Migrating to RenameTranslationToNamespace (20130422115639)
150
+  (86.1ms) commit transaction
151
+ Connecting to database specified by database.yml
152
+  (0.1ms) select sqlite_version(*)
153
+  (121.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
154
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
155
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
156
+ Migrating to CreateTranslations (20110921112044)
31
157
   (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
158
+  (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)
159
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
160
+  (105.3ms) commit transaction
35
161
  Connecting to database specified by database.yml
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"
162
+  (0.1ms) select sqlite_version(*)
163
+  (115.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
164
+  (116.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
165
+  (16.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
42
166
  Migrating to CreateTranslations (20110921112044)
43
167
   (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)
168
+  (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)
169
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
170
+  (126.3ms) commit transaction
171
+ Connecting to database specified by database.yml
172
+  (0.1ms) select sqlite_version(*)
173
+  (103.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
174
+  (91.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
175
+  (25.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
176
+ Migrating to CreateTranslations (20110921112044)
48
177
   (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
178
+  (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)
179
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
180
+  (97.8ms) commit transaction
52
181
  Connecting to database specified by database.yml
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)
57
-  (125.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
58
-  (6.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
182
+  (0.1ms) select sqlite_version(*)
183
+  (119.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
184
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
185
+  (24.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
59
186
  Migrating to CreateTranslations (20110921112044)
60
187
   (0.1ms) begin transaction
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)
188
+  (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)
62
189
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
63
-  (133.6ms) commit transaction
64
- Migrating to RenameTranslationToNamespace (20130422115639)
190
+  (107.5ms) commit transaction
191
+ Connecting to database specified by database.yml
192
+  (0.1ms) select sqlite_version(*)
193
+  (134.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
194
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
195
+  (20.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
196
+ Migrating to CreateTranslations (20110921112044)
65
197
   (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
198
+  (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)
199
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
200
+  (112.0ms) commit transaction
69
201
  Connecting to database specified by database.yml
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)
202
+  (0.1ms) select sqlite_version(*)
203
+  (129.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
74
204
   (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
75
-  (4.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
205
+  (4.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
206
+ Migrating to CreateTranslations (20110921112044)
207
+  (0.1ms) begin transaction
208
+  (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)
209
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
210
+  (99.7ms) commit transaction
211
+ Connecting to database specified by database.yml
212
+  (0.1ms) select sqlite_version(*)
213
+  (140.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
214
+  (116.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
215
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
216
+ Migrating to CreateTranslations (20110921112044)
217
+  (0.1ms) begin transaction
218
+  (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)
219
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
220
+  (114.8ms) commit transaction
221
+ Connecting to database specified by database.yml
222
+  (0.1ms) select sqlite_version(*)
223
+  (115.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
224
+  (82.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
225
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
226
+ Migrating to CreateTranslations (20110921112044)
227
+  (0.1ms) begin transaction
228
+  (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)
229
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
230
+  (93.4ms) commit transaction
231
+ Connecting to database specified by database.yml
232
+  (0.1ms) select sqlite_version(*)
233
+  (101.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
234
+  (91.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
235
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
236
+ Migrating to CreateTranslations (20110921112044)
237
+  (0.1ms) begin transaction
238
+  (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)
239
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
240
+  (97.5ms) commit transaction
241
+ Connecting to database specified by database.yml
242
+  (0.1ms) select sqlite_version(*)
243
+  (123.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
244
+  (116.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
245
+  (5.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
246
+ Migrating to CreateTranslations (20110921112044)
247
+  (0.1ms) begin transaction
248
+  (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)
249
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
250
+  (110.4ms) commit transaction
251
+ Connecting to database specified by database.yml
252
+  (0.1ms) select sqlite_version(*)
253
+  (138.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
254
+  (117.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
255
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
256
+ Migrating to CreateTranslations (20110921112044)
257
+  (0.1ms) begin transaction
258
+  (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)
259
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
260
+  (90.9ms) commit transaction
261
+ Connecting to database specified by database.yml
262
+  (0.1ms) select sqlite_version(*)
263
+  (105.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
264
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
265
+  (2.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
76
266
  Migrating to CreateTranslations (20110921112044)
77
267
   (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)
268
+  (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)
79
269
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
80
-  (98.0ms) commit transaction
81
- Migrating to RenameTranslationToNamespace (20130422115639)
270
+  (96.4ms) commit transaction
271
+ Connecting to database specified by database.yml
272
+  (0.1ms) select sqlite_version(*)
273
+  (142.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
274
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
275
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
276
+ Migrating to CreateTranslations (20110921112044)
82
277
   (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
278
+  (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)
279
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
280
+  (124.4ms) commit transaction
86
281
  Connecting to database specified by database.yml
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"
282
+  (0.1ms) select sqlite_version(*)
283
+  (127.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
284
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
285
+  (4.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
286
+ Migrating to CreateTranslations (20110921112044)
287
+  (0.1ms) begin transaction
288
+  (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)
289
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
290
+  (102.1ms) commit transaction
291
+ Connecting to database specified by database.yml
292
+  (0.1ms) select sqlite_version(*)
293
+  (100.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
294
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
295
+  (5.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
296
+ Migrating to CreateTranslations (20110921112044)
297
+  (0.1ms) begin transaction
298
+  (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)
299
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
300
+  (106.9ms) commit transaction
301
+ Connecting to database specified by database.yml
302
+  (0.1ms) select sqlite_version(*)
303
+  (124.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
304
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
305
+  (5.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
306
+ Migrating to CreateTranslations (20110921112044)
307
+  (0.1ms) begin transaction
308
+  (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)
309
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
310
+  (103.0ms) commit transaction
311
+ Connecting to database specified by database.yml
312
+  (0.1ms) select sqlite_version(*)
313
+  (116.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
314
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
315
+  (3.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
316
+ Migrating to CreateTranslations (20110921112044)
317
+  (0.0ms) begin transaction
318
+  (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)
319
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
320
+  (88.1ms) commit transaction
321
+ Connecting to database specified by database.yml
322
+  (0.1ms) select sqlite_version(*)
323
+  (137.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
324
+  (131.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
325
+  (19.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
326
+ Migrating to CreateTranslations (20110921112044)
327
+  (0.0ms) begin transaction
328
+  (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)
329
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
330
+  (180.6ms) commit transaction
331
+ Connecting to database specified by database.yml
332
+  (0.1ms) select sqlite_version(*)
333
+  (107.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
334
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
335
+  (22.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
336
+ Migrating to CreateTranslations (20110921112044)
337
+  (0.1ms) begin transaction
338
+  (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)
339
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
340
+  (84.7ms) commit transaction
341
+ Connecting to database specified by database.yml
342
+  (0.1ms) select sqlite_version(*)
343
+  (126.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
344
+  (91.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
345
+  (25.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
346
+ Migrating to CreateTranslations (20110921112044)
347
+  (0.1ms) begin transaction
348
+  (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)
349
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
350
+  (89.7ms) commit transaction
351
+ Connecting to database specified by database.yml
352
+  (0.1ms) select sqlite_version(*)
353
+  (108.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
354
+  (141.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
355
+  (26.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
356
+ Migrating to CreateTranslations (20110921112044)
357
+  (0.1ms) begin transaction
358
+  (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)
359
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
360
+  (96.8ms) commit transaction
361
+ Connecting to database specified by database.yml
362
+  (0.1ms) select sqlite_version(*)
363
+  (125.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
364
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
365
+  (20.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
366
+ Migrating to CreateTranslations (20110921112044)
367
+  (0.1ms) begin transaction
368
+  (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)
369
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
370
+  (102.7ms) commit transaction
371
+ Connecting to database specified by database.yml
372
+  (0.1ms) select sqlite_version(*)
373
+  (131.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
374
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
375
+  (18.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
376
+ Migrating to CreateTranslations (20110921112044)
377
+  (0.1ms) begin transaction
378
+  (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)
379
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
380
+  (97.0ms) commit transaction
381
+ Connecting to database specified by database.yml
382
+  (0.1ms) select sqlite_version(*)
383
+  (105.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
384
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
385
+  (22.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
386
+ Migrating to CreateTranslations (20110921112044)
387
+  (0.1ms) begin transaction
388
+  (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)
389
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
390
+  (100.6ms) commit transaction
391
+ Connecting to database specified by database.yml
392
+  (1.8ms) select sqlite_version(*)
393
+  (111.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')
394
+  (82.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
395
+  (98.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
396
+  (83.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
397
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
93
398
  Migrating to CreateTranslations (20110921112044)
94
399
   (0.0ms) begin transaction
95
400
   (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)
96
401
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
97
-  (91.1ms) commit transaction
98
- Migrating to RenameTranslationToNamespace (20130422115639)
402
+  (97.1ms) commit transaction
403
+ Connecting to database specified by database.yml
404
+  (1.8ms) select sqlite_version(*)
405
+  (111.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')
406
+  (105.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
407
+  (115.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
408
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
409
+  (4.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
410
+ Migrating to CreateTranslations (20110921112044)
99
411
   (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
412
+  (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)
413
+  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
414
+  (116.4ms) commit transaction
103
415
  Connecting to database specified by database.yml
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")
416
+  (2.0ms) select sqlite_version(*)
417
+  (112.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')
418
+  (97.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
419
+  (99.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
420
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
109
421
   (3.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
110
422
  Migrating to CreateTranslations (20110921112044)
111
423
   (0.0ms) begin transaction
112
424
   (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)
113
425
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
114
-  (123.3ms) commit transaction
115
- Migrating to RenameTranslationToNamespace (20130422115639)
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
426
+  (116.1ms) commit transaction
120
427
  Connecting to database specified by database.yml
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"
428
+  (1.8ms) select sqlite_version(*)
429
+  (141.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')
430
+  (107.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
431
+  (115.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
432
+  (116.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
433
+  (3.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
127
434
  Migrating to CreateTranslations (20110921112044)
128
435
   (0.0ms) begin transaction
129
436
   (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)
130
437
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
131
-  (79.5ms) commit transaction
132
- Migrating to RenameTranslationToNamespace (20130422115639)
438
+  (115.1ms) commit transaction
439
+ Connecting to database specified by database.yml
440
+  (1.7ms) select sqlite_version(*)
441
+  (136.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')
442
+  (89.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
443
+  (107.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
444
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
445
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
446
+ Migrating to CreateTranslations (20110921112044)
133
447
   (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
448
+  (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)
449
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
450
+  (108.5ms) commit transaction
137
451
  Connecting to database specified by database.yml
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"
452
+  (1.8ms) select sqlite_version(*)
453
+  (115.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')
454
+  (91.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
455
+  (108.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
456
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
457
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
144
458
  Migrating to CreateTranslations (20110921112044)
145
459
   (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)
147
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
148
-  (134.2ms) commit transaction
149
- Migrating to RenameTranslationToNamespace (20130422115639)
460
+  (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)
461
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
462
+  (108.1ms) commit transaction
463
+ Connecting to database specified by database.yml
464
+  (1.8ms) select sqlite_version(*)
465
+  (130.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')
466
+  (116.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
467
+  (98.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
468
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
469
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
470
+ Migrating to CreateTranslations (20110921112044)
150
471
   (0.1ms) begin 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
472
+  (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)
473
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
474
+  (92.0ms) commit transaction
154
475
  Connecting to database specified by database.yml
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"
476
+  (1.9ms) select sqlite_version(*)
477
+  (99.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')
478
+  (82.9ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
479
+  (90.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
480
+  (91.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
481
+  (3.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
161
482
  Migrating to CreateTranslations (20110921112044)
162
483
   (0.0ms) begin transaction
163
484
   (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)
164
485
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
165
-  (123.5ms) commit transaction
166
- Migrating to RenameTranslationToNamespace (20130422115639)
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
486
+  (90.5ms) commit transaction
171
487
  Connecting to database specified by database.yml
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"
488
+  (1.9ms) select sqlite_version(*)
489
+  (128.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')
490
+  (99.3ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
491
+  (108.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
492
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
493
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
178
494
  Migrating to CreateTranslations (20110921112044)
179
495
   (0.0ms) begin transaction
180
496
   (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)
181
497
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
182
-  (108.3ms) commit transaction
183
- Migrating to RenameTranslationToNamespace (20130422115639)
498
+  (113.1ms) commit transaction
499
+ Connecting to database specified by database.yml
500
+  (1.9ms) select sqlite_version(*)
501
+  (174.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')
502
+  (127.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
503
+  (99.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
504
+  (99.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
505
+  (4.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
506
+ Migrating to CreateTranslations (20110921112044)
184
507
   (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
508
+  (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)
509
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
510
+  (92.3ms) commit transaction
188
511
  Connecting to database specified by database.yml
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"
512
+  (1.8ms) select sqlite_version(*)
513
+  (101.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')
514
+  (97.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
515
+  (100.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
516
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
517
+  (5.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
195
518
  Migrating to CreateTranslations (20110921112044)
196
519
   (0.1ms) begin transaction
520
+  (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)
521
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
522
+  (109.4ms) commit transaction
523
+ Connecting to database specified by database.yml
524
+  (1.8ms) select sqlite_version(*)
525
+  (164.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')
526
+  (124.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
527
+  (140.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
528
+  (124.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
529
+  (4.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
530
+ Migrating to CreateTranslations (20110921112044)
531
+  (0.0ms) begin transaction
197
532
   (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)
198
533
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
199
-  (126.8ms) commit transaction
200
- Migrating to RenameTranslationToNamespace (20130422115639)
534
+  (123.1ms) commit transaction
535
+ Connecting to database specified by database.yml
536
+  (1.8ms) select sqlite_version(*)
537
+  (122.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')
538
+  (90.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
539
+  (90.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
540
+  (99.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
541
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
542
+ Migrating to CreateTranslations (20110921112044)
201
543
   (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
544
+  (0.7ms) 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)
545
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
546
+  (93.1ms) commit transaction
205
547
  Connecting to database specified by database.yml
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) 
548
+  (1.8ms) select sqlite_version(*)
549
+  (124.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')
550
+  (105.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
209
551
   (115.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
552
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
553
+  (4.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
554
+ Migrating to CreateTranslations (20110921112044)
555
+  (0.0ms) begin transaction
556
+  (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)
557
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
558
+  (123.3ms) commit transaction
559
+ Connecting to database specified by database.yml
560
+  (1.8ms) select sqlite_version(*)
561
+  (141.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')
562
+  (125.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
563
+  (107.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
564
+  (108.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
565
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
566
+ Migrating to CreateTranslations (20110921112044)
567
+  (0.1ms) begin transaction
568
+  (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)
569
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
570
+  (117.1ms) commit transaction
571
+ Connecting to database specified by database.yml
572
+  (1.8ms) select sqlite_version(*)
573
+  (130.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')
574
+  (97.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
575
+  (99.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
210
576
   (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
577
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
578
+ Migrating to CreateTranslations (20110921112044)
579
+  (0.1ms) begin transaction
580
+  (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)
581
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
582
+  (125.0ms) commit transaction
583
+ Connecting to database specified by database.yml
584
+  (1.8ms) select sqlite_version(*)
585
+  (121.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')
586
+  (107.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
587
+  (117.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
588
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
211
589
   (3.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
212
590
  Migrating to CreateTranslations (20110921112044)
213
591
   (0.0ms) begin transaction
214
592
   (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)
215
593
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
216
-  (115.0ms) commit transaction
217
- Migrating to RenameTranslationToNamespace (20130422115639)
594
+  (90.3ms) commit transaction
595
+ Connecting to database specified by database.yml
596
+  (2.0ms) select sqlite_version(*)
597
+  (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')
598
+  (89.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
599
+  (107.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
600
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
601
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
602
+ Migrating to CreateTranslations (20110921112044)
218
603
   (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
604
+  (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)
605
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
606
+  (101.7ms) commit transaction
607
+ Connecting to database specified by database.yml
608
+  (1.9ms) select sqlite_version(*)
609
+  (120.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')
610
+  (89.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
611
+  (91.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
612
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
613
+  (4.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
614
+ Migrating to CreateTranslations (20110921112044)
615
+  (0.1ms) begin transaction
616
+  (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)
617
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
618
+  (141.7ms) commit transaction
619
+ Connecting to database specified by database.yml
620
+  (1.9ms) select sqlite_version(*)
621
+  (99.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')
622
+  (89.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
623
+  (99.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
624
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
625
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
626
+ Migrating to CreateTranslations (20110921112044)
627
+  (0.1ms) begin transaction
628
+  (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)
629
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
630
+  (92.1ms) commit transaction
222
631
  Connecting to database specified by database.yml
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)
632
+  (1.8ms) select sqlite_version(*)
633
+  (129.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')
634
+  (105.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
635
+  (115.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
227
636
   (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
228
-  (6.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
637
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
638
+ Migrating to CreateTranslations (20110921112044)
639
+  (0.1ms) begin transaction
640
+  (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)
641
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
642
+  (113.4ms) commit transaction
643
+ Connecting to database specified by database.yml
644
+  (2.0ms) select sqlite_version(*)
645
+  (142.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')
646
+  (105.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
647
+  (98.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
648
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
649
+  (4.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
229
650
  Migrating to CreateTranslations (20110921112044)
230
651
   (0.0ms) begin transaction
231
652
   (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)
232
653
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
233
-  (254.5ms) commit transaction
234
- Migrating to RenameTranslationToNamespace (20130422115639)
654
+  (98.2ms) commit transaction
655
+ Connecting to database specified by database.yml
656
+  (1.9ms) select sqlite_version(*)
657
+  (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')
658
+  (107.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
659
+  (91.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
660
+  (91.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
661
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
662
+ Migrating to CreateTranslations (20110921112044)
235
663
   (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
664
+  (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)
665
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
666
+  (92.0ms) commit transaction
239
667
  Connecting to database specified by database.yml
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"
668
+  (1.8ms) select sqlite_version(*)
669
+  (168.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')
670
+  (99.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
671
+  (98.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
672
+  (91.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
673
+  (5.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
674
+ Migrating to CreateTranslations (20110921112044)
675
+  (0.1ms) begin transaction
676
+  (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)
677
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
678
+  (117.1ms) commit transaction
679
+ Connecting to database specified by database.yml
680
+  (1.9ms) select sqlite_version(*)
681
+  (124.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')
682
+  (99.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
683
+  (107.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
684
+  (124.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
685
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
246
686
  Migrating to CreateTranslations (20110921112044)
247
687
   (0.1ms) begin transaction
248
688
   (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)
249
689
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
250
-  (119.6ms) commit transaction
251
- Migrating to RenameTranslationToNamespace (20130422115639)
690
+  (111.3ms) commit transaction
691
+ Connecting to database specified by database.yml
692
+  (1.9ms) select sqlite_version(*)
693
+  (113.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')
694
+  (105.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
695
+  (115.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
696
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
697
+  (5.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
698
+ Migrating to CreateTranslations (20110921112044)
252
699
   (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
700
+  (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)
701
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
702
+  (142.2ms) commit transaction
256
703
  Connecting to database specified by database.yml
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"
704
+  (1.9ms) select sqlite_version(*)
705
+  (103.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')
706
+  (139.3ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
707
+  (91.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
708
+  (91.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
709
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
263
710
  Migrating to CreateTranslations (20110921112044)
264
-  (0.0ms) begin transaction
711
+  (0.1ms) begin transaction
265
712
   (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)
266
713
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
267
-  (115.4ms) commit transaction
268
- Migrating to RenameTranslationToNamespace (20130422115639)
714
+  (103.7ms) commit transaction
715
+ Connecting to database specified by database.yml
716
+  (2.0ms) select sqlite_version(*)
717
+  (99.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')
718
+  (90.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
719
+  (115.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
720
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
721
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
722
+ Migrating to CreateTranslations (20110921112044)
269
723
   (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
724
+  (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)
725
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
726
+  (92.0ms) commit transaction
273
727
  Connecting to database specified by database.yml
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) 
728
+  (1.8ms) select sqlite_version(*)
729
+  (122.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')
730
+  (105.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
277
731
   (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"
732
+  (116.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
733
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
734
+ Migrating to CreateTranslations (20110921112044)
735
+  (0.1ms) begin transaction
736
+  (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)
737
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
738
+  (108.7ms) commit transaction
739
+ Connecting to database specified by database.yml
740
+  (2.0ms) select sqlite_version(*)
741
+  (125.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')
742
+  (115.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
743
+  (107.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
744
+  (108.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
745
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
280
746
  Migrating to CreateTranslations (20110921112044)
281
747
   (0.1ms) begin transaction
282
748
   (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)
283
749
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
284
-  (119.4ms) commit transaction
285
- Migrating to RenameTranslationToNamespace (20130422115639)
750
+  (111.1ms) commit transaction
751
+ Connecting to database specified by database.yml
752
+  (1.8ms) select sqlite_version(*)
753
+  (113.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')
754
+  (97.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
755
+  (107.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
756
+  (126.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
757
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
758
+ Migrating to CreateTranslations (20110921112044)
286
759
   (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
760
+  (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)
761
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
762
+  (123.5ms) commit transaction
290
763
  Connecting to database specified by database.yml
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) 
764
+  (1.9ms) select sqlite_version(*)
765
+  (128.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')
766
+  (107.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
767
+  (98.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
768
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
769
+  (5.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
770
+ Migrating to CreateTranslations (20110921112044)
771
+  (0.1ms) begin transaction
772
+  (0.7ms) 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)
773
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
774
+  (100.6ms) commit transaction
775
+ Connecting to database specified by database.yml
776
+  (1.8ms) select sqlite_version(*)
777
+  (117.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')
778
+  (91.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
294
779
   (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"
780
+  (108.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
781
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
297
782
  Migrating to CreateTranslations (20110921112044)
298
783
   (0.1ms) begin transaction
299
784
   (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
785
   (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
301
-  (106.7ms) commit transaction
302
- Migrating to RenameTranslationToNamespace (20130422115639)
303
-  (0.1ms) begin transaction
304
-  (1.0ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
305
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
306
-  (103.4ms) commit transaction
786
+  (116.3ms) commit transaction
307
787
  Connecting to database specified by database.yml
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) 
788
+  (1.8ms) select sqlite_version(*)
789
+  (139.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')
790
+  (113.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
311
791
   (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"
792
+  (116.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
793
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
794
+ Migrating to CreateTranslations (20110921112044)
795
+  (0.1ms) begin transaction
796
+  (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)
797
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
798
+  (108.4ms) commit transaction
799
+ Connecting to database specified by database.yml
800
+  (1.8ms) select sqlite_version(*)
801
+  (102.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')
802
+  (97.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
803
+  (98.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
804
+  (116.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
805
+  (5.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
806
+ Migrating to CreateTranslations (20110921112044)
807
+  (0.1ms) begin transaction
808
+  (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)
809
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
810
+  (125.0ms) commit transaction
811
+ Connecting to database specified by database.yml
812
+  (1.9ms) select sqlite_version(*)
813
+  (131.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')
814
+  (105.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
815
+  (115.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
816
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
817
+  (3.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
314
818
  Migrating to CreateTranslations (20110921112044)
315
819
   (0.0ms) begin transaction
316
820
   (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)
317
821
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
318
-  (105.5ms) commit transaction
822
+  (107.3ms) commit transaction
823
+ Connecting to database specified by database.yml
824
+  (2.5ms) select sqlite_version(*)
825
+  (135.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')
826
+  (113.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
827
+  (90.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
828
+  (116.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
829
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
830
+ Migrating to CreateTranslations (20110921112044)
831
+  (0.0ms) begin transaction
832
+  (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)
833
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
834
+  (115.3ms) commit transaction
319
835
  Migrating to RenameTranslationToNamespace (20130422115639)
320
836
   (0.1ms) begin transaction
321
837
   (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
322
838
   (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
323
-  (110.7ms) commit transaction
839
+  (102.2ms) commit transaction
324
840
  Connecting to database specified by database.yml
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"
841
+  (2.3ms) select sqlite_version(*)
842
+  (114.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')
843
+  (121.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
844
+  (123.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
845
+  (107.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
846
+  (5.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
331
847
  Migrating to CreateTranslations (20110921112044)
332
-  (0.0ms) begin transaction
848
+  (0.1ms) begin transaction
333
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)
334
850
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
335
-  (116.9ms) commit transaction
851
+  (130.0ms) commit transaction
336
852
  Migrating to RenameTranslationToNamespace (20130422115639)
337
853
   (0.2ms) begin transaction
338
-  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
854
+  (1.2ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
855
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
856
+  (126.3ms) commit transaction
857
+ Connecting to database specified by database.yml
858
+  (2.4ms) select sqlite_version(*)
859
+  (128.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')
860
+  (141.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
861
+  (108.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
862
+  (124.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
863
+  (16.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
864
+ Migrating to CreateTranslations (20110921112044)
865
+  (0.1ms) begin transaction
866
+  (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)
867
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
868
+  (119.5ms) commit transaction
869
+ Migrating to RenameTranslationToNamespace (20130422115639)
870
+  (0.1ms) begin transaction
871
+  (1.2ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
339
872
   (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
340
-  (119.0ms) commit transaction
873
+  (120.8ms) commit transaction