rails-i18nterface 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -6,27 +6,6 @@
6
6
  [![Code Climate](https://codeclimate.com/github/mose/rails-i18nterface.png)](https://codeclimate.com/github/mose/rails-i18nterface)
7
7
  [![Gem Version](https://badge.fury.io/rb/rails-i18nterface.png)](http://badge.fury.io/rb/rails-i18nterface)
8
8
 
9
- This is a fork of an overhaul of a fork of a fork of rails-translate.
10
-
11
- It was originally created by [Peter Marklund and Joakim Westerlund @ mynewsdesk](https://github.com/mynewsdesk/translate)
12
- and later adapted to rails 3.0 by [Claudius Coenen](https://github.com/ccoenen/rails-translate).
13
- This version is a spin-off of Claudius Coenen's version by [Larry Sprock](https://github.com/lardawge/rails-i18nterface).
14
- It was renamed, refactored and prepared for rails 3.1 as an Engine. Over this work
15
- [Michal Hantl](https://github.com/hakunin/rails-i18nterface) made a bunch of nice UI modifications
16
- on his fork. Since then it was more or less abandoned.
17
-
18
- I took over the evolution with some new features:
19
-
20
- * testing using [combustion](https://github.com/pat/combustion) and [rspec](https://github.com/rspec/rspec)
21
- * redesign of the layout
22
- * navigation overhaul, splitting the name-spaces in a foldable menu
23
- * gathering of first-level translations under a ROOT container
24
- * gemification and release of a version 0.1.0
25
- * (the 0.0.1 was the work from Larry Sprock but was not published as a gem)
26
- * compatibility with rails 4 and ruby 2
27
-
28
- Check the [Changelog](https://github.com/mose/rails-i18nterface/blob/master/changelog.md) for details about further changes.
29
-
30
9
  ![rails-i18nterface](http://mose.fr/rails-i18nterface.png)
31
10
 
32
11
  ## Usage
@@ -82,13 +61,13 @@ Where `[:en]` and `[:ja, :es, :fr]` could be replaced by locale list of your cho
82
61
 
83
62
  ## Todo
84
63
 
85
- * fix the code smell reported by code climate
86
- * extract code from the controller to a lib (in progress)
87
- * refactor the libs in a cleaner way (in progress)
64
+ * fix the code smell reported by code climate (done)
65
+ * extract code from the controller to a lib (dmostly done)
66
+ * refactor the libs in a cleaner way (mostly done)
88
67
  * apply rubocop and follow his law (done)
89
68
  * make the application thread-safe
90
- * remove those damn global variables (in progress)
91
- * extend testing to refactored libs (in progress)
69
+ * remove those damn global variables (done)
70
+ * extend testing to refactored libs (mostly done)
92
71
  * change navigation to an ajax-driven reload
93
72
  * add a way to gather .one and .other and .few under same translation line
94
73
  * add support for other i18n backends (gettext)
@@ -99,6 +78,29 @@ The database is not used anymore, back to the good old way.
99
78
  So you can remove the table rails_i18nterface_translations (v0.1.7)
100
79
  or translations (< 0.1.7).
101
80
 
81
+ ## Project history
82
+
83
+ This is a fork of an overhaul of a fork of a fork of rails-translate.
84
+
85
+ It was originally created by [Peter Marklund and Joakim Westerlund @ mynewsdesk](https://github.com/mynewsdesk/translate)
86
+ and later adapted to rails 3.0 by [Claudius Coenen](https://github.com/ccoenen/rails-translate).
87
+ This version is a spin-off of Claudius Coenen's version by [Larry Sprock](https://github.com/lardawge/rails-i18nterface).
88
+ It was renamed, refactored and prepared for rails 3.1 as an Engine. Over this work
89
+ [Michal Hantl](https://github.com/hakunin/rails-i18nterface) made a bunch of nice UI modifications
90
+ on his fork. Since then it was more or less abandoned.
91
+
92
+ I took over the evolution with some new features:
93
+
94
+ * testing using [combustion](https://github.com/pat/combustion) and [rspec](https://github.com/rspec/rspec)
95
+ * redesign of the layout
96
+ * navigation overhaul, splitting the name-spaces in a foldable menu
97
+ * gathering of first-level translations under a ROOT container
98
+ * gemification and release of a version 0.1.0
99
+ * (the 0.0.1 was the work from Larry Sprock but was not published as a gem)
100
+ * compatibility with rails 4 and ruby 2
101
+
102
+ Check the [Changelog](https://github.com/mose/rails-i18nterface/blob/master/changelog.md) for details about further changes.
103
+
102
104
  ## License
103
105
 
104
106
  ```
@@ -4,5 +4,5 @@
4
4
  // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
5
  // the compiled file.
6
6
  //
7
- //= require rails_i18nterface/ender.min
7
+ //= require rails_i18nterface/ender
8
8
  //= require rails_i18nterface/base
@@ -70,4 +70,13 @@ $.domReady(function() {
70
70
  newF.submit();
71
71
  }
72
72
  });
73
+ $(".multiline").on('click', function(e) {
74
+ e.preventDefault();
75
+ input = $(this).next();
76
+ area = $.create('<textarea rows="4" id="'+input.attr("id")+'" name="'+input.attr('name')+'">');
77
+ area.text(input.val());
78
+ area.appendTo($(this).parent());
79
+ input.hide();
80
+ $(this).hide();
81
+ });
73
82
  });
@@ -376,6 +376,17 @@ div.translation {
376
376
  border-bottom: solid 1px #d5d6d5;
377
377
  clear:both;
378
378
  }
379
+ div.translation .change {
380
+ position: absolute;
381
+ display: inline-block;
382
+ margin-left: -15px;
383
+ cursor: pointer;
384
+ color: #c3c6c9;
385
+ text-decoration: none;
386
+ }
387
+ div.translation .change:hover {
388
+ color: #369;
389
+ }
379
390
  div.translation input, div.translation textarea {
380
391
  font-family: monospace;
381
392
  font-size: 1.1em;
@@ -384,6 +395,7 @@ div.translation input, div.translation textarea {
384
395
  padding: 4px;
385
396
  border: 1px solid #aaa;
386
397
  border-radius: 3px;
398
+ position: relative;
387
399
  }
388
400
  div.translation textarea {
389
401
  }
@@ -460,35 +472,35 @@ div.selected{
460
472
  }
461
473
  /*feedback*/
462
474
  .long-translation {
463
- padding-bottom:2em;
464
- clear:both;
475
+ clear: both;
465
476
  }
466
477
  .long-translation .translation-text {
467
- float:left;
468
- width:50%;
469
- padding-top:8px;
478
+ float: left;
479
+ width: 50%;
480
+ padding: 4px;
481
+ border: 1px solid #eee;
482
+ border-radius: 3px;
483
+ font-size: 1.1em;
470
484
  }
471
485
  .long-translation .translation-textarea {
472
- float:left;
473
- width:50%;
474
- height:100%;
486
+ float: left;
487
+ width: 50%;
475
488
  }
476
489
  .long-translation .translation-text,
477
490
  .long-translation .translation-textarea textarea {
478
- line-height:175%;
479
- font-size:11px;
480
- font-family:monospace;
491
+ line-height: 175%;
492
+ font-family: monospace;
481
493
  }
482
494
 
483
495
  .translation input,
484
496
  .long-translation .translation-textarea textarea {
485
- background-color:#ffe;
497
+ background-color: #f3f6f9;
486
498
  }
487
499
 
488
500
  .flash {
489
501
  text-align: right;
490
502
  }
491
503
  .clear {
492
- clear:both;
504
+ clear: both;
493
505
  }
494
506
 
@@ -67,12 +67,18 @@ module RailsI18nterface
67
67
  init_session
68
68
  init_assigns
69
69
  init_translations
70
+ init_sort
71
+ end
72
+
73
+ def init_sort
74
+ params[:sort_by] = 'key' unless params[:sort_by]
70
75
  end
71
76
 
72
77
  def init_assigns
73
78
  @from_locale = session[:from_locale].to_sym
74
79
  @to_locale = session[:to_locale].to_sym
75
80
  @per_page = session[:per_page]
81
+ @sort_by = params[:sort_by] || 'key'
76
82
  end
77
83
 
78
84
  def init_session
@@ -80,7 +86,7 @@ module RailsI18nterface
80
86
  session[:to_locale] ||= I18n.default_locale
81
87
  session[:per_page] ||= 50
82
88
  session[:from_locale] = params[:from_locale] if params[:from_locale].present?
83
- session[:to_locale] = params[:to_locale] if params[:tolocale].present?
89
+ session[:to_locale] = params[:to_locale] if params[:to_locale].present?
84
90
  session[:per_page] = params[:per_page].to_i if params[:per_page].present?
85
91
  end
86
92
 
@@ -56,7 +56,7 @@
56
56
  </div>
57
57
  <div class="translations">
58
58
  <p class="translate">
59
- Translations from <%= @from_locale %> to <%= @to_locale %>
59
+ Translations from <b><%= @from_locale %></b> to <b><%= @to_locale %></b> -
60
60
  <label>Sort by:</label> <%= simple_filter(["key", "text"], 'sort_by').html_safe %>
61
61
  <%= submit_tag "Save Translations", style: 'float:right;' %>
62
62
  </p>
@@ -90,7 +90,7 @@
90
90
  <div class="clear"></div>
91
91
  </div>
92
92
  <div class="translation-textarea">
93
- <%= text_area_tag(field_name, to_text, :rows => n_lines+1, :id => tid) %>
93
+ <%= text_area_tag(field_name, to_text, :rows => n_lines, :id => tid) %>
94
94
  <div class="clear"></div>
95
95
  </div>
96
96
  <div class="clear"></div>
@@ -105,13 +105,13 @@
105
105
  </div>
106
106
  </div>
107
107
  <% end %>
108
- <span class="key" ><%=h key %></span>
108
+ <span class="key"><%=h key %></span>
109
109
  <a href="#" class="delete" title="Delete this key from database">X</a>
110
110
  </div>
111
111
  <div class="translation-text">
112
112
  <code class="keytext" id="<%= tid %>_original"><%= from_text %></code>
113
113
  </div>
114
-
114
+ <a class="change multiline" href="#" title="click to transform in a multi-line translation">&#9654;</a>
115
115
  <%= text_field_tag(field_name, to_text, :size => line_size, :id => tid) %>
116
116
  <% end %>
117
117
  </p>
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module RailsI18nterface
4
- VERSION = '0.2.2'
4
+ VERSION = '0.2.3'
5
5
  end
@@ -44,6 +44,12 @@ describe RailsI18nterface::TranslateController do
44
44
  I18n.stub!(:default_locale).and_return(:sv)
45
45
  end
46
46
 
47
+ it 'can switch languages' do
48
+ get_page :index, per_page: 1, from_locale: 'sv', to_locale: 'en', use_route: 'rails-i18nterface'
49
+ assigns(:from_locale).should == :sv
50
+ assigns(:to_locale).should == :en
51
+ end
52
+
47
53
  it 'shows sorted paginated keys from the translate from locale and extracted keys by default' do
48
54
  get_page :index, per_page: 1, use_route: 'rails-i18nterface'
49
55
  assigns(:from_locale).should == :sv
@@ -57,6 +63,11 @@ describe RailsI18nterface::TranslateController do
57
63
  assigns(:paginated_keys).should == ['activerecord.attributes.article.body']
58
64
  end
59
65
 
66
+ it 'has a default sort order by key' do
67
+ get_page :index, per_page: 1, use_route: 'rails-i18nterface'
68
+ request.params[:sort_by].should == 'key'
69
+ end
70
+
60
71
  it 'can sort by key' do
61
72
  get_page :index, per_page: 1, filter: 'translated', sort_by: 'key', use_route: 'rails-i18nterface'
62
73
  assigns(:paginated_keys).should == ['articles.new.page_title']
@@ -1,2370 +1,873 @@
1
1
  Connecting to database specified by database.yml
2
2
   (0.1ms) select sqlite_version(*)
3
-  (176.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
-  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3
+  (112.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
4
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
6
6
  Migrating to CreateTranslations (20110921112044)
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)
7
+  (0.1ms) begin transaction
8
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
9
9
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
10
-  (120.6ms) commit transaction
10
+  (97.9ms) commit transaction
11
11
  Connecting to database specified by database.yml
12
12
   (0.1ms) select sqlite_version(*)
13
-  (163.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
13
+  (124.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
+  (91.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
16
16
  Migrating to CreateTranslations (20110921112044)
17
-  (0.0ms) begin transaction
18
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
17
+  (0.1ms) begin transaction
18
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
19
19
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
20
-  (145.9ms) commit transaction
20
+  (110.5ms) commit transaction
21
21
  Connecting to database specified by database.yml
22
22
   (0.1ms) select sqlite_version(*)
23
-  (123.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
24
-  (133.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
23
+  (145.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
24
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
25
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
26
26
  Migrating to CreateTranslations (20110921112044)
27
-  (0.0ms) begin transaction
27
+  (0.1ms) 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
-  (128.8ms) commit transaction
30
+  (96.4ms) commit transaction
31
31
  Connecting to database specified by database.yml
32
32
   (0.1ms) select sqlite_version(*)
33
-  (154.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
34
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
35
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
33
+  (125.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
34
+  (115.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
35
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
36
36
  Migrating to CreateTranslations (20110921112044)
37
-  (0.0ms) begin transaction
37
+  (0.1ms) 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
-  (193.7ms) commit transaction
40
+  (115.3ms) commit transaction
41
41
  Connecting to database specified by database.yml
42
42
   (0.1ms) select sqlite_version(*)
43
-  (209.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
44
-  (166.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
45
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
43
+  (119.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
44
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
45
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
46
46
  Migrating to CreateTranslations (20110921112044)
47
-  (0.0ms) begin transaction
48
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
47
+  (0.1ms) begin transaction
48
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
49
49
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
50
-  (137.5ms) commit transaction
50
+  (99.2ms) commit transaction
51
51
  Connecting to database specified by database.yml
52
52
   (0.1ms) select sqlite_version(*)
53
-  (176.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
54
-  (166.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
55
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
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
-  (154.0ms) commit transaction
60
+  (105.2ms) commit transaction
61
61
  Connecting to database specified by database.yml
62
62
   (0.1ms) select sqlite_version(*)
63
-  (158.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
64
-  (167.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
65
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
63
+  (126.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
64
+  (116.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
65
+  (5.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
66
66
  Migrating to CreateTranslations (20110921112044)
67
-  (0.0ms) begin transaction
68
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
69
69
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
70
-  (145.9ms) commit transaction
70
+  (114.2ms) commit transaction
71
71
  Connecting to database specified by database.yml
72
72
   (0.1ms) select sqlite_version(*)
73
-  (188.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
74
-  (134.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
75
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
73
+  (120.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
74
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
75
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
76
76
  Migrating to CreateTranslations (20110921112044)
77
-  (0.0ms) begin transaction
78
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
77
+  (0.1ms) begin transaction
78
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
79
79
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
80
-  (137.0ms) commit transaction
80
+  (116.4ms) commit transaction
81
81
  Connecting to database specified by database.yml
82
82
   (0.1ms) select sqlite_version(*)
83
-  (180.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
84
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
85
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
83
+  (102.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
84
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
85
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
86
86
  Migrating to CreateTranslations (20110921112044)
87
-  (0.0ms) begin transaction
88
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87
+  (0.1ms) begin transaction
88
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
89
89
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
90
-  (137.5ms) commit transaction
90
+  (108.9ms) commit transaction
91
91
  Connecting to database specified by database.yml
92
92
   (0.1ms) select sqlite_version(*)
93
-  (171.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
94
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
93
+  (101.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
94
+  (99.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
96
96
  Migrating to CreateTranslations (20110921112044)
97
-  (0.0ms) begin transaction
97
+  (0.1ms) 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.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
100
-  (162.0ms) commit transaction
99
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
100
+  (113.8ms) commit transaction
101
101
  Connecting to database specified by database.yml
102
102
   (0.1ms) select sqlite_version(*)
103
-  (271.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
104
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
105
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
103
+  (111.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
104
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
105
+  (5.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
106
106
  Migrating to CreateTranslations (20110921112044)
107
-  (0.0ms) begin transaction
108
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
107
+  (0.1ms) begin transaction
108
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
109
109
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
110
-  (157.7ms) commit transaction
110
+  (118.8ms) commit transaction
111
111
  Connecting to database specified by database.yml
112
112
   (0.1ms) select sqlite_version(*)
113
-  (202.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
114
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
115
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
113
+  (112.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
114
+  (92.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
115
+  (4.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
116
116
  Migrating to CreateTranslations (20110921112044)
117
-  (0.0ms) begin transaction
118
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
117
+  (0.1ms) begin transaction
118
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
119
119
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
120
-  (154.3ms) commit transaction
120
+  (97.9ms) commit transaction
121
121
  Connecting to database specified by database.yml
122
122
   (0.1ms) select sqlite_version(*)
123
-  (156.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
124
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
125
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
123
+  (116.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
124
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
125
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
126
126
  Migrating to CreateTranslations (20110921112044)
127
-  (0.0ms) begin transaction
128
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
127
+  (0.1ms) begin transaction
128
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
129
129
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
130
-  (154.3ms) commit transaction
130
+  (104.9ms) commit transaction
131
131
  Connecting to database specified by database.yml
132
132
   (0.1ms) select sqlite_version(*)
133
-  (162.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
134
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
135
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
133
+  (130.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
134
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
135
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
136
136
  Migrating to CreateTranslations (20110921112044)
137
-  (0.0ms) begin transaction
138
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
137
+  (0.1ms) begin transaction
138
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
139
139
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
140
-  (129.1ms) commit transaction
140
+  (109.2ms) commit transaction
141
141
  Connecting to database specified by database.yml
142
142
   (0.1ms) select sqlite_version(*)
143
-  (169.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
144
-  (160.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
145
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
146
146
  Migrating to CreateTranslations (20110921112044)
147
147
   (0.0ms) begin transaction
148
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
149
149
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
150
-  (137.6ms) commit transaction
151
- Connecting to database specified by database.yml
152
-  (0.1ms) select sqlite_version(*)
153
-  (153.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
154
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
155
- Connecting to database specified by database.yml
156
-  (0.1ms) select sqlite_version(*)
157
-  (174.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
158
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
150
+  (86.1ms) commit transaction
159
151
  Connecting to database specified by database.yml
160
152
   (0.1ms) select sqlite_version(*)
161
-  (177.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
162
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
163
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
164
156
  Migrating to CreateTranslations (20110921112044)
165
-  (0.0ms) begin transaction
166
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
167
159
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
168
-  (177.7ms) commit transaction
169
- Connecting to database specified by database.yml
170
-  (0.6ms) select sqlite_version(*)
171
-  (145.0ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
172
-  (150.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
173
-  (159.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
174
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
175
- Migrating to CreateTranslations (20110921112044)
176
-  (0.0ms) begin transaction
177
-  (0.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
178
- SQLite3::SQLException: table "translations" already exists: CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
179
-  (0.1ms) rollback transaction
180
- Connecting to database specified by database.yml
181
-  (0.6ms) select sqlite_version(*)
182
-  (164.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
183
-  (158.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
184
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
185
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
186
- Migrating to CreateTranslations (20110921112044)
187
-  (0.0ms) begin transaction
188
-  (0.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
189
- SQLite3::SQLException: table "translations" already exists: CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
190
-  (0.0ms) rollback transaction
191
- Connecting to database specified by database.yml
192
-  (0.9ms) select sqlite_version(*)
193
-  (157.8ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
194
-  (191.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
195
-  (167.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
196
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
197
- Migrating to CreateTranslations (20110921112044)
198
-  (0.0ms) begin transaction
199
-  (0.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
200
- SQLite3::SQLException: table "translations" already exists: CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
201
-  (0.1ms) rollback transaction
160
+  (105.3ms) commit transaction
202
161
  Connecting to database specified by database.yml
203
162
   (0.1ms) select sqlite_version(*)
204
-  (200.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
205
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
206
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
207
166
  Migrating to CreateTranslations (20110921112044)
208
-  (0.0ms) begin transaction
167
+  (0.1ms) begin transaction
209
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)
210
169
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
211
-  (168.3ms) commit transaction
170
+  (126.3ms) commit transaction
212
171
  Connecting to database specified by database.yml
213
172
   (0.1ms) select sqlite_version(*)
214
-  (169.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
215
-  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
216
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
217
176
  Migrating to CreateTranslations (20110921112044)
218
-  (0.0ms) begin transaction
219
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
220
179
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
221
-  (137.5ms) commit transaction
180
+  (97.8ms) commit transaction
222
181
  Connecting to database specified by database.yml
223
182
   (0.1ms) select sqlite_version(*)
224
-  (151.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
225
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
226
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
227
186
  Migrating to CreateTranslations (20110921112044)
228
-  (0.0ms) begin transaction
229
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
187
+  (0.1ms) begin transaction
188
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
230
189
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
231
-  (161.7ms) commit transaction
190
+  (107.5ms) commit transaction
232
191
  Connecting to database specified by database.yml
233
192
   (0.1ms) select sqlite_version(*)
234
-  (160.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
235
-  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
236
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
237
196
  Migrating to CreateTranslations (20110921112044)
238
-  (0.0ms) begin transaction
239
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
240
199
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
241
-  (162.5ms) commit transaction
200
+  (112.0ms) commit transaction
242
201
  Connecting to database specified by database.yml
243
202
   (0.1ms) select sqlite_version(*)
244
-  (182.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
245
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
246
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
247
206
  Migrating to CreateTranslations (20110921112044)
248
-  (0.0ms) begin transaction
249
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
250
209
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
251
-  (145.8ms) commit transaction
210
+  (99.7ms) commit transaction
252
211
  Connecting to database specified by database.yml
253
212
   (0.1ms) select sqlite_version(*)
254
-  (128.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
255
-  (133.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
256
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
257
216
  Migrating to CreateTranslations (20110921112044)
258
-  (0.0ms) begin transaction
259
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
260
219
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
261
-  (120.8ms) commit transaction
220
+  (114.8ms) commit transaction
262
221
  Connecting to database specified by database.yml
263
222
   (0.1ms) select sqlite_version(*)
264
-  (143.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
265
-  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
266
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
267
226
  Migrating to CreateTranslations (20110921112044)
268
-  (0.0ms) begin transaction
269
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
270
229
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
271
-  (104.2ms) commit transaction
230
+  (93.4ms) commit transaction
272
231
  Connecting to database specified by database.yml
273
232
   (0.1ms) select sqlite_version(*)
274
-  (146.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
275
-  (117.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
276
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
277
236
  Migrating to CreateTranslations (20110921112044)
278
-  (0.0ms) begin transaction
279
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
280
239
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
281
-  (112.6ms) commit transaction
240
+  (97.5ms) commit transaction
282
241
  Connecting to database specified by database.yml
283
242
   (0.1ms) select sqlite_version(*)
284
-  (199.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
285
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
286
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
287
246
  Migrating to CreateTranslations (20110921112044)
288
-  (0.0ms) begin transaction
289
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
290
249
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
291
-  (145.8ms) commit transaction
250
+  (110.4ms) commit transaction
292
251
  Connecting to database specified by database.yml
293
252
   (0.1ms) select sqlite_version(*)
294
-  (164.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
295
-  (154.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
296
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
297
256
  Migrating to CreateTranslations (20110921112044)
298
-  (0.0ms) begin transaction
257
+  (0.1ms) begin transaction
299
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)
300
259
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
301
-  (152.7ms) commit transaction
260
+  (90.9ms) commit transaction
302
261
  Connecting to database specified by database.yml
303
262
   (0.1ms) select sqlite_version(*)
304
-  (168.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
305
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
306
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
307
266
  Migrating to CreateTranslations (20110921112044)
308
267
   (0.0ms) begin transaction
309
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)
310
269
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
311
-  (168.5ms) commit transaction
270
+  (96.4ms) commit transaction
312
271
  Connecting to database specified by database.yml
313
272
   (0.1ms) select sqlite_version(*)
314
-  (147.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
315
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
316
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
317
276
  Migrating to CreateTranslations (20110921112044)
318
-  (0.0ms) begin transaction
319
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
277
+  (0.1ms) begin transaction
278
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
320
279
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
321
-  (160.9ms) commit transaction
280
+  (124.4ms) commit transaction
322
281
  Connecting to database specified by database.yml
323
282
   (0.1ms) select sqlite_version(*)
324
-  (166.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
325
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
326
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
327
286
  Migrating to CreateTranslations (20110921112044)
328
-  (0.0ms) begin transaction
329
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
287
+  (0.1ms) begin transaction
288
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
330
289
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
331
-  (130.5ms) commit transaction
290
+  (102.1ms) commit transaction
332
291
  Connecting to database specified by database.yml
333
292
   (0.1ms) select sqlite_version(*)
334
-  (146.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
335
-  (142.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
336
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
337
296
  Migrating to CreateTranslations (20110921112044)
338
-  (0.0ms) begin transaction
339
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
340
299
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
341
-  (161.0ms) commit transaction
300
+  (106.9ms) commit transaction
342
301
  Connecting to database specified by database.yml
343
302
   (0.1ms) select sqlite_version(*)
344
-  (147.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
345
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
346
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
347
306
  Migrating to CreateTranslations (20110921112044)
348
-  (0.0ms) begin transaction
349
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
350
309
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
351
-  (137.4ms) commit transaction
310
+  (103.0ms) commit transaction
352
311
  Connecting to database specified by database.yml
353
312
   (0.1ms) select sqlite_version(*)
354
-  (179.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
355
-  (143.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
356
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
357
316
  Migrating to CreateTranslations (20110921112044)
358
317
   (0.0ms) begin transaction
359
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)
360
319
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
361
-  (144.3ms) commit transaction
320
+  (88.1ms) commit transaction
362
321
  Connecting to database specified by database.yml
363
322
   (0.1ms) select sqlite_version(*)
364
-  (166.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
365
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
366
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
367
326
  Migrating to CreateTranslations (20110921112044)
368
327
   (0.0ms) begin transaction
369
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)
370
329
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
371
-  (160.1ms) commit transaction
330
+  (180.6ms) commit transaction
372
331
  Connecting to database specified by database.yml
373
332
   (0.1ms) select sqlite_version(*)
374
-  (173.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
375
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
376
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
377
336
  Migrating to CreateTranslations (20110921112044)
378
-  (0.0ms) begin transaction
337
+  (0.1ms) begin transaction
379
338
   (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
380
339
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
381
-  (144.6ms) commit transaction
340
+  (84.7ms) commit transaction
382
341
  Connecting to database specified by database.yml
383
342
   (0.1ms) select sqlite_version(*)
384
-  (161.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
385
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
386
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
387
346
  Migrating to CreateTranslations (20110921112044)
388
-  (0.0ms) begin transaction
389
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
347
+  (0.1ms) begin transaction
348
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
390
349
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
391
-  (120.5ms) commit transaction
350
+  (89.7ms) commit transaction
392
351
  Connecting to database specified by database.yml
393
352
   (0.1ms) select sqlite_version(*)
394
-  (194.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
395
-  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
396
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
397
356
  Migrating to CreateTranslations (20110921112044)
398
-  (0.0ms) begin transaction
399
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
357
+  (0.1ms) begin transaction
358
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
400
359
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
401
-  (145.7ms) commit transaction
360
+  (96.8ms) commit transaction
402
361
  Connecting to database specified by database.yml
403
362
   (0.1ms) select sqlite_version(*)
404
-  (160.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
405
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
406
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
407
366
  Migrating to CreateTranslations (20110921112044)
408
-  (0.0ms) begin transaction
409
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
410
369
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
411
-  (179.1ms) commit transaction
370
+  (102.7ms) commit transaction
412
371
  Connecting to database specified by database.yml
413
372
   (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"
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"
417
376
  Migrating to CreateTranslations (20110921112044)
418
-  (0.0ms) begin transaction
419
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
420
379
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
421
-  (162.4ms) commit transaction
380
+  (97.0ms) commit transaction
422
381
  Connecting to database specified by database.yml
423
382
   (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"
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"
427
386
  Migrating to CreateTranslations (20110921112044)
428
-  (0.0ms) begin transaction
429
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
430
389
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
431
-  (154.0ms) commit transaction
390
+  (100.6ms) commit transaction
432
391
  Connecting to database specified by database.yml
433
-  (0.1ms) select sqlite_version(*)
434
-  (166.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
435
-  (160.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
436
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
437
398
  Migrating to CreateTranslations (20110921112044)
438
399
   (0.0ms) begin transaction
439
400
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
440
401
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
441
-  (162.5ms) commit transaction
402
+  (97.1ms) commit transaction
442
403
  Connecting to database specified by database.yml
443
-  (0.1ms) select sqlite_version(*)
444
-  (191.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
445
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
446
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
404
+  (1.8ms) select sqlite_version(*)
405
+  (111.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
406
+  (105.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
407
+  (115.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
408
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
409
+  (4.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
410
+ Migrating to CreateTranslations (20110921112044)
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
415
+ 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"
447
422
  Migrating to CreateTranslations (20110921112044)
448
423
   (0.0ms) begin transaction
449
424
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
450
425
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
451
-  (154.1ms) commit transaction
426
+  (116.1ms) commit transaction
452
427
  Connecting to database specified by database.yml
453
-  (0.1ms) select sqlite_version(*)
454
-  (159.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
455
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
456
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
457
434
  Migrating to CreateTranslations (20110921112044)
458
435
   (0.0ms) begin transaction
459
436
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
460
437
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
461
-  (204.2ms) commit transaction
438
+  (115.1ms) commit transaction
462
439
  Connecting to database specified by database.yml
463
-  (0.1ms) select sqlite_version(*)
464
-  (165.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
465
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
466
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
467
446
  Migrating to CreateTranslations (20110921112044)
468
-  (0.0ms) begin transaction
469
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
470
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
471
-  (143.0ms) commit transaction
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
472
451
  Connecting to database specified by database.yml
473
-  (0.1ms) select sqlite_version(*)
474
-  (133.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
475
-  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
476
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
477
458
  Migrating to CreateTranslations (20110921112044)
478
-  (0.0ms) begin transaction
479
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
480
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
481
-  (197.4ms) commit transaction
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
482
463
  Connecting to database specified by database.yml
483
-  (0.1ms) select sqlite_version(*)
484
-  (130.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
485
-  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
486
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
487
470
  Migrating to CreateTranslations (20110921112044)
488
-  (0.0ms) begin transaction
489
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
490
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
491
-  (137.5ms) commit transaction
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
492
475
  Connecting to database specified by database.yml
493
-  (0.1ms) select sqlite_version(*)
494
-  (137.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
495
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
496
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
497
482
  Migrating to CreateTranslations (20110921112044)
498
483
   (0.0ms) begin transaction
499
484
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
500
485
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
501
-  (145.9ms) commit transaction
486
+  (90.5ms) commit transaction
502
487
  Connecting to database specified by database.yml
503
-  (0.1ms) select sqlite_version(*)
504
-  (196.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
505
-  (182.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
506
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
507
494
  Migrating to CreateTranslations (20110921112044)
508
495
   (0.0ms) begin transaction
509
496
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
510
497
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
511
-  (145.8ms) commit transaction
498
+  (113.1ms) commit transaction
512
499
  Connecting to database specified by database.yml
513
-  (0.1ms) select sqlite_version(*)
514
-  (213.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
515
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
516
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
517
506
  Migrating to CreateTranslations (20110921112044)
518
-  (0.0ms) begin transaction
519
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
520
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
521
-  (151.3ms) commit transaction
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
522
511
  Connecting to database specified by database.yml
523
-  (0.1ms) select sqlite_version(*)
524
-  (214.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
525
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
526
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
518
+ 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
523
+ Connecting to database specified by database.yml
524
+  (1.8ms) select sqlite_version(*)
525
+  (164.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
526
+  (124.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
527
+  (140.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
528
+  (124.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
529
+  (4.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
527
530
  Migrating to CreateTranslations (20110921112044)
528
531
   (0.0ms) begin transaction
529
532
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
530
533
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
531
-  (129.3ms) commit transaction
534
+  (123.1ms) commit transaction
532
535
  Connecting to database specified by database.yml
533
-  (0.1ms) select sqlite_version(*)
534
-  (145.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
535
-  (134.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
536
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
537
542
  Migrating to CreateTranslations (20110921112044)
538
-  (0.0ms) begin transaction
539
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
540
545
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
541
-  (128.1ms) commit transaction
546
+  (93.1ms) commit transaction
542
547
  Connecting to database specified by database.yml
543
-  (0.1ms) select sqlite_version(*)
544
-  (172.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
545
-  (158.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
546
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
547
554
  Migrating to CreateTranslations (20110921112044)
548
555
   (0.0ms) begin transaction
549
556
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
550
557
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
551
-  (178.9ms) commit transaction
558
+  (123.3ms) commit transaction
552
559
  Connecting to database specified by database.yml
553
-  (0.1ms) select sqlite_version(*)
554
-  (164.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
555
-  (150.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
556
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
557
566
  Migrating to CreateTranslations (20110921112044)
558
-  (0.0ms) begin transaction
559
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
560
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
561
-  (153.6ms) commit transaction
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
562
571
  Connecting to database specified by database.yml
563
-  (0.1ms) select sqlite_version(*)
564
-  (275.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
565
-  (125.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
566
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
567
578
  Migrating to CreateTranslations (20110921112044)
568
-  (0.0ms) begin transaction
569
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
570
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
571
-  (162.1ms) commit transaction
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
572
583
  Connecting to database specified by database.yml
573
-  (0.1ms) select sqlite_version(*)
574
-  (167.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
575
-  (141.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
576
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
577
590
  Migrating to CreateTranslations (20110921112044)
578
591
   (0.0ms) begin transaction
579
592
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
580
593
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
581
-  (120.9ms) commit transaction
594
+  (90.3ms) commit transaction
582
595
  Connecting to database specified by database.yml
583
-  (0.1ms) select sqlite_version(*)
584
-  (169.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
585
-  (151.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
586
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
587
602
  Migrating to CreateTranslations (20110921112044)
588
-  (0.0ms) begin transaction
589
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
590
605
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
591
-  (152.8ms) commit transaction
606
+  (101.7ms) commit transaction
592
607
  Connecting to database specified by database.yml
593
-  (0.1ms) select sqlite_version(*)
594
-  (150.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
595
-  (216.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
596
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
597
614
  Migrating to CreateTranslations (20110921112044)
598
-  (0.0ms) begin transaction
599
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
600
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
601
-  (143.0ms) commit transaction
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
602
619
  Connecting to database specified by database.yml
603
-  (0.1ms) select sqlite_version(*)
604
-  (190.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
605
-  (125.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
606
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
607
626
  Migrating to CreateTranslations (20110921112044)
608
-  (0.0ms) begin transaction
609
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
610
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
611
-  (112.3ms) commit transaction
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
612
631
  Connecting to database specified by database.yml
613
-  (0.1ms) select sqlite_version(*)
614
-  (170.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
615
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
616
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
617
638
  Migrating to CreateTranslations (20110921112044)
618
-  (0.0ms) begin transaction
639
+  (0.1ms) begin transaction
619
640
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
620
641
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
621
-  (145.8ms) commit transaction
622
- Connecting to database specified by database.yml
623
-  (0.1ms) select sqlite_version(*)
624
-  (153.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
625
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
626
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
627
- Migrating to CreateTranslations (20110921112044)
628
-  (0.0ms) begin transaction
629
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
630
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
631
-  (161.2ms) commit transaction
642
+  (113.4ms) commit transaction
632
643
  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"
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"
637
650
  Migrating to CreateTranslations (20110921112044)
638
651
   (0.0ms) begin transaction
639
652
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
640
653
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
641
-  (145.6ms) commit transaction
654
+  (98.2ms) commit transaction
642
655
  Connecting to database specified by database.yml
643
-  (0.1ms) select sqlite_version(*)
644
-  (159.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
645
-  (151.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
646
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
647
662
  Migrating to CreateTranslations (20110921112044)
648
-  (0.0ms) begin transaction
649
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
650
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
651
-  (145.7ms) commit transaction
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
652
667
  Connecting to database specified by database.yml
653
-  (0.1ms) select sqlite_version(*)
654
-  (157.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
655
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
656
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
657
674
  Migrating to CreateTranslations (20110921112044)
658
-  (0.0ms) begin transaction
659
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
660
677
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
661
-  (160.2ms) commit transaction
678
+  (117.1ms) commit transaction
662
679
  Connecting to database specified by database.yml
663
-  (0.1ms) select sqlite_version(*)
664
-  (170.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
665
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
666
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
667
686
  Migrating to CreateTranslations (20110921112044)
668
-  (0.0ms) begin transaction
687
+  (0.1ms) begin transaction
669
688
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
670
689
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
671
-  (152.0ms) commit transaction
690
+  (111.3ms) commit transaction
672
691
  Connecting to database specified by database.yml
673
-  (0.1ms) select sqlite_version(*)
674
-  (178.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
675
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
676
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
677
698
  Migrating to CreateTranslations (20110921112044)
678
-  (0.0ms) begin transaction
679
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
680
701
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
681
-  (160.9ms) commit transaction
702
+  (142.2ms) commit transaction
682
703
  Connecting to database specified by database.yml
683
-  (0.1ms) select sqlite_version(*)
684
-  (160.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
685
-  (133.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
686
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
687
710
  Migrating to CreateTranslations (20110921112044)
688
-  (0.0ms) begin transaction
711
+  (0.1ms) begin transaction
689
712
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
690
713
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
691
-  (144.8ms) commit transaction
714
+  (103.7ms) commit transaction
692
715
  Connecting to database specified by database.yml
693
-  (0.1ms) select sqlite_version(*)
694
-  (150.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
695
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
696
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
697
722
  Migrating to CreateTranslations (20110921112044)
698
-  (0.0ms) begin transaction
699
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
700
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
701
-  (160.9ms) commit transaction
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
702
727
  Connecting to database specified by database.yml
703
-  (0.1ms) select sqlite_version(*)
704
-  (159.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
705
-  (168.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
706
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
707
734
  Migrating to CreateTranslations (20110921112044)
708
-  (0.0ms) begin transaction
709
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
710
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
711
-  (153.9ms) commit transaction
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
712
739
  Connecting to database specified by database.yml
713
-  (0.1ms) select sqlite_version(*)
714
-  (147.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
715
-  (151.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
716
-  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
717
746
  Migrating to CreateTranslations (20110921112044)
718
-  (0.0ms) begin transaction
747
+  (0.1ms) begin transaction
719
748
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
720
749
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
721
-  (162.4ms) commit transaction
750
+  (111.1ms) commit transaction
722
751
  Connecting to database specified by database.yml
723
-  (0.1ms) select sqlite_version(*)
724
-  (219.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
725
-  (150.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
726
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
727
758
  Migrating to CreateTranslations (20110921112044)
728
-  (0.0ms) begin transaction
729
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
730
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
731
-  (153.9ms) commit transaction
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
732
763
  Connecting to database specified by database.yml
733
-  (0.1ms) select sqlite_version(*)
734
-  (165.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
735
-  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
736
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
737
770
  Migrating to CreateTranslations (20110921112044)
738
-  (0.0ms) begin transaction
739
-  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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)
740
773
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
741
-  (112.3ms) commit transaction
774
+  (100.6ms) commit transaction
742
775
  Connecting to database specified by database.yml
743
-  (0.1ms) select sqlite_version(*)
744
-  (160.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
745
-  (158.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
746
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
747
782
  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)
1823
-  (0.1ms) begin 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
1827
- Connecting to database specified by database.yml
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"
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)
1840
-  (0.1ms) begin 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
1844
- Connecting to database specified by database.yml
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"
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)
1857
783
   (0.1ms) begin 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
1861
- Connecting to database specified by database.yml
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"
1868
- Migrating to CreateTranslations (20110921112044)
1869
-  (0.0ms) begin transaction
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)
1871
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
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
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
1878
787
  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"
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"
1885
794
  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
1895
- Connecting to database specified by database.yml
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"
1902
- Migrating to CreateTranslations (20110921112044)
1903
-  (0.0ms) begin 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
1907
- Migrating to RenameTranslationToNamespace (20130422115639)
1908
795
   (0.1ms) begin 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
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
1912
799
  Connecting to database specified by database.yml
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"
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"
1919
806
  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)
1925
807
   (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
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)
1939
-  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
1940
-  (147.6ms) commit transaction
1941
- Migrating to RenameTranslationToNamespace (20130422115639)
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
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
1946
811
  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"
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"
1953
818
  Migrating to CreateTranslations (20110921112044)
1954
819
   (0.0ms) begin transaction
1955
820
   (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1956
821
   (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
822
+  (107.3ms) commit transaction
2099
823
  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"
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"
2106
830
  Migrating to CreateTranslations (20110921112044)
2107
831
   (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
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
2111
835
  Migrating to RenameTranslationToNamespace (20130422115639)
2112
836
   (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
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
2116
840
  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"
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"
2123
847
  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
848
   (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
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)
2160
850
   (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
851
+  (130.0ms) commit transaction
2196
852
  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
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
2201
857
  Connecting to database specified by database.yml
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')
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')
2204
860
   (141.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
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"
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"
2344
864
  Migrating to CreateTranslations (20110921112044)
2345
865
   (0.1ms) begin 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
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
2349
869
  Migrating to RenameTranslationToNamespace (20130422115639)
2350
870
   (0.1ms) begin 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
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