blob: d57fb61dec1103c0188da0b5bf974e1ade07850a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/**
* @package contact
*/
global $gBitInstaller;
$gBitInstaller->registerPackageUpgrade(
[
'package' => 'contact',
'version' => '5.0.2',
'description' => 'Drop old contact_xref, contact_xref_source and contact_xref_type tables now that data is in liberty_xref tables.',
],
[
[ 'DATADICT' => [
[ 'DROPTABLE' => [ 'contact_xref', 'contact_xref_source', 'contact_xref_type' ] ],
[ 'DROPSEQUENCE' => [ 'contact_xref_seq' ] ],
]],
]
);
|