etiqueta impresora

This commit is contained in:
amazuecos
2025-04-02 08:16:58 +02:00
parent bb78f9cbd8
commit d42f46d280
8 changed files with 343 additions and 1 deletions

View File

@ -0,0 +1,80 @@
<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
use CodeIgniter\Database\RawSql;
class ImpresoraEtiquetasTable extends Migration
{
protected array $COLUMNS = [
'id' => [
'type' => 'INT',
'unsigned' => true,
'auto_increment' => true,
],
'name' => [
'type' => 'VARCHAR',
'constraint' => 255
],
'tipo' => [
'type' => 'INT',
'unsigned' => true,
'default' => 1,
],
'ip' => [
'type' => 'VARCHAR',
'constraint' => 255
],
'port' => [
'type' => 'INT',
'unsigned' => true,
],
'user' => [
'type' => 'VARCHAR',
'constraint' => 255,
'null' => true,
],
'pass' => [
'type' => 'VARCHAR',
'constraint' => 255,
'null' => true,
],
'description' => [
'type' => 'LONGTEXT',
'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("etiqueta_impresoras");
}
public function down()
{
$this->forge->dropTable("etiqueta_impresoras");
}
}