id(); $table->bigInteger('user_id')->unsigned(); $table->string('title'); $table->text('thumbnail'); $table->text('content'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('tips'); } }