mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
35 lines
607 B
PHP
35 lines
607 B
PHP
![]() |
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
/**
|
||
|
* Class AddCreatedByToPosts Adds created_by field to posts table in database
|
||
|
*
|
||
|
* @copyright 2020 Ad Aures
|
||
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
||
|
* @link https://castopod.org/
|
||
|
*/
|
||
|
|
||
|
namespace App\Database\Migrations;
|
||
|
|
||
|
use CodeIgniter\Database\BaseConnection;
|
||
|
use CodeIgniter\Database\Migration;
|
||
|
|
||
|
class BaseMigration extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Database Connection instance
|
||
|
*
|
||
|
* @var BaseConnection
|
||
|
*/
|
||
|
protected $db;
|
||
|
|
||
|
public function up(): void
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public function down(): void
|
||
|
{
|
||
|
}
|
||
|
}
|