-
Notifications
You must be signed in to change notification settings - Fork 811
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DesignTokens was removed from schema but without migration. Removed everything else unused too. - Tree.presetStyles - InstanceProps - DesignTokens
- Loading branch information
Showing
3 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
packages/prisma-client/prisma/migrations/20230129141714_unused_schema/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,11 @@ | ||
-- DropForeignKey | ||
ALTER TABLE "DesignTokens" DROP CONSTRAINT "DesignTokens_buildId_fkey"; | ||
|
||
-- AlterTable | ||
ALTER TABLE "Tree" DROP COLUMN "presetStyles"; | ||
|
||
-- DropTable | ||
DROP TABLE "DesignTokens"; | ||
|
||
-- DropTable | ||
DROP TABLE "InstanceProps"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
export { Location } from "@prisma/client"; | ||
export type { | ||
InstanceProps, | ||
User, | ||
Breakpoints, | ||
Build, | ||
|