create("key_words", function (Blueprint $table){ $table->id(); $table->string('keyWord'); $table->foreignId("fkGroup")->constrained("groups"); $table->timestamps(); });