create('post', function (Blueprint $table) { $table->increments('id'); $table->string('content', 3000)->nullable(false); $table->integer('user_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public static function down(): void { Manager::schema()->dropIfExists('user'); } }