vmail 1.7.5 → 1.7.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.
Files changed (3) hide show
  1. data/db/create.sql +2 -0
  2. data/lib/vmail/version.rb +1 -1
  3. metadata +1 -1
@@ -18,6 +18,8 @@ create table if not exists labelings (
18
18
  message_id text,
19
19
  uid integer
20
20
  );
21
+ CREATE INDEX idx_labelings ON labelings(message_id, label_id);
22
+
21
23
  create table if not exists labels (
22
24
  label_id integer PRIMARY KEY,
23
25
  name text UNIQUE
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = '1.7.5'
2
+ VERSION = '1.7.6'
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: vmail
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.7.5
5
+ version: 1.7.6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi