mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 04:51:17 +00:00
59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* Class AddPlatforms Creates platforms 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 Override;
|
|
|
|
class AddPlatforms extends BaseMigration
|
|
{
|
|
#[Override]
|
|
public function up(): void
|
|
{
|
|
$this->forge->addField([
|
|
'slug' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 32,
|
|
],
|
|
'type' => [
|
|
'type' => 'ENUM',
|
|
'constraint' => ['podcasting', 'social', 'funding'],
|
|
],
|
|
'label' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 32,
|
|
],
|
|
'home_url' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 255,
|
|
],
|
|
'submit_url' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 512,
|
|
'null' => true,
|
|
],
|
|
]);
|
|
$this->forge->addField('`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP()');
|
|
$this->forge->addField(
|
|
'`updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP() ON UPDATE CURRENT_TIMESTAMP()',
|
|
);
|
|
$this->forge->addPrimaryKey('slug');
|
|
$this->forge->createTable('platforms');
|
|
}
|
|
|
|
#[Override]
|
|
public function down(): void
|
|
{
|
|
$this->forge->dropTable('platforms');
|
|
}
|
|
}
|