rails-i18nterface 0.1.5 → 0.1.6

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