/* Warnings: - A unique constraint covering the columns `[name]` on the table `categories` will be added. If there are existing duplicate values, this will fail. - A unique constraint covering the columns `[name]` on the table `rooms` will be added. If there are existing duplicate values, this will fail. - A unique constraint covering the columns `[name]` on the table `stations` will be added. If there are existing duplicate values, this will fail. */ -- CreateIndex CREATE UNIQUE INDEX "categories_name_key" ON "categories"("name"); -- CreateIndex CREATE UNIQUE INDEX "rooms_name_key" ON "rooms"("name"); -- CreateIndex CREATE UNIQUE INDEX "stations_name_key" ON "stations"("name");