rails-i18nterface 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,35 +1,37 @@
1
- class RailsI18nterface::Log
2
- attr_accessor :from_locale, :to_locale, :keys
1
+ module RailsI18nterface
2
+ class Log
3
+ attr_accessor :from_locale, :to_locale, :keys
3
4
 
4
- def initialize(from_locale, to_locale, keys)
5
- self.from_locale = from_locale
6
- self.to_locale = to_locale
7
- self.keys = keys
8
- end
5
+ def initialize(from_locale, to_locale, keys)
6
+ self.from_locale = from_locale
7
+ self.to_locale = to_locale
8
+ self.keys = keys
9
+ end
9
10
 
10
- def write_to_file
11
- current_texts = File.exists?(file_path) ? file.read : {}
12
- current_texts.merge!(from_texts)
13
- file.write(current_texts)
14
- end
11
+ def write_to_file
12
+ current_texts = File.exists?(file_path) ? file.read : {}
13
+ current_texts.merge!(from_texts)
14
+ file.write(current_texts)
15
+ end
15
16
 
16
- def read
17
- file.read
18
- end
17
+ def read
18
+ file.read
19
+ end
19
20
 
20
- private
21
- def file
22
- @file ||= RailsI18nterface::File.new(file_path)
23
- end
21
+ private
22
+ def file
23
+ @file ||= Yamlfile.new(file_path)
24
+ end
24
25
 
25
- def from_texts
26
- RailsI18nterface::File.deep_stringify_keys(RailsI18nterface::Keys.to_deep_hash(keys.inject({}) do |hash, key|
27
- hash[key] = I18n.backend.send(:lookup, from_locale, key)
28
- hash
29
- end))
30
- end
26
+ def from_texts
27
+ file.deep_stringify_keys(Keys.to_deep_hash(keys.inject({}) do |hash, key|
28
+ hash[key] = I18n.backend.send(:lookup, from_locale, key)
29
+ hash
30
+ end))
31
+ end
31
32
 
32
- def file_path
33
- File.join(Rails.root, "config", "locales", "log", "from_#{from_locale}_to_#{to_locale}.yml")
33
+ def file_path
34
+ File.join(Rails.root, "config", "locales", "log", "from_#{from_locale}_to_#{to_locale}.yml")
35
+ end
34
36
  end
