castopod/modules/Fediverse/Database/Migrations/2018-01-01-120000_add_blocked_domains.php
Yassine Doghri fa5b5f51a4 docs(init): create documentation website using vitepress
- 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
2022-02-19 16:06:11 +00:00

39 lines
933 B
PHP

<?php
declare(strict_types=1);
/**
* Class AddBlockedDomains Creates blocked_domains table in database
*
* @copyright 2021 Ad Aures
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
*/
namespace Modules\Fediverse\Database\Migrations;
use CodeIgniter\Database\Migration;
class AddBlockedDomains extends Migration
{
public function up(): void
{
$this->forge->addField([
'name' => [
'type' => 'VARCHAR',
'constraint' => 255,
],
'created_at' => [
'type' => 'DATETIME',
],
]);
$this->forge->addPrimaryKey('name');
$this->forge->createTable(config('Fediverse')->tablesPrefix . 'blocked_domains');
}
public function down(): void
{
$this->forge->dropTable(config('Fediverse')->tablesPrefix . 'blocked_domains');
}
}