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
41 lines
910 B
PHP
41 lines
910 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* Class AddLanguages Creates languages 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 AddLanguages extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
$this->forge->addField([
|
|
'code' => [
|
|
'type' => 'VARCHAR',
|
|
'comment' => 'ISO 639-1 language code',
|
|
'constraint' => 2,
|
|
],
|
|
'native_name' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 128,
|
|
],
|
|
]);
|
|
$this->forge->addPrimaryKey('code');
|
|
$this->forge->createTable('languages');
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
$this->forge->dropTable('languages');
|
|
}
|
|
}
|