rails-i18nterface 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 990879b2657590bfc3e0e84bd63e3a4d2706b25f
4
+ data.tar.gz: b14196f97b732f5c03104006bfcd5a5efe9cb564
5
+ SHA512:
6
+ metadata.gz: 6a4c13138505804e81851dc422b7e55730380744b279c236f9acf9d03c33cfcdcfcdb3fa3b95cbc8dcf65c62d99ea30d336f4e5e8f2bf89a06af057f617c9dee
7
+ data.tar.gz: 675ae5678d09842564fcee89a12c045d24e898cb326a561ae6f952b12d42997b4406700da491014bcbb905708992cd7d0b0b9638d9b1dc28ba237ced6293c6b2
@@ -5,8 +5,8 @@ module RailsI18nterface
5
5
 
6
6
  include Utils
7
7
 
8
+ before_filter :init
8
9
  before_filter :init_translations
9
- before_filter :set_locale
10
10
 
11
11
  def index
12
12
  @dbvalues = {}
@@ -44,7 +44,8 @@ module RailsI18nterface
44
44
  end
45
45
 
46
46
  def reload
47
- @keys.reload
47
+ @keys = RailsI18nterface::Keys.new(Rails.root, @from_locale, @to_locale)
48
+ @keys.reload(Rails.root)
48
49
  redirect_to root_path(params.slice(:filter, :sort_by, :key_type, :key_pattern, :text_type, :text_pattern))
49
50
  end
50
51
 
@@ -59,24 +60,36 @@ module RailsI18nterface
59
60
  (params[:page].to_i - 1) * @per_page
60
61
  end
61
62
 
62
- def init_translations
63
- I18n.backend.send(:init_translations) unless I18n.backend.initialized?
63
+
64
+ protected
65
+
66
+ def init
67
+ init_session
68
+ init_assigns
69
+ init_translations
64
70
  end
65
71
 
66
- def force_init_translations
67
- I18n.backend.send(:init_translations) rescue false
72
+ def init_assigns
73
+ @from_locale = session[:from_locale].to_sym
74
+ @to_locale = session[:to_locale].to_sym
75
+ @per_page = session[:per_page]
68
76
  end
69
77
 
70
- def set_locale
78
+ def init_session
71
79
  session[:from_locale] ||= I18n.default_locale
72
80
  session[:to_locale] ||= I18n.default_locale
73
81
  session[:per_page] ||= 50
74
82
  session[:from_locale] = params[:from_locale] if params[:from_locale].present?
75
83
  session[:to_locale] = params[:to_locale] if params[:tolocale].present?
76
84
  session[:per_page] = params[:per_page].to_i if params[:per_page].present?
77
- @from_locale = session[:from_locale].to_sym
78
- @to_locale = session[:to_locale].to_sym
79
- @per_page = session[:per_page]
85
+ end
86
+
87
+ def init_translations
88
+ I18n.backend.send(:init_translations) unless I18n.backend.initialized?
89
+ end
90
+
91
+ def force_init_translations
92
+ I18n.backend.send(:init_translations) rescue false
80
93
  end
81
94
 
82
95
  end
@@ -7,19 +7,13 @@ module RailsI18nterface
7
7
  I18n.backend.send(:lookup, locale, key)
8
8
  end
9
9
 
10
- def simple_filter(labels, param_name = 'filter', selected_value = nil)
11
- selected_value ||= params[param_name]
10
+ def simple_filter(labels, param_name = 'filter')
12
11
  filter = []
13
- labels.each do |item|
14
- if item.is_a?(Array)
15
- type, label = item
16
- else
17
- type = label = item
18
- end
19
- if type.to_s == selected_value.to_s
12
+ labels.each do |label|
13
+ if label.to_s == params[param_name].to_s
20
14
  filter << "<i>#{label}</i>"
21
15
  else
22
- link_params = params.merge({param_name.to_s => type})
16
+ link_params = params.merge({param_name.to_s => label})
23
17
  link_params.merge!({'page' => nil}) if param_name.to_s != 'page'
24
18
  filter << link_to(label, link_params)
25
19
  end
@@ -63,12 +57,11 @@ module RailsI18nterface
63
57
  k != '' && k += '.'
64
58
  h.each do |key, val|
65
59
  if val.is_a? Hash
66
- out << "<li class=\"dir\"><span class=\"display\" data-id=\"#{k + key.to_s}\"></span>"
67
- out << key.to_s
68
- out << " <span class=\"num\">(#{val.length})</span>"
60
+ out << '<li class="dir"><span class="display" data-id="%s"></span>%s <span class="num">(%d)</span>' %
61
+ [ k + key.to_s, key.to_s, val.length]
69
62
  out << list_namespace(k + key.to_s, val)
70
63
  else
71
- out << "<li class=\"item\" data-id=\"#{k + key.to_s}\">#{key}"
64
+ out << '<li class="item" data-id="%s">%s' % [ k + key.to_s, key]
72
65
  end
73
66
  out << '</li>'
74
67
  end
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module RailsI18nterface
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
@@ -3,6 +3,36 @@
3
3
  require 'spec_helper'
4
4
 
5
5
  describe RailsI18nterface::TranslateController do
