mallet 0.1.9 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/active_record/templates/migration.rb +18 -5
- data/lib/mallet/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a5dc00020489cf2b766f35af37de09420b0a4b7
|
4
|
+
data.tar.gz: f9c35e1da12c6e04dc1ca1d917e8dfad89965266
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa36110f1d4e22e48c85e6cdd8b8c42f5f6cf2dd3fdb43cba41d4969812b010408fdd1f255ad5fba4bce8c16de20431cbd6401621e5af112ce119d7974711265
|
7
|
+
data.tar.gz: 56865d5cb1f9b1fbf591dd5021b047fd359b31a669df400e1ed1b600d717c56bf6e8c2aa4a895f68a41d9aa8415e9e243ea6d74096e620ae32558710ea5b7687
|
@@ -7,16 +7,29 @@ class CreateMalletTables < ActiveRecord::Migration
|
|
7
7
|
t.string "malletable_id"
|
8
8
|
t.string "workflow_state"
|
9
9
|
t.string "message_id"
|
10
|
+
t.string "to"
|
11
|
+
t.string "cc"
|
12
|
+
t.string "bcc"
|
13
|
+
t.string "from"
|
14
|
+
t.string "reply_to"
|
15
|
+
t.string "subject"
|
10
16
|
t.text "data"
|
11
17
|
t.float "wait_time"
|
12
18
|
t.date "send_date"
|
13
19
|
t.timestamps
|
14
20
|
end
|
15
21
|
|
16
|
-
add_index "mallet_mails", ["
|
17
|
-
add_index "mallet_mails", ["
|
18
|
-
add_index "mallet_mails", ["
|
19
|
-
|
22
|
+
add_index "mallet_mails", ["bcc"]
|
23
|
+
add_index "mallet_mails", ["cc"]
|
24
|
+
add_index "mallet_mails", ["definition"]
|
25
|
+
add_index "mallet_mails", ["from"]
|
26
|
+
add_index "mallet_mails", ["malletable_type", "malletable_id"]
|
27
|
+
add_index "mallet_mails", ["message_id"]
|
28
|
+
add_index "mallet_mails", ["reply_to"]
|
29
|
+
add_index "mallet_mails", ["send_date"]
|
30
|
+
add_index "mallet_mails", ["subject"]
|
31
|
+
add_index "mallet_mails", ["to"]
|
32
|
+
|
20
33
|
end
|
21
34
|
|
22
|
-
end
|
35
|
+
end
|
data/lib/mallet/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mallet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Douglas Anderson
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2017-05-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|