aboutsummaryrefslogtreecommitdiffhomepage
path: root/migrations/20250118_164240_create_global_setting.php
blob: af51fb954cccc272dfd0391da0d51844038380d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

use \Digitigrade\Db\Migrator;

Migrator::getInstance()->register(20250118_164240, function (PDO $db) {
    // global settings table
    $db->exec(<<<END
    CREATE TABLE global_setting (
        name text primary key,
        value text not null
    );
    END);
});