We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc4eba6 commit 5a5e7edCopy full SHA for 5a5e7ed
5 files changed
src/drizzle/0021_member-password-disallow-null-on-member-id.sql
@@ -0,0 +1,3 @@
1
+DROP VIEW "public"."members_view";--> statement-breakpoint
2
+ALTER TABLE "member_password" ALTER COLUMN "member_id" SET NOT NULL;--> statement-breakpoint
3
+CREATE VIEW "public"."members_view" AS (select "id", "name", "email", "extra", "type", "created_at", "updated_at", "user_agreements_date", "enable_save_actions", "last_authenticated_at", "is_validated", "marketing_emails_subscribed_at" from "account" where ("account"."type" = 'individual' and "account"."email" is not null));
0 commit comments