ultimatepos/database/migrations/2018_01_27_184322_create_printers_table.php

45 lines
1.2 KiB
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.
*
* @return void
*/
public function up()
{
Schema::create('printers', function (Blueprint $table) {
$table->increments('id');
$table->integer('business_id')->unsigned();
$table->foreign('business_id')->references('id')->on('business')->onDelete('cascade');
$table->string('name');
$table->enum('connection_type', ['network', 'windows', 'linux']);
$table->enum('capability_profile', ['default', 'simple', 'SP2000', 'TEP-200M', 'P822D'])->default('default');
$table->string('char_per_line')->nullable();
$table->string('ip_address')->nullable();
$table->string('port')->nullable();
$table->string('path')->nullable();
$table->integer('created_by')->unsigned();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('printers');
}
};