increments('id'); $table->string('name',128); $table->string('slogan',128); $table->string('url',128); $table->unsignedSmallInteger('sort')->default(0); $table->unsignedTinyInteger('status')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('friendship_links'); } }