-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Scout telegram user * ci: version bump to 0.93.2-rc-feat-sg-telegra.0 * Minimal info for telegram * ci: version bump to 0.93.2-rc-feat-sg-telegra.1 --------- Co-authored-by: Automated Version Bump <[email protected]>
- Loading branch information
1 parent
9106321
commit 92accc8
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/prisma/migrations/20241106160230_scout_telegram_id/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* | ||
Warnings: | ||
- A unique constraint covering the columns `[telegramId]` on the table `Scout` will be added. If there are existing duplicate values, this will fail. | ||
*/ | ||
-- AlterTable | ||
ALTER TABLE "Scout" ADD COLUMN "telegramId" INTEGER; | ||
|
||
-- CreateIndex | ||
CREATE UNIQUE INDEX "Scout_telegramId_key" ON "Scout"("telegramId"); | ||
|
||
-- CreateIndex | ||
CREATE INDEX "Scout_telegramId_idx" ON "Scout"("telegramId"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters