blob: 682ef7d605b567d81be47a226ef4ba83be8ccfb2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* @file
* Install, update and uninstall functions for the pgsql module.
*/
/**
* Implements hook_update_last_removed().
*/
function pgsql_update_last_removed(): int {
return 10101;
}
|