bp/app/Database/Migrations/2026-01-16-210001_DropOrgan...

70 lines
2.2 KiB
PHP

<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
/**
* Миграция для удаления таблицы подписок на тарифы
*
* Плановая система тарифов заменена на модульную систему подписок.
* Таблица organization_plan_subscriptions больше не используется.
*/
class DropOrganizationPlanSubscriptionsTable extends Migration
{
public function up()
{
$this->forge->dropTable('organization_plan_subscriptions', true);
}
public function down()
{
$this->forge->addField([
'id' => [
'type' => 'INT',
'constraint' => 11,
'unsigned' => true,
'auto_increment' => true,
],
'organization_id' => [
'type' => 'INT',
'constraint' => 11,
'unsigned' => true,
],
'plan_id' => [
'type' => 'INT',
'constraint' => 11,
'unsigned' => true,
],
'status' => [
'type' => 'ENUM',
'constraint' => ['trial', 'active', 'expired', 'cancelled'],
'default' => 'trial',
],
'trial_ends_at' => [
'type' => 'DATETIME',
'null' => true,
],
'expires_at' => [
'type' => 'DATETIME',
'null' => true,
],
'created_at' => [
'type' => 'DATETIME',
'null' => true,
],
'updated_at' => [
'type' => 'DATETIME',
'null' => true,
],
]);
$this->forge->addKey('id', true);
$this->forge->addUniqueKey(['organization_id', 'plan_id']);
$this->forge->addForeignKey('organization_id', 'organizations', 'id', 'CASCADE', 'CASCADE');
$this->forge->addForeignKey('plan_id', 'plans', 'id', 'CASCADE', 'CASCADE');
$this->forge->createTable('organization_plan_subscriptions');
}
}