blob: c97ec6f2eef2e779523091f01a63c9d93c906fc8 (
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' ] ] ],
]],
]
);
|