bigIncrements('id'); $table->string('name'); $table->string('guard_name'); $table->text('description')->nullable(); $table->softDeletes(); $table->timestamps(); $table->unique(['name', 'guard_name']); }); } public function down() { $tables = config('acl.tables'); Schema::dropIfExists($tables['permissions']); } }