vmail 1.8.6 → 1.8.7

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.
@@ -11,19 +11,19 @@ if DB[:version].count == 0
11
11
  DB[:version].insert(:vmail_version => Vmail::VERSION)
12
12
  end
13
13
 
14
- class Vmail::Message < Sequel::Model
14
+ class Vmail::Message < Sequel::Model(:messages)
15
15
  set_primary_key :message_id
16
16
  one_to_many :labelings
17
17
  many_to_many :labels, :join_table => 'labelings'
18
18
  end
19
19
 
20
- class Vmail::Label < Sequel::Model
20
+ class Vmail::Label < Sequel::Model(:labels)
21
21
  set_primary_key :label_id
22
22
  one_to_many :labelings
23
23
  many_to_many :messages, :join_table => 'labelings'
24
24
  end
25
25
 
26
- class Vmail::Labeling < Sequel::Model
26
+ class Vmail::Labeling < Sequel::Model(:labelings)
27
27
  end
28
28
 
29
29
 
@@ -1,3 +1,3 @@
1
1
  module Vmail
2
- VERSION = '1.8.6'
2
+ VERSION = '1.8.7'
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.8.6
5
+ version: 1.8.7
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Choi