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
78 lines
2.2 KiB
PHP
78 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* Class Persons Creates persons 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\Migration;
|
|
|
|
class AddPersons extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
$this->forge->addField([
|
|
'id' => [
|
|
'type' => 'INT',
|
|
'unsigned' => true,
|
|
'auto_increment' => true,
|
|
],
|
|
'full_name' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 192,
|
|
'comment' => 'This is the full name or alias of the person.',
|
|
],
|
|
'unique_name' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 192,
|
|
'comment' => 'This is the slug name or alias of the person.',
|
|
'unique' => true,
|
|
],
|
|
'information_url' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 512,
|
|
'comment' =>
|
|
'The url to a relevant resource of information about the person, such as a homepage or third-party profile platform.',
|
|
'null' => true,
|
|
],
|
|
'avatar_id' => [
|
|
'type' => 'INT',
|
|
'unsigned' => true,
|
|
'null' => true,
|
|
],
|
|
'created_by' => [
|
|
'type' => 'INT',
|
|
'unsigned' => true,
|
|
],
|
|
'updated_by' => [
|
|
'type' => 'INT',
|
|
'unsigned' => true,
|
|
],
|
|
'created_at' => [
|
|
'type' => 'DATETIME',
|
|
],
|
|
'updated_at' => [
|
|
'type' => 'DATETIME',
|
|
],
|
|
]);
|
|
|
|
$this->forge->addKey('id', true);
|
|
$this->forge->addForeignKey('avatar_id', 'media', 'id', '', 'SET NULL');
|
|
$this->forge->addForeignKey('created_by', 'users', 'id');
|
|
$this->forge->addForeignKey('updated_by', 'users', 'id');
|
|
$this->forge->createTable('persons');
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
$this->forge->dropTable('persons');
|
|
}
|
|
}
|