id(); $table->string('name')->unique()->length(100); $table->tinyInteger('status')->default(0)->comment('0 : Not Active, 1 : Active'); $table->bigInteger('created_by')->nullable()->length(20); $table->bigInteger('updated_by')->nullable()->length(20); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('jatis'); } }