Skip to content

Commit

Permalink
chore: update @mapeo/schema to get new features
Browse files Browse the repository at this point in the history
This updates `@mapeo/schema` to `3.0.0-next.14`, which pulls in two
significant features:

1. New `Translation` schema
2. New `deviceType` property on `DeviceInfo`

Neither of these are useful right now but will unblock upcoming changes.
  • Loading branch information
EvanHahn committed Feb 14, 2024
1 parent 7832935 commit 80cd99d
Show file tree
Hide file tree
Showing 7 changed files with 1,048 additions and 6 deletions.
19 changes: 19 additions & 0 deletions drizzle/project/0001_curved_korvac.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
CREATE TABLE `translation` (
`docId` text PRIMARY KEY NOT NULL,
`versionId` text NOT NULL,
`schemaName` text NOT NULL,
`createdAt` text NOT NULL,
`createdBy` text NOT NULL,
`updatedAt` text NOT NULL,
`links` text NOT NULL,
`deleted` integer NOT NULL,
`schemaNameRef` text NOT NULL,
`docIdRef` text NOT NULL,
`fieldRef` text NOT NULL,
`languageCode` text NOT NULL,
`regionCode` text NOT NULL,
`message` text NOT NULL,
`forks` text NOT NULL
);
--> statement-breakpoint
ALTER TABLE deviceInfo ADD `deviceType` text;
Loading

0 comments on commit 80cd99d

Please sign in to comment.