champollion 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ed6ab3c55dbb49ed4364fec352129609ccb0215c
4
- data.tar.gz: 945889dac9633c2ee81d3eb403340a03b2d1f402
3
+ metadata.gz: 572cc7ed92e17b2fd516ac06b3053737cfa5634b
4
+ data.tar.gz: 6b47bbf6c43cc86320c86e9aea648458e4c068e2
5
5
  SHA512:
6
- metadata.gz: 5abafde8e9a7e01bd4d8c9b54c90f22f452409b11b3bc73431827156857292d622c57bd4faca098b970b4970ded547f574d3b120657165856f80811e03906b8d
7
- data.tar.gz: cc6489a11726c689b7f8bc2ed8c31861f757cd9f829e8825292cde07e1d4d3f86d924978b062c0caa0306485b1a46a88954f68f4179987cd806f4169d23ff555
6
+ metadata.gz: 3eb882d9c6c02ac65dd96674f533e6c7d9b37333c883182e8cae66078c7cc720186400dc735352669ea31ff62de5c1f656086219f7cac75338c33c98c668a42d
7
+ data.tar.gz: 27070e56c1a63d4263a2f18584cb4bd766beddbf00e36ce6659595492c1e574f22939db3f6c610b078677340b9dcc9c4163e8f26e5ade81f38e171d58282d8ee
@@ -11,5 +11,6 @@
11
11
  * file per style scope.
12
12
  *
13
13
  *= require_tree .
14
+ *= require rails_bootstrap_forms
14
15
  *= require_self
15
16
  */
@@ -8,7 +8,7 @@ module Champollion
8
8
  def index
9
9
  respond_to do |format|
10
10
  format.html { @translations = Translation.all }
11
- format.json { render json: Translation.all_translations.to_json }
11
+ format.json { render json: Translation.all_hash.to_json }
12
12
  end
13
13
  end
14
14
 
@@ -6,9 +6,9 @@ module Champollion
6
6
 
7
7
  validates :locale, presence: true
8
8
  validates :key, presence: true
9
- validates :value, presence: true
10
9
 
11
- def self.all_translations
10
+
11
+ def self.all_hash
12
12
  # create empty hash for locales
13
13
  translation_hash = Hash.new { |k,v| k[v] = {} }
14
14
 
@@ -18,10 +18,14 @@ module Champollion
18
18
  key_scopes = translation.key.split(".")
19
19
 
20
20
  translation_hash[translation.locale.to_sym] ||= {}
21
- translation_hash[translation.locale.to_sym].merge!(key_scopes.reverse.inject(translation.value) {|a,n| { n.to_sym => a}})
21
+ translation_hash[translation.locale.to_sym].deep_merge!(key_scopes.reverse.inject(translation.value) {|a,n| { n.to_sym => a}})
22
22
  end
23
23
 
24
24
  translation_hash
25
25
  end
26
+
27
+ def last_five
28
+ versions.reverse.first(5).reject {|t| t.index == 0 }
29
+ end
26
30
  end
27
31
  end
@@ -1,38 +1,8 @@
1
- <%= form_for(@translation) do |f| %>
2
- <% if @translation.errors.any? %>
3
- <div id="error_explanation">
4
- <h2><%= pluralize(@translation.errors.count, "error") %> prohibited this translation from being saved:</h2>
5
-
6
- <ul>
7
- <% @translation.errors.full_messages.each do |message| %>
8
- <li><%= message %></li>
9
- <% end %>
10
- </ul>
11
- </div>
12
- <% end %>
13
-
14
- <div class="field">
15
- <%= f.label :locale %><br>
16
- <%= f.text_field :locale %>
17
- </div>
18
- <div class="field">
19
- <%= f.label :key %><br>
20
- <%= f.text_field :key %>
21
- </div>
22
- <div class="field">
23
- <%= f.label :value %><br>
24
- <%= f.text_area :value %>
25
- </div>
26
- <div class="field">
27
- <%= f.label :interpolations %><br>
28
- <%= f.text_field :interpolations %>
29
- </div>
30
- <div class="field">
31
- <%= f.label :is_proc %><br>
32
- <%= f.check_box :is_proc %>
33
- </div>
34
-
35
- <div class="actions">
36
- <%= f.submit %>
37
- </div>
1
+ <%= bootstrap_form_for(@translation) do |f| %>
2
+ <%= f.text_field :locale %>
3
+ <%= f.text_field :key %>
4
+ <%= f.text_area :value %>
5
+ <%= f.text_field :interpolations %>
6
+ <%= f.check_box :is_proc %>
7
+ <%= f.submit 'Create' %>
38
8
  <% end %>
