bigIncrements('id'); $table->string('name'); $table->string('guard_name'); $table->string('name_fa')->nullable(); $table->text('description')->nullable(); $table->timestamps(); $table->text('back_end_implementation_document')->nullable(); $table->text('fron_end_implementation_document')->nullable(); $table->string('type', 100)->nullable(); $table->string('type_fa', 119)->nullable(); $table->boolean('need_province')->nullable(); $table->boolean('need_edare_shahri')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('permissions'); } };