-- DropIndex DROP INDEX "item_gist_path_index"; -- CreateTable CREATE TABLE "Vote" ( "id" SERIAL NOT NULL, "created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updated_at" TIMESTAMP(3) NOT NULL, "sats" INTEGER NOT NULL, "itemId" INTEGER NOT NULL, "userId" INTEGER NOT NULL, PRIMARY KEY ("id") ); -- CreateIndex CREATE INDEX "Vote.itemId_index" ON "Vote"("itemId"); -- CreateIndex CREATE INDEX "Vote.userId_index" ON "Vote"("userId"); -- AddForeignKey ALTER TABLE "Vote" ADD FOREIGN KEY ("itemId") REFERENCES "Item"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "Vote" ADD FOREIGN KEY ("userId") REFERENCES "users"("id") ON DELETE CASCADE ON UPDATE CASCADE;