mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
feat: add timestamp fields
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
namespace App\Database\Migrations;
|
||||
|
||||
use CodeIgniter\Database\Migration;
|
||||
use CodeIgniter\Database\RawSql;
|
||||
|
||||
class ChatDepartments extends Migration
|
||||
{
|
||||
@ -17,10 +18,29 @@ class ChatDepartments extends Migration
|
||||
"constraint" => '45',
|
||||
"unique" => true,
|
||||
],
|
||||
|
||||
];
|
||||
public function up()
|
||||
{
|
||||
$this->forge->addField($this->COLUMNS);
|
||||
$currenttime = new RawSql("CURRENT_TIMESTAMP");
|
||||
$this->forge->addField([
|
||||
"created_at" => [
|
||||
"type" => "TIMESTAMP",
|
||||
"default" => $currenttime,
|
||||
|
||||
],
|
||||
"updated_at" => [
|
||||
"type" => "TIMESTAMP",
|
||||
"nullable" => true,
|
||||
|
||||
],
|
||||
"deleted_at" => [
|
||||
"type" => "TIMESTAMP",
|
||||
"nullable" => true,
|
||||
|
||||
],
|
||||
]);
|
||||
$this->forge->createTable("chat_departments");
|
||||
$this->forge->addPrimaryKey('id');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user