6
+
7
+ after :each do
8
+ root_dir = File.expand_path(File.join('..', '..', '..', 'spec', 'internal'), __FILE__)
9
+ yaml_trad = File.join(root_dir, 'config', 'locales', 'en.yml')
10
+ FileUtils.rm yaml_trad if File.exists? yaml_trad
11
+ end
12
+
13
+ it 'should store translations to I18n backend and then write them to a YAML file' do
14
+ session[:from_locale] = :sv
15
+ session[:to_locale] = :en
16
+ key_param = {}
17
+ # hmm, this is called 7 times, I would like to know why
18
+ # I18n.backend.should_receive(:store_translations)
19
+ RailsI18nterface::Yamlfile.stub!(:write_to_file)
20
+ put :update, key: key_param, use_route: 'rails-i18nterface'
21
+ response.should be_redirect
22
+ end
23
+
24
+ # TODO: improve this test
25
+ it 'exports the yml file from current translations' do
26
+ get :export, locale: 'en', use_route: 'rails-i18nterface'
27
+ response.headers['Content-Disposition'].should == "attachment; filename=en.yml"
28
+ end
29
+
30
+ # TODO: improve this test
31
+ it 'reloads the string to translate from changed string in source code' do
32
+ get :reload, use_route: 'rails-i18nterface'
33
+ response.should be_redirect
34
+ end
35
+
6
36
  describe 'index' do
7
37
 
8
38
  include RailsI18nterface::Utils
@@ -93,21 +123,6 @@ describe RailsI18nterface::TranslateController do
93
123
  end
94
124
  end
95
125
 
96
- describe 'translate' do
97
-
98
- it 'should store translations to I18n backend and then write them to a YAML file' do
99
- session[:from_locale] = :sv
100
- session[:to_locale] = :en
101
- key_param = {}
102
- # hmm, this is called 7 times, I would like to know why
103
- # I18n.backend.should_receive(:store_translations)
104
- RailsI18nterface::Yamlfile.stub!(:write_to_file)
105
- put :update, key: key_param, use_route: 'rails-i18nterface'
106
- response.should be_redirect
107
-
108
- end
109
- end
110
-
111
126
  def get_page(*args)
112
127
  get(*args, use_route: 'rails-i18nterface')
113
128
  response.should be_success
@@ -1,873 +1,2370 @@
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
551
+  (178.9ms) commit transaction
559
552
  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"
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"
566
557
  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
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
571
562
  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"
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"
578
567
  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
568
+  (0.0ms) begin transaction
569
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
570
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
571
+  (162.1ms) commit transaction
583
572
  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"
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"
590
577
  Migrating to CreateTranslations (20110921112044)
591
578
   (0.0ms) begin transaction
592
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)
593
580
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
594
-  (90.3ms) commit transaction
581
+  (120.9ms) commit transaction
595
582
  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"
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"
602
587
  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)
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)
605
590
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
606
-  (101.7ms) commit transaction
591
+  (152.8ms) commit transaction
607
592
  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"
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"
614
597
  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
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
619
602
  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"
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"
626
607
  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
608
+  (0.0ms) begin transaction
609
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
610
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
611
+  (112.3ms) commit transaction
631
612
  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"
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"
638
617
  Migrating to CreateTranslations (20110921112044)
639
-  (0.1ms) begin transaction
618
+  (0.0ms) begin transaction
640
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)
641
620
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
642
-  (113.4ms) commit transaction
621
+  (145.8ms) commit transaction
643
622
  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"
623
+  (0.1ms) select sqlite_version(*)
624
+  (153.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
625
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
626
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
627
+ Migrating to CreateTranslations (20110921112044)
628
+  (0.0ms) begin transaction
629
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
630
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
631
+  (161.2ms) commit transaction
632
+ Connecting to database specified by database.yml
633
+  (0.1ms) select sqlite_version(*)
634
+  (157.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
635
+  (150.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
636
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
650
637
  Migrating to CreateTranslations (20110921112044)
651
638
   (0.0ms) begin transaction
652
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)
653
640
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
654
-  (98.2ms) commit transaction
641
+  (145.6ms) commit transaction
655
642
  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"
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"
662
647
  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
648
+  (0.0ms) begin transaction
649
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
650
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
651
+  (145.7ms) commit transaction
667
652
  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"
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"
674
657
  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)
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)
677
660
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
678
-  (117.1ms) commit transaction
661
+  (160.2ms) commit transaction
679
662
  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"
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"
686
667
  Migrating to CreateTranslations (20110921112044)
687
-  (0.1ms) begin transaction
668
+  (0.0ms) begin transaction
688
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)
689
670
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
690
-  (111.3ms) commit transaction
671
+  (152.0ms) commit transaction
691
672
  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"
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"
698
677
  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)
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)
701
680
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
702
-  (142.2ms) commit transaction
681
+  (160.9ms) commit transaction
703
682
  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"
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"
710
687
  Migrating to CreateTranslations (20110921112044)
711
-  (0.1ms) begin transaction
688
+  (0.0ms) begin transaction
712
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)
713
690
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
714
-  (103.7ms) commit transaction
691
+  (144.8ms) commit transaction
715
692
  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"
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"
722
697
  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
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
727
702
  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"
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"
734
707
  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
708
+  (0.0ms) begin transaction
709
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
710
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
711
+  (153.9ms) commit transaction
739
712
  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"
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"
746
717
  Migrating to CreateTranslations (20110921112044)
747
-  (0.1ms) begin transaction
718
+  (0.0ms) begin transaction
748
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)
749
720
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
750
-  (111.1ms) commit transaction
721
+  (162.4ms) commit transaction
751
722
  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"
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"
758
727
  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
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
763
732
  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"
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"
770
737
  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)
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)
773
740
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
774
-  (100.6ms) commit transaction
741
+  (112.3ms) commit transaction
775
742
  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"
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"
782
747
  Migrating to CreateTranslations (20110921112044)
