mirror of
https://github.com/ellite/Wallos.git
synced 2026-05-19 06:17:01 -04:00
9 lines
223 B
PHP
9 lines
223 B
PHP
<?php
|
|
|
|
/** @noinspection PhpUndefinedVariableInspection */
|
|
$db->exec('CREATE TABLE IF NOT EXISTS migrations (
|
|
id INTEGER PRIMARY KEY,
|
|
migration TEXT NOT NULL,
|
|
migrated_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
)');
|