[ 'type' => 'INT', 'unsigned' => true, 'auto_increment' => true, ], 'name' => [ 'type' => 'VARCHAR', 'constraint' => 255, ], 'description' => [ 'type' => 'LONGTEXT', 'default' => null, 'null' => 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', 'null' => true, ], 'deleted_at' => [ 'type' => 'TIMESTAMP', 'null' => true, ], ]); $this->forge->addPrimaryKey('id'); $this->forge->createTable("maquina_tareas"); } public function down() { $this->forge->dropTable("maquina_tareas"); } }