Merge pull request #7828 from nupplaphil/task/move_enotify

Remove unnecessary code in "include/enotify"
This commit is contained in:
Hypolite Petovan 2019-11-09 16:48:26 -05:00 committed by GitHub
commit f2c31ef1c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 33 deletions

View file

@ -868,7 +868,6 @@ return [
"comment" => "notifications",
"fields" => [
"id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"],
"hash" => ["type" => "varchar(64)", "not null" => "1", "default" => "", "comment" => ""],
"type" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
"name" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
"url" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => ""],
@ -887,7 +886,6 @@ return [
],
"indexes" => [
"PRIMARY" => ["id"],
"hash_uid" => ["hash", "uid"],
"seen_uid_date" => ["seen", "uid", "date"],
"uid_date" => ["uid", "date"],
"uid_type_link" => ["uid", "type", "link(190)"],