32 lines
699 B
PHP
32 lines
699 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
use Illuminate\Support\Facades\Schema;
|
||
|
|
||
|
return new class extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*/
|
||
|
public function up(): void
|
||
|
{
|
||
|
Schema::create('printers', function (Blueprint $table) {
|
||
|
$table->id();
|
||
|
$table->string('name');
|
||
|
$table->string('printer_type');
|
||
|
$table->json('config')->nullable();
|
||
|
$table->string('driver');
|
||
|
$table->timestamps();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*/
|
||
|
public function down(): void
|
||
|
{
|
||
|
Schema::dropIfExists('printers');
|
||
|
}
|
||
|
};
|