-
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.
added comment textbox and tree rendering component
- Loading branch information
Showing
19 changed files
with
4,241 additions
and
1,664 deletions.
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
35 changes: 35 additions & 0 deletions
35
prisma/migrations/20240512050537_update_comment_content_max_length/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,35 @@ | ||
/* | ||
Warnings: | ||
- You are about to drop the column `searchable` on the `Artist` table. All the data in the column will be lost. | ||
- You are about to drop the column `searchable` on the `Post` table. All the data in the column will be lost. | ||
- You are about to drop the column `searchable` on the `Tag` table. All the data in the column will be lost. | ||
- You are about to drop the column `searchable` on the `User` table. All the data in the column will be lost. | ||
*/ | ||
-- DropIndex | ||
DROP INDEX "artist_searchable_idx"; | ||
|
||
-- DropIndex | ||
DROP INDEX "post_searchable_idx"; | ||
|
||
-- DropIndex | ||
DROP INDEX "tag_searchable_idx"; | ||
|
||
-- DropIndex | ||
DROP INDEX "user_searchable_idx"; | ||
|
||
-- AlterTable | ||
ALTER TABLE "Artist" DROP COLUMN "searchable"; | ||
|
||
-- AlterTable | ||
ALTER TABLE "Comment" ALTER COLUMN "content" SET DATA TYPE VARCHAR(1500); | ||
|
||
-- AlterTable | ||
ALTER TABLE "Post" DROP COLUMN "searchable"; | ||
|
||
-- AlterTable | ||
ALTER TABLE "Tag" DROP COLUMN "searchable"; | ||
|
||
-- AlterTable | ||
ALTER TABLE "User" DROP COLUMN "searchable"; |
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
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
Oops, something went wrong.