Skip to content

Commit

Permalink
Set guest_invitations.invitation_id not null (#4812)
Browse files Browse the repository at this point in the history
  • Loading branch information
aerosol authored Nov 13, 2024
1 parent 74dcd3d commit 86b3bf4
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
defmodule Plausible.Repo.Migrations.InvitationIdNotNullAtGuestInvitations do
use Ecto.Migration

def change do
alter table(:guest_invitations) do
modify :invitation_id, :string, null: false
end
end
end

0 comments on commit 86b3bf4

Please sign in to comment.