id(); $table->string('name'); $table->string('tag',7)->unique(); $table->boolean('rtl')->default(false); $table->boolean('is_default')->default(false); $table->string('img')->nullable()->default(null); $table->tinyInteger('sort')->default(0); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('xlangs'); } };