mirror of
https://github.com/ellite/Wallos.git
synced 2025-12-23 23:18:07 -05:00
8 lines
171 B
PHP
8 lines
171 B
PHP
<?php
|
|
|
|
$db->exec('CREATE TABLE IF NOT EXISTS migrations (
|
|
id INTEGER PRIMARY KEY,
|
|
migration TEXT NOT NULL,
|
|
migrated_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
)');
|