-
Notifications
You must be signed in to change notification settings - Fork 455
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix]: FAQ smoother animation and better code quality
- Loading branch information
1 parent
1587bb5
commit 81c28e0
Showing
2 changed files
with
52 additions
and
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
Warnings: | ||
- You are about to drop the column `location` on the `Job` table. All the data in the column will be lost. | ||
- Added the required column `address` to the `Job` table without a default value. This is not possible if the table is not empty. | ||
- Added the required column `city` to the `Job` table without a default value. This is not possible if the table is not empty. | ||
*/ | ||
-- AlterTable | ||
ALTER TABLE "Job" DROP COLUMN "location", | ||
ADD COLUMN "address" TEXT NOT NULL, | ||
ADD COLUMN "city" TEXT NOT NULL; | ||
|
||
-- DropEnum | ||
DROP TYPE "JobLocations"; |
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