748
+  (0.0ms) begin transaction
749
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
750
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
751
+  (137.4ms) commit transaction
752
+ Connecting to database specified by database.yml
753
+  (0.1ms) select sqlite_version(*)
754
+  (181.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
755
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
756
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
757
+ Migrating to CreateTranslations (20110921112044)
758
+  (0.1ms) begin transaction
759
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
760
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
761
+  (161.7ms) commit transaction
762
+ Connecting to database specified by database.yml
763
+  (0.1ms) select sqlite_version(*)
764
+  (179.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
765
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
766
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
767
+ Migrating to CreateTranslations (20110921112044)
768
+  (0.0ms) begin transaction
769
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
770
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
771
+  (154.2ms) commit transaction
772
+ Connecting to database specified by database.yml
773
+  (0.1ms) select sqlite_version(*)
774
+  (178.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
775
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
776
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
777
+ Migrating to CreateTranslations (20110921112044)
778
+  (0.0ms) begin transaction
779
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
780
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
781
+  (137.0ms) commit transaction
782
+ Connecting to database specified by database.yml
783
+  (0.1ms) select sqlite_version(*)
784
+  (162.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
785
+  (151.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
786
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
787
+ Migrating to CreateTranslations (20110921112044)
788
+  (0.0ms) begin transaction
789
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
790
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
791
+  (144.7ms) commit transaction
792
+ Connecting to database specified by database.yml
793
+  (0.1ms) select sqlite_version(*)
794
+  (167.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
795
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
796
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
797
+ Migrating to CreateTranslations (20110921112044)
798
+  (0.0ms) begin transaction
799
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
800
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
801
+  (154.3ms) commit transaction
802
+ Connecting to database specified by database.yml
803
+  (0.1ms) select sqlite_version(*)
804
+  (151.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
805
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
806
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
807
+ Migrating to CreateTranslations (20110921112044)
808
+  (0.0ms) begin transaction
809
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
810
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
811
+  (151.8ms) commit transaction
812
+ Connecting to database specified by database.yml
813
+  (0.1ms) select sqlite_version(*)
814
+  (182.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
815
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
816
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
817
+ Migrating to CreateTranslations (20110921112044)
818
+  (0.0ms) begin transaction
819
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
820
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
821
+  (145.9ms) commit transaction
822
+ Connecting to database specified by database.yml
823
+  (0.1ms) select sqlite_version(*)
824
+  (162.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
825
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
826
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
827
+ Migrating to CreateTranslations (20110921112044)
828
+  (0.0ms) begin transaction
829
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
830
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
831
+  (147.3ms) commit transaction
832
+ Connecting to database specified by database.yml
833
+  (0.1ms) select sqlite_version(*)
834
+  (157.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
835
+  (192.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
836
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
837
+ Migrating to CreateTranslations (20110921112044)
838
+  (0.0ms) begin transaction
839
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
840
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
841
+  (145.0ms) commit transaction
842
+ Connecting to database specified by database.yml
843
+  (0.1ms) select sqlite_version(*)
844
+  (248.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
845
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
846
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
847
+ Migrating to CreateTranslations (20110921112044)
848
+  (0.0ms) begin transaction
849
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
850
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
851
+  (145.2ms) commit transaction
852
+ Connecting to database specified by database.yml
853
+  (0.1ms) select sqlite_version(*)
854
+  (182.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
855
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
856
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
857
+ Migrating to CreateTranslations (20110921112044)
858
+  (0.0ms) begin transaction
859
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
860
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
861
+  (146.0ms) commit transaction
862
+ Connecting to database specified by database.yml
863
+  (17.5ms) select sqlite_version(*)
864
+  (184.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
865
+  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
866
+  (151.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
867
+  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
868
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
869
+ Migrating to CreateTranslations (20110921112044)
870
+  (0.0ms) begin transaction
871
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
872
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
873
+  (122.7ms) commit transaction
874
+ Connecting to database specified by database.yml
875
+  (0.6ms) select sqlite_version(*)
876
+  (172.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
877
+  (158.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
878
+  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
879
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
880
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
881
+ Migrating to CreateTranslations (20110921112044)
882
+  (0.0ms) begin transaction
883
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
884
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
885
+  (131.3ms) commit transaction
886
+ Connecting to database specified by database.yml
887
+  (0.6ms) select sqlite_version(*)
888
+  (159.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
889
+  (133.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
890
+  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
891
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
892
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
893
+ Migrating to CreateTranslations (20110921112044)
894
+  (0.0ms) begin transaction
895
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
896
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
897
+  (139.7ms) commit transaction
898
+ Connecting to database specified by database.yml
899
+  (0.6ms) select sqlite_version(*)
900
+  (164.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
901
+  (158.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
902
+  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
903
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
904
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
905
+ Migrating to CreateTranslations (20110921112044)
906
+  (0.0ms) begin transaction
907
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
908
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
909
+  (139.6ms) commit transaction
910
+ Connecting to database specified by database.yml
911
+  (0.5ms) select sqlite_version(*)
912
+  (170.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
913
+  (108.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
914
+  (167.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
915
+  (117.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
916
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
917
+ Migrating to CreateTranslations (20110921112044)
918
+  (0.0ms) begin transaction
919
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
920
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
921
+  (115.9ms) commit transaction
922
+ Connecting to database specified by database.yml
923
+  (0.6ms) select sqlite_version(*)
924
+  (167.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
925
+  (133.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
926
+  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
927
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
928
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
929
+ Migrating to CreateTranslations (20110921112044)
930
+  (0.0ms) begin transaction
931
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
932
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
933
+  (156.0ms) commit transaction
934
+ Connecting to database specified by database.yml
935
+  (0.6ms) select sqlite_version(*)
936
+  (172.8ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
937
+  (158.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
938
+  (166.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
939
+  (175.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
940
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
941
+ Migrating to CreateTranslations (20110921112044)
942
+  (0.0ms) begin transaction
943
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
944
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
945
+  (114.3ms) commit transaction
946
+ Connecting to database specified by database.yml
947
+  (0.6ms) select sqlite_version(*)
948
+  (159.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
949
+  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
950
+  (151.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
951
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
952
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
953
+ Migrating to CreateTranslations (20110921112044)
954
+  (0.0ms) begin transaction
955
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
956
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
957
+  (147.9ms) commit transaction
958
+ Connecting to database specified by database.yml
959
+  (0.6ms) select sqlite_version(*)
960
+  (145.7ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
961
+  (133.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
962
+  (161.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
963
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
964
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
965
+ Migrating to CreateTranslations (20110921112044)
966
+  (0.0ms) begin transaction
967
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
968
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
969
+  (156.3ms) commit transaction
970
+ Connecting to database specified by database.yml
971
+  (0.6ms) select sqlite_version(*)
972
+  (165.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
973
+  (176.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
974
+  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
975
+  (125.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
976
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
977
+ Migrating to CreateTranslations (20110921112044)
978
+  (0.0ms) begin transaction
979
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
980
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
981
+  (156.5ms) commit transaction
982
+ Connecting to database specified by database.yml
983
+  (0.5ms) select sqlite_version(*)
984
+  (158.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
985
+  (124.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
986
+  (166.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
987
+  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
988
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
989
+ Migrating to CreateTranslations (20110921112044)
990
+  (0.0ms) begin transaction
991
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
992
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
993
+  (131.2ms) commit transaction
994
+ Connecting to database specified by database.yml
995
+  (0.5ms) select sqlite_version(*)
996
+  (156.4ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
997
+  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
998
+  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
999
+  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1000
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1001
+ Migrating to CreateTranslations (20110921112044)
1002
+  (0.0ms) begin transaction
1003
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1004
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1005
+  (139.5ms) commit transaction
1006
+ Connecting to database specified by database.yml
1007
+  (0.5ms) select sqlite_version(*)
1008
+  (161.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1009
+  (159.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1010
+  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1011
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1012
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1013
+ Migrating to CreateTranslations (20110921112044)
1014
+  (0.0ms) begin transaction
1015
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1016
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1017
+  (139.5ms) commit transaction
1018
+ Connecting to database specified by database.yml
1019
+  (0.6ms) select sqlite_version(*)
1020
+  (169.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1021
+  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1022
+  (175.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1023
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1024
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1025
+ Migrating to CreateTranslations (20110921112044)
1026
+  (0.0ms) begin transaction
1027
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1028
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1029
+  (155.6ms) commit transaction
1030
+ Connecting to database specified by database.yml
1031
+  (0.6ms) select sqlite_version(*)
1032
+  (158.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1033
+  (158.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1034
+  (166.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1035
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1036
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1037
+ Migrating to CreateTranslations (20110921112044)
1038
+  (0.0ms) begin transaction
1039
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1040
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1041
+  (156.1ms) commit transaction
1042
+ Connecting to database specified by database.yml
1043
+  (0.6ms) select sqlite_version(*)
1044
+  (177.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1045
+  (141.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1046
+  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1047
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1048
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1049
+ Migrating to CreateTranslations (20110921112044)
1050
+  (0.0ms) begin transaction
1051
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1052
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1053
+  (139.4ms) commit transaction
1054
+ Connecting to database specified by database.yml
1055
+  (0.5ms) select sqlite_version(*)
1056
+  (188.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1057
+  (149.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1058
+  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1059
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1060
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1061
+ Migrating to CreateTranslations (20110921112044)
1062
+  (0.0ms) begin transaction
1063
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1064
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1065
+  (180.9ms) commit transaction
1066
+ Connecting to database specified by database.yml
1067
+  (0.6ms) select sqlite_version(*)
1068
+  (177.8ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1069
+  (149.9ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1070
+  (150.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1071
+  (166.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1072
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1073
+ Migrating to CreateTranslations (20110921112044)
1074
+  (0.0ms) begin transaction
1075
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1076
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1077
+  (163.5ms) commit transaction
1078
+ Connecting to database specified by database.yml
1079
+  (0.5ms) select sqlite_version(*)
1080
+  (150.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1081
+  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1082
+  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1083
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1084
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1085
+ Migrating to CreateTranslations (20110921112044)
1086
+  (0.2ms) begin transaction
1087
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1088
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1089
+  (139.5ms) commit transaction
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
1657
+ Connecting to database specified by database.yml
1658
+  (0.7ms) select sqlite_version(*)
1659
+  (184.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1660
+  (150.9ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1661
+  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1662
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1663
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1664
+ Migrating to CreateTranslations (20110921112044)
1665
+  (0.0ms) begin transaction
1666
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1667
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1668
+  (164.3ms) commit transaction
1669
+ Migrating to RenameTranslationToNamespace (20130422115639)
1670
+  (0.0ms) begin transaction
1671
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1672
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1673
+  (149.2ms) commit transaction
1674
+ Connecting to database specified by database.yml
1675
+  (0.7ms) select sqlite_version(*)
1676
+  (167.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1677
+  (159.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1678
+  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1679
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1680
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1681
+ Migrating to CreateTranslations (20110921112044)
1682
+  (0.0ms) begin transaction
1683
+  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1684
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1685
+  (147.0ms) commit transaction
1686
+ Migrating to RenameTranslationToNamespace (20130422115639)
1687
+  (0.1ms) begin transaction
1688
+  (0.4ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1689
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1690
+  (148.7ms) commit transaction
1691
+ Connecting to database specified by database.yml
1692
+  (0.7ms) select sqlite_version(*)
1693
+  (157.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
1694
+  (142.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1695
+  (140.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1696
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1697
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1698
+ Migrating to CreateTranslations (20110921112044)
1699
+  (0.0ms) begin transaction
1700
+  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1701
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1702
+  (122.8ms) commit transaction
1703
+ Migrating to RenameTranslationToNamespace (20130422115639)
1704
+  (0.0ms) begin transaction
1705
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1706
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1707
+  (107.3ms) commit transaction
1708
+ Connecting to database specified by database.yml
1709
+  (1.2ms) select sqlite_version(*)
1710
+  (142.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')
1711
+  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1712
+  (150.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1713
+  (133.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1714
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1715
+ Migrating to CreateTranslations (20110921112044)
1716
+  (0.0ms) begin transaction
1717
+  (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)
1718
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1719
+  (163.9ms) commit transaction
1720
+ Migrating to RenameTranslationToNamespace (20130422115639)
1721
+  (0.0ms) begin transaction
1722
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1723
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1724
+  (134.5ms) commit transaction
1725
+ Connecting to database specified by database.yml
1726
+  (0.7ms) select sqlite_version(*)
1727
+  (169.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')
1728
+  (133.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1729
+  (133.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1730
+  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1731
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1732
+ Migrating to CreateTranslations (20110921112044)
1733
+  (0.0ms) begin transaction
1734
+  (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)
1735
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1736
+  (134.4ms) commit transaction
1737
+ Migrating to RenameTranslationToNamespace (20130422115639)
1738
+  (0.0ms) begin transaction
1739
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1740
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1741
+  (140.9ms) commit transaction
1742
+ Connecting to database specified by database.yml
1743
+  (0.7ms) select sqlite_version(*)
1744
+  (161.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')
1745
+  (124.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1746
+  (125.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1747
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1748
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1749
+ Migrating to CreateTranslations (20110921112044)
1750
+  (0.0ms) begin transaction
1751
+  (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)
1752
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1753
+  (122.4ms) commit transaction
1754
+ Migrating to RenameTranslationToNamespace (20130422115639)
1755
+  (0.0ms) begin transaction
1756
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1757
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1758
+  (150.4ms) commit transaction
1759
+ Connecting to database specified by database.yml
1760
+  (0.7ms) select sqlite_version(*)
1761
+  (170.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')
1762
+  (141.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1763
+  (158.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1764
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1765
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1766
+ Migrating to CreateTranslations (20110921112044)
1767
+  (0.0ms) begin transaction
1768
+  (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)
1769
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1770
+  (138.4ms) commit transaction
1771
+ Migrating to RenameTranslationToNamespace (20130422115639)
1772
+  (0.1ms) begin transaction
1773
+  (0.4ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1774
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1775
+  (148.8ms) commit transaction
1776
+ Connecting to database specified by database.yml
1777
+  (1.0ms) select sqlite_version(*)
1778
+  (124.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')
1779
+  (116.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1780
+  (116.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1781
+  (117.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1782
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1783
+ Migrating to CreateTranslations (20110921112044)
1784
+  (0.0ms) begin transaction
1785
+  (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)
1786
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1787
+  (105.1ms) commit transaction
1788
+ Migrating to RenameTranslationToNamespace (20130422115639)
1789
+  (0.0ms) begin transaction
1790
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1791
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1792
+  (200.7ms) commit transaction
1793
+ Connecting to database specified by database.yml
1794
+  (1.0ms) select sqlite_version(*)
1795
+  (190.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')
1796
+  (191.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1797
+  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1798
+  (142.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1799
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1800
+ Migrating to CreateTranslations (20110921112044)
1801
+  (0.0ms) begin transaction
1802
+  (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)
1803
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1804
+  (138.8ms) commit transaction
1805
+ Migrating to RenameTranslationToNamespace (20130422115639)
1806
+  (0.0ms) begin transaction
1807
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1808
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1809
+  (132.5ms) commit transaction
1810
+ Connecting to database specified by database.yml
1811
+  (0.7ms) select sqlite_version(*)
1812
+  (155.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')
1813
+  (141.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1814
+  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1815
+  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1816
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1817
+ Migrating to CreateTranslations (20110921112044)
1818
+  (0.1ms) begin transaction
1819
+  (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)
1820
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1821
+  (121.5ms) commit transaction
1822
+ Migrating to RenameTranslationToNamespace (20130422115639)
783
1823
   (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
1824
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1825
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1826
+  (115.4ms) commit transaction
787
1827
  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"
1828
+  (0.6ms) select sqlite_version(*)
1829
+  (206.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')
1830
+  (125.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1831
+  (143.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1832
+  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1833
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
794
1834
  Migrating to CreateTranslations (20110921112044)
1835
+  (0.0ms) begin transaction
1836
+  (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)
1837
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1838
+  (147.7ms) commit transaction
1839
+ Migrating to RenameTranslationToNamespace (20130422115639)
795
1840
   (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
1841
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1842
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1843
+  (140.7ms) commit transaction
799
1844
  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"
1845
+  (0.7ms) select sqlite_version(*)
1846
+  (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')
1847
+  (133.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1848
+  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1849
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1850
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
806
1851
  Migrating to CreateTranslations (20110921112044)
1852
+  (0.0ms) begin transaction
1853
+  (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)
1854
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1855
+  (156.1ms) commit transaction
1856
+ Migrating to RenameTranslationToNamespace (20130422115639)
807
1857
   (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
1858
+  (0.4ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1859
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1860
+  (157.0ms) commit transaction
811
1861
  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"
1862
+  (0.7ms) select sqlite_version(*)
1863
+  (141.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')
1864
+  (141.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1865
+  (158.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1866
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1867
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
818
1868
  Migrating to CreateTranslations (20110921112044)
819
1869
   (0.0ms) begin transaction
820
1870
   (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
1871
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
822
-  (107.3ms) commit transaction
1872
+  (164.3ms) commit transaction
1873
+ Migrating to RenameTranslationToNamespace (20130422115639)
1874
+  (0.0ms) begin transaction
1875
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1876
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1877
+  (175.5ms) commit transaction
1878
+ Connecting to database specified by database.yml
1879
+  (0.7ms) select sqlite_version(*)
1880
+  (177.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')
1881
+  (141.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1882
+  (141.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1883
+  (135.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1884
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1885
+ Migrating to CreateTranslations (20110921112044)
1886
+  (0.0ms) begin transaction
1887
+  (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)
1888
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1889
+  (139.4ms) commit transaction
1890
+ Migrating to RenameTranslationToNamespace (20130422115639)
1891
+  (0.0ms) begin transaction
1892
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1893
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1894
+  (124.2ms) commit transaction
823
1895
  Connecting to database specified by database.yml
824
-  (2.5ms) select sqlite_version(*)
825
-  (135.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
826
-  (113.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
827
-  (90.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
828
-  (116.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
829
-  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1896
+  (0.7ms) select sqlite_version(*)
1897
+  (169.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')
1898
+  (116.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1899
+  (125.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1900
+  (167.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1901
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
830
1902
  Migrating to CreateTranslations (20110921112044)
831
1903
   (0.0ms) begin transaction
832
-  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
833
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
834
-  (115.3ms) commit transaction
1904
+  (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)
1905
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1906
+  (139.6ms) commit transaction
835
1907
  Migrating to RenameTranslationToNamespace (20130422115639)
836
1908
   (0.1ms) begin transaction
837
-  (1.1ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
838
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
839
-  (102.2ms) commit transaction
1909
+  (0.4ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1910
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1911
+  (148.9ms) commit transaction
840
1912
  Connecting to database specified by database.yml
841
-  (2.3ms) select sqlite_version(*)
842
-  (114.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
843
-  (121.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
844
-  (123.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
845
-  (107.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
846
-  (5.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1913
+  (0.7ms) select sqlite_version(*)
1914
+  (181.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')
1915
+  (132.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1916
+  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1917
+  (151.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1918
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
847
1919
  Migrating to CreateTranslations (20110921112044)
1920
+  (0.0ms) begin transaction
1921
+  (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)
1922
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1923
+  (146.1ms) commit transaction
1924
+ Migrating to RenameTranslationToNamespace (20130422115639)
848
1925
   (0.1ms) begin transaction
1926
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1927
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1928
+  (147.3ms) commit transaction
1929
+ Connecting to database specified by database.yml
1930
+  (0.7ms) select sqlite_version(*)
1931
+  (171.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')
1932
+  (141.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1933
+  (166.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1934
+  (166.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1935
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1936
+ Migrating to CreateTranslations (20110921112044)
1937
+  (0.0ms) begin transaction
849
1938
   (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
1939
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
851
-  (130.0ms) commit transaction
1940
+  (147.6ms) commit transaction
852
1941
  Migrating to RenameTranslationToNamespace (20130422115639)
853
-  (0.2ms) begin transaction
854
-  (1.2ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
855
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
856
-  (126.3ms) commit transaction
1942
+  (0.0ms) begin transaction
1943
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1944
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1945
+  (175.5ms) commit transaction
1946
+ Connecting to database specified by database.yml
1947
+  (0.7ms) select sqlite_version(*)
1948
+  (173.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')
1949
+  (141.3ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1950
+  (158.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1951
+  (183.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1952
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1953
+ Migrating to CreateTranslations (20110921112044)
1954
+  (0.0ms) begin transaction
1955
+  (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)
1956
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1957
+  (155.1ms) commit transaction
1958
+ Migrating to RenameTranslationToNamespace (20130422115639)
1959
+  (0.1ms) begin transaction
1960
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1961
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1962
+  (140.9ms) commit transaction
1963
+ Connecting to database specified by database.yml
1964
+  (0.7ms) select sqlite_version(*)
1965
+  (152.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')
1966
+  (149.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1967
+  (166.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1968
+  (166.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1969
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1970
+ Migrating to CreateTranslations (20110921112044)
1971
+  (0.0ms) begin transaction
1972
+  (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)
1973
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1974
+  (164.2ms) commit transaction
1975
+ Migrating to RenameTranslationToNamespace (20130422115639)
1976
+  (0.0ms) begin transaction
1977
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1978
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1979
+  (167.2ms) commit transaction
1980
+ Connecting to database specified by database.yml
1981
+  (0.6ms) select sqlite_version(*)
1982
+  (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')
1983
+  (299.3ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
1984
+  (150.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1985
+  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1986
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1987
+ Migrating to CreateTranslations (20110921112044)
1988
+  (0.0ms) begin transaction
1989
+  (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)
1990
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1991
+  (149.2ms) commit transaction
1992
+ Migrating to RenameTranslationToNamespace (20130422115639)
1993
+  (0.0ms) begin transaction
1994
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
1995
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
1996
+  (115.6ms) commit transaction
1997
+ Connecting to database specified by database.yml
1998
+  (0.7ms) select sqlite_version(*)
1999
+  (207.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')
2000
+  (141.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2001
+  (142.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2002
+  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2003
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2004
+ Migrating to CreateTranslations (20110921112044)
2005
+  (0.0ms) begin transaction
2006
+  (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)
2007
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2008
+  (164.4ms) commit transaction
2009
+ Migrating to RenameTranslationToNamespace (20130422115639)
2010
+  (0.1ms) begin transaction
2011
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2012
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2013
+  (165.8ms) commit transaction
2014
+ Connecting to database specified by database.yml
2015
+  (0.6ms) select sqlite_version(*)
2016
+  (178.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')
2017
+  (149.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2018
+  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2019
+  (125.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2020
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2021
+ Migrating to CreateTranslations (20110921112044)
2022
+  (0.0ms) begin transaction
2023
+  (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)
2024
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2025
+  (123.0ms) commit transaction
2026
+ Migrating to RenameTranslationToNamespace (20130422115639)
2027
+  (0.0ms) begin transaction
2028
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2029
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2030
+  (150.8ms) commit transaction
2031
+ Connecting to database specified by database.yml
2032
+  (0.7ms) select sqlite_version(*)
2033
+  (184.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')
2034
+  (149.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2035
+  (125.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2036
+  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2037
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2038
+ Migrating to CreateTranslations (20110921112044)
2039
+  (0.0ms) begin transaction
2040
+  (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)
2041
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2042
+  (122.8ms) commit transaction
2043
+ Migrating to RenameTranslationToNamespace (20130422115639)
2044
+  (0.0ms) begin transaction
2045
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2046
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2047
+  (140.8ms) commit transaction
2048
+ Connecting to database specified by database.yml
2049
+  (1.0ms) select sqlite_version(*)
2050
+  (188.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')
2051
+  (124.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2052
+  (125.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2053
+  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2054
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2055
+ Migrating to CreateTranslations (20110921112044)
2056
+  (0.0ms) begin transaction
2057
+  (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)
2058
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2059
+  (131.0ms) commit transaction
2060
+ Migrating to RenameTranslationToNamespace (20130422115639)
2061
+  (0.0ms) begin transaction
2062
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2063
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2064
+  (141.0ms) commit transaction
2065
+ Connecting to database specified by database.yml
2066
+  (0.7ms) select sqlite_version(*)
2067
+  (178.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')
2068
+  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2069
+  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2070
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2071
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2072
+ Migrating to CreateTranslations (20110921112044)
2073
+  (0.0ms) begin transaction
2074
+  (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)
2075
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2076
+  (155.0ms) commit transaction
2077
+ Migrating to RenameTranslationToNamespace (20130422115639)
2078
+  (0.0ms) begin transaction
2079
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2080
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2081
+  (165.9ms) commit transaction
2082
+ Connecting to database specified by database.yml
2083
+  (0.6ms) select sqlite_version(*)
2084
+  (228.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')
2085
+  (149.3ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2086
+  (143.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2087
+  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2088
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2089
+ Migrating to CreateTranslations (20110921112044)
2090
+  (0.0ms) begin transaction
2091
+  (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)
2092
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2093
+  (147.5ms) commit transaction
2094
+ Migrating to RenameTranslationToNamespace (20130422115639)
2095
+  (0.1ms) begin transaction
2096
+  (0.4ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2097
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2098
+  (148.6ms) commit transaction
2099
+ Connecting to database specified by database.yml
2100
+  (0.6ms) select sqlite_version(*)
2101
+  (197.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')
2102
+  (116.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2103
+  (133.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2104
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2105
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2106
+ Migrating to CreateTranslations (20110921112044)
2107
+  (0.0ms) begin transaction
2108
+  (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)
2109
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2110
+  (130.7ms) commit transaction
2111
+ Migrating to RenameTranslationToNamespace (20130422115639)
2112
+  (0.1ms) begin transaction
2113
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2114
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2115
+  (157.6ms) commit transaction
2116
+ Connecting to database specified by database.yml
2117
+  (0.7ms) select sqlite_version(*)
2118
+  (172.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')
2119
+  (149.9ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2120
+  (121.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2121
+  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2122
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2123
+ Migrating to CreateTranslations (20110921112044)
2124
+  (0.0ms) begin transaction
2125
+  (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)
2126
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2127
+  (138.2ms) commit transaction
2128
+ Migrating to RenameTranslationToNamespace (20130422115639)
2129
+  (0.1ms) begin transaction
2130
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2131
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2132
+  (165.7ms) commit transaction
2133
+ Connecting to database specified by database.yml
2134
+  (0.9ms) select sqlite_version(*)
2135
+  (152.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')
2136
+  (133.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2137
+  (150.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2138
+  (152.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2139
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2140
+ Migrating to CreateTranslations (20110921112044)
2141
+  (0.0ms) begin transaction
2142
+  (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)
2143
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2144
+  (153.4ms) commit transaction
2145
+ Migrating to RenameTranslationToNamespace (20130422115639)
2146
+  (0.0ms) begin transaction
2147
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2148
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2149
+  (157.7ms) commit transaction
2150
+ Connecting to database specified by database.yml
2151
+  (0.6ms) select sqlite_version(*)
2152
+  (174.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')
2153
+  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2154
+  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2155
+  (150.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2156
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2157
+ Migrating to CreateTranslations (20110921112044)
2158
+  (0.0ms) begin transaction
2159
+  (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)
2160
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2161
+  (147.4ms) commit transaction
2162
+ Migrating to RenameTranslationToNamespace (20130422115639)
2163
+  (0.0ms) begin transaction
2164
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2165
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2166
+  (149.0ms) commit transaction
2167
+ Connecting to database specified by database.yml
2168
+  (0.7ms) select sqlite_version(*)
2169
+  (178.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')
2170
+  (141.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2171
+  (133.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2172
+  (143.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2173
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2174
+ Migrating to CreateTranslations (20110921112044)
2175
+  (0.0ms) begin transaction
2176
+  (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)
2177
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2178
+  (147.7ms) commit transaction
2179
+ Migrating to RenameTranslationToNamespace (20130422115639)
2180
+  (0.1ms) begin transaction
2181
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2182
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2183
+  (148.9ms) commit transaction
2184
+ Connecting to database specified by database.yml
2185
+  (0.6ms) select sqlite_version(*)
2186
+  (156.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')
2187
+  (169.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2188
+  (131.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2189
+  (141.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2190
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2191
+ Migrating to CreateTranslations (20110921112044)
2192
+  (0.0ms) begin transaction
2193
+  (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)
2194
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2195
+  (131.1ms) commit transaction
2196
+ Migrating to RenameTranslationToNamespace (20130422115639)
2197
+  (0.0ms) begin transaction
2198
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2199
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2200
+  (132.4ms) commit transaction
857
2201
  Connecting to database specified by database.yml
858
-  (2.4ms) select sqlite_version(*)
859
-  (128.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
2202
+  (0.7ms) select sqlite_version(*)
2203
+  (182.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')
860
2204
   (141.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
861
-  (108.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
862
-  (124.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
863
-  (16.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2205
+  (158.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2206
+  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2207
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2208
+ Migrating to CreateTranslations (20110921112044)
2209
+  (0.0ms) begin transaction
2210
+  (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)
2211
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2212
+  (163.7ms) commit transaction
2213
+ Migrating to RenameTranslationToNamespace (20130422115639)
2214
+  (0.0ms) begin transaction
2215
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2216
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2217
+  (140.9ms) commit transaction
2218
+ Connecting to database specified by database.yml
2219
+  (0.6ms) select sqlite_version(*)
2220
+  (174.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')
2221
+  (159.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2222
+  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2223
+  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2224
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2225
+ Migrating to CreateTranslations (20110921112044)
2226
+  (0.0ms) begin transaction
2227
+  (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)
2228
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2229
+  (122.2ms) commit transaction
2230
+ Migrating to RenameTranslationToNamespace (20130422115639)
2231
+  (0.0ms) begin transaction
2232
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2233
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2234
+  (124.3ms) commit transaction
2235
+ Connecting to database specified by database.yml
2236
+  (0.7ms) select sqlite_version(*)
2237
+  (183.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')
2238
+  (142.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2239
+  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2240
+  (192.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2241
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2242
+ Migrating to CreateTranslations (20110921112044)
2243
+  (0.0ms) begin transaction
2244
+  (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)
2245
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2246
+  (114.5ms) commit transaction
2247
+ Migrating to RenameTranslationToNamespace (20130422115639)
2248
+  (0.0ms) begin transaction
2249
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2250
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2251
+  (115.8ms) commit transaction
2252
+ Connecting to database specified by database.yml
2253
+  (1.0ms) select sqlite_version(*)
2254
+  (143.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')
2255
+  (132.8ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2256
+  (158.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2257
+  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2258
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2259
+ Migrating to CreateTranslations (20110921112044)
2260
+  (0.0ms) begin transaction
2261
+  (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)
2262
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2263
+  (187.5ms) commit transaction
2264
+ Migrating to RenameTranslationToNamespace (20130422115639)
2265
+  (0.1ms) begin transaction
2266
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2267
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2268
+  (165.5ms) commit transaction
2269
+ Connecting to database specified by database.yml
2270
+  (0.7ms) select sqlite_version(*)
2271
+  (147.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')
2272
+  (141.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2273
+  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2274
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2275
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2276
+ Migrating to CreateTranslations (20110921112044)
2277
+  (0.0ms) begin transaction
2278
+  (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)
2279
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2280
+  (122.7ms) commit transaction
2281
+ Migrating to RenameTranslationToNamespace (20130422115639)
2282
+  (0.0ms) begin transaction
2283
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2284
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2285
+  (124.2ms) commit transaction
2286
+ Connecting to database specified by database.yml
2287
+  (0.8ms) select sqlite_version(*)
2288
+  (162.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')
2289
+  (158.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2290
+  (158.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2291
+  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2292
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2293
+ Migrating to CreateTranslations (20110921112044)
2294
+  (0.0ms) begin transaction
2295
+  (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)
2296
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2297
+  (131.0ms) commit transaction
2298
+ Migrating to RenameTranslationToNamespace (20130422115639)
2299
+  (0.0ms) begin transaction
2300
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2301
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2302
+  (142.1ms) commit transaction
2303
+ Connecting to database specified by database.yml
2304
+  (1.0ms) select sqlite_version(*)
2305
+  (155.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')
2306
+  (149.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2307
+  (141.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2308
+  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2309
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2310
+ Migrating to CreateTranslations (20110921112044)
2311
+  (0.0ms) begin transaction
2312
+  (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)
2313
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2314
+  (146.7ms) commit transaction
2315
+ Migrating to RenameTranslationToNamespace (20130422115639)
2316
+  (0.0ms) begin transaction
2317
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2318
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2319
+  (116.0ms) commit transaction
2320
+ Connecting to database specified by database.yml
2321
+  (5.3ms) select sqlite_version(*)
2322
+  (156.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')
2323
+  (158.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2324
+  (159.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2325
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2326
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2327
+ Migrating to CreateTranslations (20110921112044)
2328
+  (0.0ms) begin transaction
2329
+  (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)
2330
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2331
+  (142.3ms) commit transaction
2332
+ Migrating to RenameTranslationToNamespace (20130422115639)
2333
+  (0.0ms) begin transaction
2334
+  (0.4ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2335
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2336
+  (177.8ms) commit transaction
2337
+ Connecting to database specified by database.yml
2338
+  (0.7ms) select sqlite_version(*)
2339
+  (147.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')
2340
+  (141.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2341
+  (150.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2342
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2343
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
864
2344
  Migrating to CreateTranslations (20110921112044)
865
2345
   (0.1ms) begin transaction
866
-  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
867
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
868
-  (119.5ms) commit transaction
2346
+  (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)
2347
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2348
+  (142.8ms) commit transaction
869
2349
  Migrating to RenameTranslationToNamespace (20130422115639)
870
2350
   (0.1ms) begin transaction
871
-  (1.2ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
872
-  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
873
-  (120.8ms) commit transaction
2351
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2352
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2353
+  (124.3ms) commit transaction
2354
+ Connecting to database specified by database.yml
2355
+  (2.0ms) select sqlite_version(*)
2356
+  (170.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')
2357
+  (133.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
2358
+  (134.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2359
+  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2360
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2361
+ Migrating to CreateTranslations (20110921112044)
2362
+  (0.0ms) begin transaction
2363
+  (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)
2364
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
2365
+  (147.8ms) commit transaction
2366
+ Migrating to RenameTranslationToNamespace (20130422115639)
2367
+  (0.0ms) begin transaction
2368
+  (0.3ms) ALTER TABLE "translations" RENAME TO "rails_i18nterface_translations"
2369
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422115639')
2370
+  (157.6ms) commit transaction