You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add migration for card sharing fields (slug, description, qrEnabled,
viewCount, visibility) and the CardVisibility enum, plus supporting
indexes; include prior card/auth migrations missing from history.
- Update seed for the new schema: card slugs and a nested UserIdentity
in place of the removed provider/providerId fields.
- Resolve lint in cardService (no-shadow rename, explicit return types).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
- You are about to drop the column `provider` on the `users` table. All the data in the column will be lost.
5
+
- You are about to drop the column `provider_id` on the `users` table. All the data in the column will be lost.
6
+
- A unique constraint covering the columns `[phone_number]` on the table `users` will be added. If there are existing duplicate values, this will fail.
7
+
8
+
*/
9
+
-- CreateEnum
10
+
CREATETYPE "Role" AS ENUM ('SUPERADMIN', 'ADMIN', 'USER');
0 commit comments