@@ -2,5 +2,7 @@
2
2
 
3
3
  <%= render 'form' %>
4
4
 
5
+ <hr/>
6
+
5
7
  <%= link_to 'Show', @tranlation %> |
6
8
  <%= link_to 'Back', translations_path %>
@@ -27,9 +27,9 @@
27
27
  <% end %>
28
28
  </tbody>
29
29
  </table>
30
-
31
- <br>
32
-
33
- <%= link_to 'New Translation', new_translation_path %>
30
+
31
+ <br/>
32
+
33
+ <%= link_to 'New Translation', new_translation_path, class: 'btn btn-primary' %>
34
34
  </div>
35
35
  </div>
@@ -2,4 +2,6 @@
2
2
 
3
3
  <%= render 'form' %>
4
4
 
5
- <%= link_to 'Back', translations_path %>
5
+ <hr/>
6
+
7
+ <%= link_to 'Back', translations_path, class: 'btn btn-primary' %>
@@ -1,5 +1,7 @@
1
1
  <p id="notice"><%= notice %></p>
2
2
 
3
+ <h2>Current Version</h2>
4
+
3
5
  <p>
4
6
  <strong>Locale:</strong>
5
7
  <%= @translation.locale %>
@@ -15,12 +17,41 @@
15
17
  <%= @translation.value %>
16
18
  </p>
17
19
 
18
- <p>
19
- <h2>Versions</h2>
20
+ <hr/>
21
+
22
+ <h2>Last 5 Revisions</h2>
23
+ <table class="table">
24
+ <thead>
25
+ <tr>
26
+ <th>Version</th>
27
+ <th>Event</th>
28
+ <td>Date Modified</th>
29
+ <th>Content</th>
30
+ </tr>
31
+ </thead>
32
+ <tbody>
33
+ <% @translation.last_five.each do |version| %>
34
+ <tr>
35
+ <td><%= version.index %></td>
36
+ <td><%= version.event %></td>
37
+ <td><%= version.created_at %></td>
38
+ <td>
39
+ <% unless version.reify.nil? %>
40
+ <dl class="dl-horizontal">
41
+ <dt>locale</dt>
42
+ <dd><%= version.reify.locale %></dd>
43
+ <dt>key</dt>
44
+ <dd><%= version.reify.key %></dd>
45
+ <dt>value</dt>
46
+ <dd><%= version.reify.value %></dd>
47
+ </dl>
48
+ <% end %>
49
+ </td>
50
+ </tr>
51
+ <% end %>
52
+ </tbody>
53
+ </table>
20
54
  <ul>
21
- <% @translation.versions.each do |version| %>
22
- <li><%= version.event %> | <%= version.index %> @ <%= version.created_at %></li>
23
- <% end %>
24
55
  </ul>
25
56
  </p>
26
57
 
@@ -8,12 +8,12 @@
8
8
  <span class="icon-bar"></span>
9
9
  <span class="icon-bar"></span>
10
10
  </button>
11
- <a class="navbar-brand" href="#">Champollion Admin Panel</a>
11
+ <%= link_to 'Champollion Admin Panel', root_url, class: 'navbar-brand' %>
12
12
  </div>
13
13
 
14
14
  <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-6">
15
15
  <ul class="nav navbar-nav">
16
- <li class="active"><a href="#">Translations</a></li>
16
+ <li class="active"><%= link_to 'Translations', translations_path %>
17
17
  </ul>
