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'); } };