id(); $table->string('name')->unique(); $table->text('title'); $table->timestamps(); }); $sg = new Organization(); $sg->name = 'sg'; $sg->title = 'SpeedGaming'; $sg->save(); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('organizations'); } };