realizada la lista

This commit is contained in:
2025-02-24 20:59:21 +01:00
parent c1cae0fcf7
commit 4601b15abe
12 changed files with 226 additions and 27 deletions

View File

@ -17,11 +17,6 @@ class CreateServiciosAcabadoTable extends Migration
'unsigned' => true,
'auto_increment' => true,
],
'tarifa_id' => [
'type' => 'INT',
'constraint' => 11,
'unsigned' => true,
],
'nombre' =>[
'type' => 'VARCHAR',
'constraint' => 100,
@ -31,6 +26,18 @@ class CreateServiciosAcabadoTable extends Migration
'type' => 'TEXT',
'null' => true,
],
'acabado_cubierta' => [
'type' => 'BOOLEAN',
'default' => false,
],
'acabado_sobrecubierta' => [
'type' => 'BOOLEAN',
'default' => false,
],
'mostrar_en_presupuesto_cliente' => [
'type' => 'BOOLEAN',
'default' => true,
],
'user_updated_id' => [
'type' => 'INT',
'constraint' => 11,