summaryrefslogtreecommitdiff
path: root/FS/FS/Schema.pm
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-09-08 11:25:47 -0700
committerMark Wells <mark@freeside.biz>2016-09-08 11:25:47 -0700
commit4b75f33fd6c2d0fecf8714f588f2d6d200aa4d47 (patch)
tree9edc7d3801373d6202266b95c4f5194183e712b8 /FS/FS/Schema.pm
parent9a9f45c82bc7901cfa94b6e64a2e3e4d5b15abff (diff)
add email delivery of saved searches, #72101
Diffstat (limited to 'FS/FS/Schema.pm')
-rw-r--r--FS/FS/Schema.pm18
1 files changed, 1 insertions, 17 deletions
diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm
index a00e90f..65c1c01 100644
--- a/FS/FS/Schema.pm
+++ b/FS/FS/Schema.pm
@@ -7468,6 +7468,7 @@ sub tables_hashref {
'usernum', 'int', 'NULL', '', '', '',
'searchname', 'varchar', '', $char_d, '', '',
'path', 'varchar', '', $char_d, '', '',
+ 'params', 'text', 'NULL', '', '', '',
'disabled', 'char', 'NULL', 1, '', '',
'freq', 'varchar', 'NULL', 16, '', '',
'last_sent', 'int', 'NULL', '', '', '',
@@ -7483,23 +7484,6 @@ sub tables_hashref {
],
},
- 'saved_search_option' => {
- 'columns' => [
- 'optionnum', 'serial', '', '', '', '',
- 'searchnum', 'int', '', '', '', '',
- 'optionname', 'varchar', '', $char_d, '', '',
- 'optionvalue', 'text', 'NULL', '', '', '',
- ],
- 'primary_key' => 'optionnum',
- 'unique' => [ [ 'searchnum', 'optionname' ] ],
- 'index' => [],
- 'foreign_keys' => [
- { columns => [ 'searchnum' ],
- table => 'saved_search',
- },
- ],
- },
-
# name type nullability length default local
#'new_table' => {