1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @copyright Copyright (c) 2018 Roeland Jago Douma <[email protected]> |
4
|
|
|
* |
5
|
|
|
* @author Roeland Jago Douma <[email protected]> |
6
|
|
|
* |
7
|
|
|
* @license GNU AGPL version 3 or any later version |
8
|
|
|
* |
9
|
|
|
* This program is free software: you can redistribute it and/or modify |
10
|
|
|
* it under the terms of the GNU Affero General Public License as |
11
|
|
|
* published by the Free Software Foundation, either version 3 of the |
12
|
|
|
* License, or (at your option) any later version. |
13
|
|
|
* |
14
|
|
|
* This program is distributed in the hope that it will be useful, |
15
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17
|
|
|
* GNU Affero General Public License for more details. |
18
|
|
|
* |
19
|
|
|
* You should have received a copy of the GNU Affero General Public License |
20
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
21
|
|
|
* |
22
|
|
|
*/ |
23
|
|
|
|
24
|
|
|
namespace OCA\Files_Antivirus\Migration; |
25
|
|
|
|
26
|
|
|
use Closure; |
27
|
|
|
use OCP\DB\ISchemaWrapper; |
28
|
|
|
use OCP\Migration\SimpleMigrationStep; |
29
|
|
|
use OCP\Migration\IOutput; |
30
|
|
|
|
31
|
|
|
class Version10400Date20180929132835 extends SimpleMigrationStep { |
32
|
|
|
/** |
33
|
|
|
* @param IOutput $output |
34
|
|
|
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` |
35
|
|
|
* @param array $options |
36
|
|
|
* @return null|ISchemaWrapper |
37
|
|
|
*/ |
38
|
|
|
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { |
39
|
|
|
/** @var ISchemaWrapper $schema */ |
40
|
|
|
$schema = $schemaClosure(); |
41
|
|
|
|
42
|
|
|
if (!$schema->hasTable('files_antivirus')) { |
43
|
|
|
$table = $schema->createTable('files_antivirus'); |
44
|
|
|
$table->addColumn('fileid', 'integer', [ |
45
|
|
|
'notnull' => true, |
46
|
|
|
'length' => 4, |
47
|
|
|
'unsigned' => true, |
48
|
|
|
]); |
49
|
|
|
$table->addColumn('check_time', 'integer', [ |
50
|
|
|
'notnull' => true, |
51
|
|
|
'length' => 4, |
52
|
|
|
'default' => 0, |
53
|
|
|
'unsigned' => true, |
54
|
|
|
]); |
55
|
|
|
$table->setPrimaryKey(['fileid']); |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
if (!$schema->hasTable('files_avir_status')) { |
59
|
|
|
$table = $schema->createTable('files_avir_status'); |
60
|
|
|
$table->addColumn('id', 'integer', [ |
61
|
|
|
'autoincrement' => true, |
62
|
|
|
'notnull' => true, |
63
|
|
|
'length' => 4, |
64
|
|
|
'unsigned' => true, |
65
|
|
|
]); |
66
|
|
|
$table->addColumn('group_id', 'integer', [ |
67
|
|
|
'notnull' => true, |
68
|
|
|
'length' => 4, |
69
|
|
|
'default' => 0, |
70
|
|
|
'unsigned' => true, |
71
|
|
|
]); |
72
|
|
|
$table->addColumn('status_type', 'integer', [ |
73
|
|
|
'notnull' => true, |
74
|
|
|
'length' => 4, |
75
|
|
|
'default' => 0, |
76
|
|
|
'unsigned' => true, |
77
|
|
|
]); |
78
|
|
|
$table->addColumn('result', 'integer', [ |
79
|
|
|
'notnull' => true, |
80
|
|
|
'length' => 4, |
81
|
|
|
'default' => 0, |
82
|
|
|
]); |
83
|
|
|
$table->addColumn('match', 'string', [ |
84
|
|
|
'notnull' => false, |
85
|
|
|
'length' => 64, |
86
|
|
|
]); |
87
|
|
|
$table->addColumn('description', 'string', [ |
88
|
|
|
'notnull' => false, |
89
|
|
|
'length' => 64, |
90
|
|
|
]); |
91
|
|
|
$table->addColumn('status', 'integer', [ |
92
|
|
|
'notnull' => true, |
93
|
|
|
'length' => 4, |
94
|
|
|
'default' => 0, |
95
|
|
|
]); |
96
|
|
|
$table->setPrimaryKey(['id']); |
97
|
|
|
} |
98
|
|
|
return $schema; |
99
|
|
|
} |
100
|
|
|
} |
101
|
|
|
|