schema->create('{{ table }}', function (Blueprint $table) { $table->id(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { \kernel\App::$db->schema->dropIfExists('{{ table }}'); } };