mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
10 lines
170 B
PHP
10 lines
170 B
PHP
<?php
|
|
|
|
use Phinx\Migration\AbstractMigration;
|
|
|
|
class RequestChecksum extends AbstractMigration {
|
|
public function up(): void {}
|
|
|
|
public function down(): void {}
|
|
}
|