blob: 94b66dc655f95671ff159fbbbb3c955961157984 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
use \Digitigrade\Db\Migrator;
Migrator::getInstance()->register(20250507_175321, function (PDO $db) {
$db->exec(<<<END
CREATE TABLE extension_object (
id bigserial primary key not null,
uri text unique not null,
deleted boolean,
extension text not null,
data jsonb not null
);
END);
});
|