mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 04:51:17 +00:00

- rename podlibre to adaures - rename castopod-host to castopod - simplify README and redirect to docs site - move INSTALL and UPDATE docs - add new gitlabci pipeline to deploy docs - upgrade node to v16 in Dockerfile
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* Class AddLikes Creates likes table in database
|
|
*
|
|
* @copyright 2021 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\Migration;
|
|
|
|
class AddLikes extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
$this->forge->addField([
|
|
'actor_id' => [
|
|
'type' => 'INT',
|
|
'unsigned' => true,
|
|
],
|
|
'comment_id' => [
|
|
'type' => 'BINARY',
|
|
'constraint' => 16,
|
|
],
|
|
]);
|
|
|
|
$fediverseTablesPrefix = config('Fediverse')
|
|
->tablesPrefix;
|
|
|
|
$this->forge->addField('`created_at` timestamp NOT NULL DEFAULT current_timestamp()');
|
|
$this->forge->addPrimaryKey(['actor_id', 'comment_id']);
|
|
$this->forge->addForeignKey('actor_id', $fediverseTablesPrefix . 'actors', 'id', '', 'CASCADE');
|
|
$this->forge->addForeignKey('comment_id', 'episode_comments', 'id', '', 'CASCADE');
|
|
$this->forge->createTable('likes');
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
$this->forge->dropTable('likes');
|
|
}
|
|
}
|