mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-13 01:35:47 +00:00
27 lines
494 B
PHP
27 lines
494 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace App\Database\Migrations;
|
||
|
|
||
|
use \CodeIgniter\Database\Migration;
|
||
|
|
||
|
class AddLanguages extends Migration
|
||
|
{
|
||
|
|
||
|
public function up()
|
||
|
{
|
||
|
$this->forge->addField([
|
||
|
'code' => [
|
||
|
'type' => 'VARCHAR',
|
||
|
'constraint' => 2,
|
||
|
],
|
||
|
]);
|
||
|
$this->forge->addKey('code', true);
|
||
|
$this->forge->createTable('languages');
|
||
|
}
|
||
|
|
||
|
public function down()
|
||
|
{
|
||
|
$this->forge->dropTable('languages');
|
||
|
}
|
||
|
}
|