Newer
Older

Yassine Doghri
committed

Yassine Doghri
committed
declare(strict_types=1);
* Class AddCategories Creates categories 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;
class AddCategories extends BaseMigration

Yassine Doghri
committed
public function up(): void
{
$this->forge->addField([
'type' => 'INT',
'type' => 'INT',
'null' => true,
'type' => 'VARCHAR',
'constraint' => 32,
'type' => 'VARCHAR',
'constraint' => 32,
],
'google_category' => [
'type' => 'VARCHAR',
'constraint' => 32,
$this->forge->addPrimaryKey('id');
$this->forge->addUniqueKey('code');
$this->forge->addForeignKey('parent_id', 'categories', 'id');
$this->forge->createTable('categories');
}

Yassine Doghri
committed
public function down(): void
{
$this->forge->dropTable('categories');
}
}