add new dates in form

This commit is contained in:
amazuecos
2025-04-15 01:30:46 +02:00
parent 14c5cf493c
commit ab99baaa81
11 changed files with 183 additions and 99 deletions

View File

@ -20,6 +20,22 @@ class UpdateDateFieldsOrdenTrabajoDates extends Migration
"type" => "DATE",
"null" => true,
],
"retractilado_at" => [
"type" => "DATE",
"null" => true,
],
"retractilado5_at" => [
"type" => "DATE",
"null" => true,
],
"prototipo_at" => [
"type" => "DATE",
"null" => true,
],
"marcapaginas_at" => [
"type" => "DATE",
"null" => true,
],
];
protected array $USERS = [
"cosido_user_id" => [
@ -40,6 +56,30 @@ class UpdateDateFieldsOrdenTrabajoDates extends Migration
"constraint" => 10,
"null" => true,
],
"retractilado_user_id" => [
"type" => "INT",
"unsigned" => true,
"constraint" => 10,
"null" => true,
],
"retractilado5_user_id" => [
"type" => "INT",
"unsigned" => true,
"constraint" => 10,
"null" => true,
],
"prototipo_user_id" => [
"type" => "INT",
"unsigned" => true,
"constraint" => 10,
"null" => true,
],
"marcapaginas_user_id" => [
"type" => "INT",
"unsigned" => true,
"constraint" => 10,
"null" => true,
],
];
public function up()