35
- end
37
+ end
@@ -0,0 +1,65 @@
1
+ module RailsI18nterface
2
+ module Sourcefiles
3
+
4
+ def self.extract_files
5
+ i18n_lookup_pattern = /\b(?:I18n\.t|I18n\.translate|t)(?:\s|\():?(?:'|")(\.?[a-z0-9_\.]+)(?:'|")/
6
+ self.files_to_scan.inject(HashWithIndifferentAccess.new) do |files, file|
7
+ files.merge! self.populate_keys(file, i18n_lookup_pattern)
8
+ end
9
+ files.merge! self.extract_activerecords
10
+ end
11
+
12
+ def self.populate_keys(file, pattern)
13
+ files = self.extract_activerecords
14
+ begin #hack to avoid UTF-8 error
15
+ IO.read(file).scan(pattern).flatten.map(&:to_sym).each do |key|
16
+ path = self.relative_path(file)
17
+ files[key] ||= []
18
+ files[key] << path unless files[key].include?(path)
19
+ end
20
+ rescue Exception => e
21
+ puts e.inspect
22
+ puts e.backtrace
23
+ end
24
+ files
25
+ end
26
+
27
+ def self.relative_path(file)
28
+ Pathname.new(File.expand_path(file)).relative_path_from(Pathname.new(Rails.root)).to_s
29
+ end
30
+
31
+ def self.files_to_scan
32
+ Dir.glob(File.join(Storage.root_dir, "{app,config,lib}", "**","*.{rb,erb,haml,slim,rhtml}")) +
33
+ Dir.glob(File.join(Storage.root_dir, "{public,app/assets}", "javascripts", "**","*.{js,coffee}"))
34
+ end
35
+
36
+ def self.extract_activerecords
37
+ files = {}
38
+ schema = File.join(Storage.root_dir, 'db', 'schema.rb')
39
+ if File.exists? schema
40
+ regex = Regexp.new('\s*create_table\s"([^"]*)[^\n]*\n(.*?)\send\n', Regexp::MULTILINE)
41
+ matchdata = regex.match(File.read(schema))
42
+ while matchdata != nil
43
+ model = matchdata[1]
44
+ files["activerecord.models.#{model}"] = 'db/schema.rb'
45
+ files.merge!(self.extract_attributes(model,matchdata[2]))
46
+ matchdata = regex.match(matchdata.post_match)
47
+ end
48
+ end
49
+ files
50
+ end
51
+
52
+ def self.extract_attributes(model,txt)
53
+ files = {}
54
+ regex = Regexp.new('\s*t\.[-_0-9a-z]*\s*"([^"]*?)"')
55
+ matchdata = regex.match(txt)
56
+ while matchdata != nil
57
+ attribute = matchdata[1]
58
+ files["activerecord.attributes.#{model}.#{attribute}"] = 'db/schema.rb'
59
+ matchdata = regex.match(matchdata.post_match)
60
+ end
61
+ files
62
+ end
63
+
64
+ end
65
+ end
@@ -1,29 +1,31 @@
1
- class RailsI18nterface::Storage
2
- attr_accessor :locale
1
+ module RailsI18nterface
2
+ class Storage
3
+ attr_accessor :locale
3
4
 
4
- def initialize(locale)
5
- self.locale = locale.to_sym
6
- end
5
+ def initialize(locale)
6
+ self.locale = locale.to_sym
7
+ end
7
8
 
8
- def write_to_file
9
- RailsI18nterface::File.new(file_path).write(keys)
10
- end
9
+ def write_to_file
10
+ Yamlfile.new(file_path).write(keys)
11
+ end
11
12
 
12
- def self.file_paths(locale)
13
- Dir.glob(File.join(root_dir, "config", "locales", "**","#{locale}.yml"))
14
- end
13
+ def self.file_paths(locale)
14
+ Dir.glob(File.join(root_dir, "config", "locales", "**","#{locale}.yml"))
15
+ end
15
16
 
16
- def self.root_dir
17
- Rails.root
18
- end
17
+ def self.root_dir
18
+ Rails.root
19
+ end
19
20
 
20
- private
21
+ private
21
22
 
22
- def keys
23
- {locale => I18n.backend.send(:translations)[locale]}
24
- end
23
+ def keys
24
+ {locale => I18n.backend.send(:translations)[locale]}
25
+ end
25
26
 
26
- def file_path
27
- File.join(self.class.root_dir, "config", "locales", "#{locale}.yml")
27
+ def file_path
28
+ File.join(self.class.root_dir, "config", "locales", "#{locale}.yml")
29
+ end
28
30
  end
29
- end
31
+ end
@@ -0,0 +1,28 @@
1
+ module RailsI18nterface
2
+ module Utils
3
+
4
+ def remove_blanks hash
5
+ hash.each { |k, v|
6
+ if !v || v == ''
7
+ hash.delete k
8
+ end
9
+ if v.is_a? Hash
10
+ remove_blanks v
11
+ if v == {}
12
+ hash.delete k
13
+ end
14
+ end
15
+ }
16
+ end
17
+
18
+ def set_nested(hash, key, value)
19
+ if key.length == 1
20
+ hash[key[0]] = value
21
+ else
22
+ k = key.shift
23
+ set_nested(hash[k] ||= {}, key, value)
24
+ end
25
+ end
26
+
27
+ end
28
+ end
@@ -1,3 +1,3 @@
1
1
  module RailsI18nterface
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -0,0 +1,37 @@
1
+ require 'fileutils'
2
+
3
+ module RailsI18nterface
4
+ class Yamlfile
5
+ attr_reader :path
6
+
7
+ def initialize(path)
8
+ @path = path
9
+ end
10
+
11
+ def write(hash)
12
+ FileUtils.mkdir_p File.dirname(@path)
13
+ File.open(@path, "w") do |file|
14
+ file.puts keys_to_yaml(hash)
15
+ end
16
+ end
17
+
18
+ def read
19
+ File.exists?(path) ? YAML::load(IO.read(@path)) : {}
20
+ end
21
+
22
+ # Stringifying keys for prettier YAML
23
+ def deep_stringify_keys(hash)
24
+ hash.inject({}) { |result, (key, value)|
25
+ value = deep_stringify_keys(value) if value.is_a? Hash
26
+ result[(key.to_s rescue key) || key] = value
27
+ result
28
+ }
29
+ end
30
+
31
+ def keys_to_yaml(hash)
32
+ # Using ya2yaml, if available, for UTF8 support
33
+ keys = deep_stringify_keys(hash)
34
+ keys.respond_to?(:ya2yaml) ? keys.ya2yaml(:escape_as_utf8 => true) : keys.to_yaml
35
+ end
36
+ end
37
+ end
@@ -58,7 +58,7 @@ describe RailsI18nterface::TranslateController do
58
58
  it "accepts a filter=changed param" do
59
59
  log = mock(:log)
60
60
  old_translations = {:home => {:page_title => "Skapar ny artikel"}}
61
- log.should_receive(:read).and_return(RailsI18nterface::File.deep_stringify_keys(old_translations))
61
+ log.should_receive(:read).and_return(RailsI18nterface::Yamlfile.new(nil).deep_stringify_keys(old_translations))
62
62
  RailsI18nterface::Log.should_receive(:new).with(:sv, :en, {}).and_return(log)
63
63
  get_page :index, :filter => 'changed', use_route: 'rails-i18nterface'
64
64
  assigns(:total_entries).should == 1
@@ -1,3 +1,17 @@
1
1
  ActiveRecord::Schema.define do
2
2
 
3
+ create_table "article", force: true do |t|
4
+ t.string "title", :null => false
5
+ t.string "body"
6
+ t.datetime "created_at"
7
+ t.datetime "updated_at"
8
+ t.boolean "active", default: true
9
+ end
10
+
11
+ create_table "topics", force: true do |t|
12
+ t.string "title", :null => false
13
+ t.datetime "created_at"
14
+ t.datetime "updated_at"
15
+ end
16
+
3
17
  end
@@ -1,531 +1,738 @@
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
150
+  (86.1ms) commit transaction
151
151
  Connecting to database specified by database.yml
152
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")
153
+  (121.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
154
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
155
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
156
+ Migrating to CreateTranslations (20110921112044)
157
+  (0.1ms) begin transaction
158
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
159
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
160
+  (105.3ms) commit transaction
155
161
  Connecting to database specified by database.yml
156
162
   (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")
163
+  (115.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
164
+  (116.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
165
+  (16.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
166
+ Migrating to CreateTranslations (20110921112044)
167
+  (0.1ms) begin transaction
168
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
169
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
170
+  (126.3ms) commit transaction
159
171
  Connecting to database specified by database.yml
160
172
   (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"
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"
164
176
  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)
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)
167
179
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
168
-  (177.7ms) commit transaction
180
+  (97.8ms) commit transaction
169
181
  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" 
182
+  (0.1ms) select sqlite_version(*)
183
+  (119.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
184
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
185
+  (24.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
175
186
  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
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)
189
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
190
+  (107.5ms) commit transaction
180
191
  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" 
192
+  (0.1ms) select sqlite_version(*)
193
+  (134.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
194
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
195
+  (20.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
186
196
  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
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)
199
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
200
+  (112.0ms) commit transaction
191
201
  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" 
202
+  (0.1ms) select sqlite_version(*)
203
+  (129.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
204
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
205
+  (4.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
197
206
  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
207
+  (0.1ms) begin transaction
208
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
209
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
210
+  (99.7ms) commit transaction
202
211
  Connecting to database specified by database.yml
203
212
   (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"
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"
207
216
  Migrating to CreateTranslations (20110921112044)
208
-  (0.0ms) begin transaction
217
+  (0.1ms) begin transaction
209
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)
210
219
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
211
-  (168.3ms) commit transaction
220
+  (114.8ms) commit transaction
212
221
  Connecting to database specified by database.yml
213
222
   (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"
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"
217
226
  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)
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)
220
229
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
221
-  (137.5ms) commit transaction
230
+  (93.4ms) commit transaction
222
231
  Connecting to database specified by database.yml
223
232
   (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"
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"
227
236
  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)
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)
230
239
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
231
-  (161.7ms) commit transaction
240
+  (97.5ms) commit transaction
232
241
  Connecting to database specified by database.yml
233
242
   (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"
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"
237
246
  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)
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)
240
249
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
241
-  (162.5ms) commit transaction
250
+  (110.4ms) commit transaction
242
251
  Connecting to database specified by database.yml
243
252
   (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"
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"
247
256
  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)
257
+  (0.1ms) begin transaction
258
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
250
259
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
251
-  (145.8ms) commit transaction
260
+  (90.9ms) commit transaction
252
261
  Connecting to database specified by database.yml
253
262
   (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"
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"
257
266
  Migrating to CreateTranslations (20110921112044)
258
267
   (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)
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)
260
269
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
261
-  (120.8ms) commit transaction
270
+  (96.4ms) commit transaction
262
271
  Connecting to database specified by database.yml
263
272
   (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"
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"
267
276
  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)
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)
270
279
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
271
-  (104.2ms) commit transaction
280
+  (124.4ms) commit transaction
272
281
  Connecting to database specified by database.yml
273
282
   (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"
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"
277
286
  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)
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)
280
289
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
281
-  (112.6ms) commit transaction
290
+  (102.1ms) commit transaction
282
291
  Connecting to database specified by database.yml
283
292
   (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"
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"
287
296
  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)
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)
290
299
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
291
-  (145.8ms) commit transaction
300
+  (106.9ms) commit transaction
292
301
  Connecting to database specified by database.yml
293
302
   (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"
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"
297
306
  Migrating to CreateTranslations (20110921112044)
298
-  (0.0ms) begin transaction
307
+  (0.1ms) begin transaction
299
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)
300
309
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
301
-  (152.7ms) commit transaction
310
+  (103.0ms) commit transaction
302
311
  Connecting to database specified by database.yml
303
312
   (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"
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"
307
316
  Migrating to CreateTranslations (20110921112044)
308
317
   (0.0ms) begin transaction
309
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)
310
319
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
311
-  (168.5ms) commit transaction
320
+  (88.1ms) commit transaction
312
321
  Connecting to database specified by database.yml
313
322
   (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"
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"
317
326
  Migrating to CreateTranslations (20110921112044)
318
327
   (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)
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)
320
329
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
321
-  (160.9ms) commit transaction
330
+  (180.6ms) commit transaction
322
331
  Connecting to database specified by database.yml
323
332
   (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"
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"
327
336
  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)
337
+  (0.1ms) begin transaction
338
+  (0.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
330
339
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
331
-  (130.5ms) commit transaction
340
+  (84.7ms) commit transaction
332
341
  Connecting to database specified by database.yml
333
342
   (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"
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"
337
346
  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)
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)
340
349
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
341
-  (161.0ms) commit transaction
350
+  (89.7ms) commit transaction
342
351
  Connecting to database specified by database.yml
343
352
   (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"
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"
347
356
  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)
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)
350
359
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
351
-  (137.4ms) commit transaction
360
+  (96.8ms) commit transaction
352
361
  Connecting to database specified by database.yml
353
362
   (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"
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"
357
366
  Migrating to CreateTranslations (20110921112044)
358
-  (0.0ms) begin transaction
367
+  (0.1ms) begin transaction
359
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)
360
369
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
361
-  (144.3ms) commit transaction
370
+  (102.7ms) commit transaction
362
371
  Connecting to database specified by database.yml
363
372
   (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"
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"
367
376
  Migrating to CreateTranslations (20110921112044)
368
-  (0.0ms) begin transaction
377
+  (0.1ms) begin transaction
369
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)
370
379
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
371
-  (160.1ms) commit transaction
380
+  (97.0ms) commit transaction
372
381
  Connecting to database specified by database.yml
373
382
   (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"
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"
377
386
  Migrating to CreateTranslations (20110921112044)
378
-  (0.0ms) begin transaction
387
+  (0.1ms) begin transaction
379
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)
380
389
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
381
-  (144.6ms) commit transaction
390
+  (100.6ms) commit transaction
382
391
  Connecting to database specified by database.yml
383
-  (0.1ms) select sqlite_version(*)
384
-  (161.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
385
-  (150.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
386
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
387
398
  Migrating to CreateTranslations (20110921112044)
388
399
   (0.0ms) begin transaction
389
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)
390
401
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
391
-  (120.5ms) commit transaction
402
+  (97.1ms) commit transaction
392
403
  Connecting to database specified by database.yml
393
-  (0.1ms) select sqlite_version(*)
394
-  (194.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
395
-  (133.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
396
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
397
422
  Migrating to CreateTranslations (20110921112044)
398
423
   (0.0ms) begin transaction
399
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)
400
425
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
401
-  (145.7ms) commit transaction
426
+  (116.1ms) commit transaction
402
427
  Connecting to database specified by database.yml
403
-  (0.1ms) select sqlite_version(*)
404
-  (160.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
405
-  (133.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
406
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
407
434
  Migrating to CreateTranslations (20110921112044)
408
435
   (0.0ms) begin transaction
409
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)
410
437
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
411
-  (179.1ms) commit transaction
438
+  (115.1ms) commit transaction
412
439
  Connecting to database specified by database.yml
413
-  (0.1ms) select sqlite_version(*)
414
-  (164.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
415
-  (141.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
416
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
440
+  (1.7ms) select sqlite_version(*)
441
+  (136.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
442
+  (89.0ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
443
+  (107.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
444
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
445
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
446
+ Migrating to CreateTranslations (20110921112044)
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
451
+ Connecting to database specified by database.yml
452
+  (1.8ms) select sqlite_version(*)
453
+  (115.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
454
+  (91.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
455
+  (108.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
456
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
457
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
458
+ Migrating to CreateTranslations (20110921112044)
459
+  (0.1ms) begin transaction
460
+  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
461
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
462
+  (108.1ms) commit transaction
463
+ Connecting to database specified by database.yml
464
+  (1.8ms) select sqlite_version(*)
465
+  (130.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
466
+  (116.2ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
467
+  (98.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
468
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
469
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
470
+ Migrating to CreateTranslations (20110921112044)
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
475
+ Connecting to database specified by database.yml
476
+  (1.9ms) select sqlite_version(*)
477
+  (99.2ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
478
+  (82.9ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
479
+  (90.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
480
+  (91.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
481
+  (3.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
417
482
  Migrating to CreateTranslations (20110921112044)
418
483
   (0.0ms) begin transaction
419
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)
420
485
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
421
-  (162.4ms) commit transaction
486
+  (90.5ms) commit transaction
422
487
  Connecting to database specified by database.yml
423
-  (0.1ms) select sqlite_version(*)
424
-  (219.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
425
-  (158.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
426
-  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
427
494
  Migrating to CreateTranslations (20110921112044)
428
495
   (0.0ms) begin transaction
429
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)
430
497
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
431
-  (154.0ms) commit transaction
498
+  (113.1ms) commit transaction
432
499
  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"
500
+  (1.9ms) select sqlite_version(*)
501
+  (174.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
502
+  (127.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
503
+  (99.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
504
+  (99.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
505
+  (4.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
506
+ Migrating to CreateTranslations (20110921112044)
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
511
+ Connecting to database specified by database.yml
512
+  (1.8ms) select sqlite_version(*)
513
+  (101.6ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
514
+  (97.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
515
+  (100.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
516
+  (107.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
517
+  (5.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
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"
437
530
  Migrating to CreateTranslations (20110921112044)
438
531
   (0.0ms) begin transaction
439
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)
440
533
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
441
-  (162.5ms) commit transaction
534
+  (123.1ms) commit transaction
442
535
  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"
536
+  (1.8ms) select sqlite_version(*)
537
+  (122.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
538
+  (90.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
539
+  (90.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
540
+  (99.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
541
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
542
+ Migrating to CreateTranslations (20110921112044)
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)
545
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
546
+  (93.1ms) commit transaction
547
+ Connecting to database specified by database.yml
548
+  (1.8ms) select sqlite_version(*)
549
+  (124.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
550
+  (105.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
551
+  (115.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
552
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
553
+  (4.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
447
554
  Migrating to CreateTranslations (20110921112044)
448
555
   (0.0ms) begin transaction
449
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)
450
557
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
451
-  (154.1ms) commit transaction
558
+  (123.3ms) commit transaction
452
559
  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"
560
+  (1.8ms) select sqlite_version(*)
561
+  (141.1ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
562
+  (125.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
563
+  (107.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
564
+  (108.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
565
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
566
+ Migrating to CreateTranslations (20110921112044)
567
+  (0.1ms) begin transaction
568
+  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
569
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
570
+  (117.1ms) commit transaction
571
+ Connecting to database specified by database.yml
572
+  (1.8ms) select sqlite_version(*)
573
+  (130.7ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
574
+  (97.4ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
575
+  (99.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
576
+  (107.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
577
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
578
+ Migrating to CreateTranslations (20110921112044)
579
+  (0.1ms) begin transaction
580
+  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
581
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
582
+  (125.0ms) commit transaction
583
+ Connecting to database specified by database.yml
584
+  (1.8ms) select sqlite_version(*)
585
+  (121.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
586
+  (107.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
587
+  (117.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
588
+  (99.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
589
+  (3.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
457
590
  Migrating to CreateTranslations (20110921112044)
458
591
   (0.0ms) begin transaction
459
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)
460
593
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
461
-  (204.2ms) commit transaction
594
+  (90.3ms) commit transaction
462
595
  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"
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"
467
602
  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)
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)
470
605
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
471
-  (143.0ms) commit transaction
606
+  (101.7ms) commit transaction
472
607
  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"
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"
477
614
  Migrating to CreateTranslations (20110921112044)
478
-  (0.0ms) begin 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
619
+ Connecting to database specified by database.yml
620
+  (1.9ms) select sqlite_version(*)
621
+  (99.0ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
622
+  (89.1ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
623
+  (99.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
624
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
625
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
626
+ Migrating to CreateTranslations (20110921112044)
627
+  (0.1ms) begin transaction
628
+  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
629
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
630
+  (92.1ms) commit transaction
631
+ Connecting to database specified by database.yml
632
+  (1.8ms) select sqlite_version(*)
633
+  (129.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
634
+  (105.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
635
+  (115.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
636
+  (116.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
637
+  (5.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
638
+ Migrating to CreateTranslations (20110921112044)
639
+  (0.1ms) begin transaction
479
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)
480
641
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
481
-  (197.4ms) commit transaction
642
+  (113.4ms) commit transaction
482
643
  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"
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"
487
650
  Migrating to CreateTranslations (20110921112044)
488
651
   (0.0ms) begin transaction
489
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)
490
653
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
491
-  (137.5ms) commit transaction
654
+  (98.2ms) commit transaction
492
655
  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"
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"
497
662
  Migrating to CreateTranslations (20110921112044)
498
-  (0.0ms) begin transaction
499
-  (0.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
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
667
+ Connecting to database specified by database.yml
668
+  (1.8ms) select sqlite_version(*)
669
+  (168.3ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
670
+  (99.5ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
671
+  (98.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
672
+  (91.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
673
+  (5.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
674
+ Migrating to CreateTranslations (20110921112044)
675
+  (0.1ms) begin transaction
676
+  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
500
677
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
501
-  (145.9ms) commit transaction
678
+  (117.1ms) commit transaction
502
679
  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"
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"
507
686
  Migrating to CreateTranslations (20110921112044)
508
-  (0.0ms) begin transaction
687
+  (0.1ms) begin transaction
509
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)
510
689
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
511
-  (145.8ms) commit transaction
690
+  (111.3ms) commit transaction
512
691
  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"
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"
517
698
  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)
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)
520
701
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
521
-  (151.3ms) commit transaction
702
+  (142.2ms) commit transaction
522
703
  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"
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"
527
710
  Migrating to CreateTranslations (20110921112044)
528
-  (0.0ms) begin transaction
711
+  (0.1ms) begin transaction
529
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)
530
713
   (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
531
-  (129.3ms) commit transaction
714
+  (103.7ms) commit transaction
715
+ Connecting to database specified by database.yml
716
+  (2.0ms) select sqlite_version(*)
717
+  (99.9ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
718
+  (90.6ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
719
+  (115.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
720
+  (91.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
721
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
722
+ Migrating to CreateTranslations (20110921112044)
723
+  (0.1ms) begin transaction
724
+  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
725
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
726
+  (92.0ms) commit transaction
727
+ Connecting to database specified by database.yml
728
+  (1.8ms) select sqlite_version(*)
729
+  (122.5ms) CREATE TABLE "article" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "body" varchar(255), "created_at" datetime, "updated_at" datetime, "active" boolean DEFAULT 't')
730
+  (105.7ms) CREATE TABLE "topics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) NOT NULL, "created_at" datetime, "updated_at" datetime) 
731
+  (115.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
732
+  (116.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
733
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
734
+ Migrating to CreateTranslations (20110921112044)
735
+  (0.1ms) begin transaction
736
+  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar(255), "key" varchar(255), "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
737
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110921112044')
738
+  (108.7ms) commit transaction