18
18
  </div><!-- /.navbar-collapse -->
19
19
  </div>
@@ -1,9 +1,10 @@
1
1
  require "paper_trail"
2
+ require "bootstrap_form"
2
3
 
3
4
  module Champollion
4
5
  class Engine < ::Rails::Engine
5
6
  isolate_namespace Champollion
6
-
7
+
7
8
  config.generators do |g|
8
9
  g.test_framework :rspec, :fixture => false
9
10
  g.fixture_replacement :factory_girl, :dir => 'spec/factories'
@@ -1,3 +1,3 @@
1
1
  module Champollion
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
Binary file
@@ -1,324 +1,39 @@
1
-  (20.6ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
-  (3.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3
-  (0.1ms) select sqlite_version(*)
4
-  (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
-  (0.1ms) SELECT version FROM "schema_migrations"
6
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
7
-  (5.8ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
8
-  (3.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
9
-  (0.1ms) select sqlite_version(*)
10
-  (3.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11
-  (0.1ms) SELECT version FROM "schema_migrations"
12
-  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
13
-  (8.3ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
14
-  (4.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
15
-  (0.1ms) select sqlite_version(*)
16
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17
-  (0.1ms) SELECT version FROM "schema_migrations"
18
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
19
-  (7.6ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
20
-  (4.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
21
-  (0.1ms) select sqlite_version(*)
22
-  (3.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
-  (0.1ms) SELECT version FROM "schema_migrations"
24
-  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
25
-  (6.9ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
26
-  (3.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
27
-  (0.1ms) select sqlite_version(*)
28
-  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
29
-  (0.1ms) SELECT version FROM "schema_migrations"
30
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
31
-  (4.9ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
32
-  (4.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
33
-  (0.1ms) select sqlite_version(*)
34
-  (3.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
35
-  (0.0ms) SELECT version FROM "schema_migrations"
36
-  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
37
-  (7.9ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
38
-  (3.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
39
-  (0.1ms) select sqlite_version(*)
40
-  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
41
-  (0.1ms) SELECT version FROM "schema_migrations"
42
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
43
-  (7.9ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
44
-  (4.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
45
-  (0.1ms) select sqlite_version(*)
46
-  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
47
-  (0.1ms) SELECT version FROM "schema_migrations"
48
-  (2.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
49
-  (7.5ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
50
-  (4.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
51
-  (0.1ms) select sqlite_version(*)
52
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
53
-  (0.1ms) SELECT version FROM "schema_migrations"
54
-  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
55
-  (3.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
56
-  (0.1ms) select sqlite_version(*)
57
-  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
58
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
59
- Migrating to CreateChampollionTranslations (20150421163155)
60
-  (0.0ms) begin transaction
61
-  (0.2ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
62
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150421163155"]]
63
-  (3.4ms) commit transaction
64
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
65
-  (4.7ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
66
-  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
67
-  (0.1ms) select sqlite_version(*)
68
-  (3.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
69
-  (0.1ms) SELECT version FROM "schema_migrations"
70
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150421163155')
71
-  (3.7ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
72
-  (4.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
73
-  (0.1ms) select sqlite_version(*)
74
-  (8.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
75
-  (0.1ms) SELECT version FROM "schema_migrations"
76
-  (7.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150421163155')
77
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
78
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
79
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
80
-  (7.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
81
-  (0.2ms) select sqlite_version(*)
82
-  (40.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
83
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
84
- Migrating to CreateTranslations (20150421183501)
85
-  (0.1ms) begin transaction
86
- DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at /home/razvan/code/champollion/spec/dummy/db/migrate/20150421183501_create_translations.champollion.rb:11)
87
-  (0.1ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime, "updated_at" datetime)
88
- SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150421183501"]]
89
-  (4.7ms) commit transaction
90
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
91
- I18n::Backend::ActiveRecord::Translation Load (0.3ms) SELECT "translations".* FROM "translations" WHERE "translations"."locale" = ? [["locale", "en"]]
92
- I18n::Backend::ActiveRecord::Translation Load (0.2ms) SELECT "translations".* FROM "translations" WHERE "translations"."locale" = ? [["locale", "en"]]
93
-  (7.0ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
94
-  (4.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
95
-  (0.1ms) select sqlite_version(*)
96
-  (2.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
97
-  (0.1ms) SELECT version FROM "schema_migrations"
98
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
99
-  (7.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
100
-  (0.1ms) select sqlite_version(*)
101
-  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
102
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
103
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
104
- Migrating to CreateTranslations (20150504185150)
105
-  (0.0ms) begin transaction
106
-  (0.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
107
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150504185150"]]
108
-  (6.5ms) commit transaction
109
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
110
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
111
- Migrating to CreateVersions (20150504193530)
112
-  (0.0ms) begin transaction
113
-  (0.2ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime) 
114
-  (0.0ms) select sqlite_version(*)
115
-  (0.1ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
116
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150504193530"]]
117
-  (8.1ms) commit transaction
118
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
119
-  (0.1ms)  SELECT sql
120
- FROM sqlite_master
121
- WHERE name='index_versions_on_item_type_and_item_id' AND type='index'
122
- UNION ALL
123
- SELECT sql
124
- FROM sqlite_temp_master
125
- WHERE name='index_versions_on_item_type_and_item_id' AND type='index'
126
- 
127
-  (5.0ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
128
-  (2.8ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
129
-  (0.1ms) select sqlite_version(*)
130
-  (4.3ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
131
-  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
132
-  (3.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
133
-  (0.1ms) SELECT version FROM "schema_migrations"
134
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
135
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
136
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
137
-  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
138
-  (11.7ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
139
-  (3.6ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
140
-  (0.1ms) select sqlite_version(*)
141
-  (3.5ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
142
-  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
143
-  (3.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
144
-  (0.1ms) SELECT version FROM "schema_migrations"
145
-  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
146
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
147
-  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
148
-  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
149
-  (6.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
150
-  (3.2ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
151
-  (0.1ms) select sqlite_version(*)
152
-  (3.2ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
153
-  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
154
-  (11.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
155
-  (0.1ms) SELECT version FROM "schema_migrations"
156
-  (9.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
157
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
158
-  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
159
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
160
-  (9.0ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
161
-  (2.9ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
162
-  (0.1ms) select sqlite_version(*)
163
-  (3.3ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
164
-  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
165
-  (3.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
166
-  (0.1ms) SELECT version FROM "schema_migrations"
167
-  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
168
-  (4.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
169
-  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
170
-  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
171
-  (6.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
172
-  (3.2ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
173
-  (0.1ms) select sqlite_version(*)
174
-  (4.5ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
175
-  (4.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
176
-  (3.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
177
-  (0.1ms) SELECT version FROM "schema_migrations"
178
-  (6.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
179
-  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
180
-  (2.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
181
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
182
-  (8.8ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
183
-  (3.2ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
184
-  (0.1ms) select sqlite_version(*)
185
-  (3.9ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
186
-  (3.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
187
-  (3.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
188
-  (0.1ms) SELECT version FROM "schema_migrations"
189
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
190
-  (5.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
191
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
192
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
193
-  (8.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
194
-  (4.0ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
195
-  (0.1ms) select sqlite_version(*)
196
-  (3.6ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
197
-  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
198
-  (3.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
199
-  (0.1ms) SELECT version FROM "schema_migrations"
200
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
201
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
202
-  (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
203
-  (5.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
204
-  (4.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
205
-  (3.8ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
206
-  (0.1ms) select sqlite_version(*)
207
-  (5.3ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
208
-  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
209
-  (3.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
210
-  (0.1ms) SELECT version FROM "schema_migrations"
211
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
212
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
213
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
214
-  (4.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
215
-  (8.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
216
-  (4.3ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
217
-  (0.1ms) select sqlite_version(*)
218
-  (3.3ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
219
-  (4.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
220
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
221
-  (0.1ms) SELECT version FROM "schema_migrations"
222
-  (5.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
223
-  (5.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
224
-  (10.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
225
-  (6.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
226
-  (4.5ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
227
-  (15.8ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
228
-  (0.1ms) select sqlite_version(*)
229
-  (4.9ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
230
-  (9.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
231
-  (11.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
232
-  (0.2ms) SELECT version FROM "schema_migrations"
233
-  (7.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
234
-  (4.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
235
-  (5.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
236
-  (5.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
237
-  (7.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
238
-  (3.1ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
239
-  (0.1ms) select sqlite_version(*)
240
-  (3.8ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
241
-  (4.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
242
-  (4.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
243
-  (0.1ms) SELECT version FROM "schema_migrations"
244
-  (3.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
245
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
246
-  (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
247
-  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
248
-  (7.8ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
249
-  (3.8ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
250
-  (0.1ms) select sqlite_version(*)
251
-  (3.7ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
252
-  (4.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
253
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
254
-  (0.1ms) SELECT version FROM "schema_migrations"
255
-  (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
256
-  (3.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
257
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
258
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
259
-  (9.2ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
260
-  (3.9ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
261
-  (0.1ms) select sqlite_version(*)
262
-  (4.4ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
263
-  (4.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
264
-  (4.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
265
-  (0.1ms) SELECT version FROM "schema_migrations"
266
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
267
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
268
-  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
269
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
270
-  (8.5ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
271
-  (4.0ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
272
-  (0.1ms) select sqlite_version(*)
273
-  (4.0ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
274
-  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
275
-  (3.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
276
-  (0.1ms) SELECT version FROM "schema_migrations"
277
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
278
-  (3.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
279
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
280
-  (3.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
281
-  (7.6ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
282
-  (5.3ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
283
-  (0.1ms) select sqlite_version(*)
284
-  (3.3ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
285
-  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
286
-  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
287
-  (0.1ms) SELECT version FROM "schema_migrations"
288
-  (2.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
289
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
290
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
291
-  (3.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
292
-  (8.7ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
293
-  (4.1ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
294
-  (0.1ms) select sqlite_version(*)
295
-  (3.9ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
296
-  (2.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
297
-  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
298
-  (0.1ms) SELECT version FROM "schema_migrations"
299
-  (3.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
300
-  (3.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
301
-  (7.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
302
-  (10.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
303
-  (7.3ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
304
-  (3.3ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
305
-  (0.1ms) select sqlite_version(*)
306
-  (5.0ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
307
-  (3.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
308
-  (4.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
309
-  (0.1ms) SELECT version FROM "schema_migrations"
310
-  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
311
-  (4.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
312
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
313
-  (3.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
314
-  (7.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
315
-  (3.9ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
316
-  (0.1ms) select sqlite_version(*)
317
-  (3.9ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
318
-  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
319
-  (4.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
320
-  (0.1ms) SELECT version FROM "schema_migrations"
321
-  (3.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
322
-  (6.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
323
-  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
324
-  (2.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
1
+  (0.9ms) CREATE TABLE "champollion_translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3
+  (0.4ms) select sqlite_version(*)
4
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT version FROM "schema_migrations"
6
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
7
+  (1.0ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
8
+  (0.8ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
9
+  (0.3ms) select sqlite_version(*)
10
+  (0.8ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
11
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
12
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13
+  (0.1ms) SELECT version FROM "schema_migrations"
14
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
15
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
16
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
17
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
18
+  (0.9ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
19
+  (0.7ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
20
+  (0.0ms) select sqlite_version(*)
21
+  (0.7ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
22
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
23
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
24
+  (0.1ms) SELECT version FROM "schema_migrations"
25
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
26
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
27
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
28
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')
29
+  (1.4ms) CREATE TABLE "translations" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "locale" varchar, "key" varchar, "value" text, "interpolations" text, "is_proc" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
30
+  (0.7ms) CREATE TABLE "versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "created_at" datetime)
31
+  (0.1ms) select sqlite_version(*)
32
+  (0.8ms) CREATE INDEX "index_versions_on_item_type_and_item_id" ON "versions" ("item_type", "item_id")
33
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
34
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
35
+  (0.1ms) SELECT version FROM "schema_migrations"
36
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193530')
37
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504185150')
38
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150417194342')
39
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150504193440')