Skip to content

Commit

Permalink
remove CRLF akka#710
Browse files Browse the repository at this point in the history
  • Loading branch information
Roiocam committed Aug 23, 2023
1 parent 7c7d3fd commit 1e04cbe
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ CREATE TABLE IF NOT EXISTS "event_tag" (
FOREIGN KEY("event_id")
REFERENCES "event_journal"("ordering")
ON DELETE CASCADE
);
);
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ CREATE TABLE IF NOT EXISTS event_tag (
FOREIGN KEY (event_id)
REFERENCES event_journal(ordering)
ON DELETE CASCADE
)
)
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ CREATE TABLE EVENT_TAG (
PRIMARY KEY(EVENT_ID, TAG),
FOREIGN KEY(EVENT_ID) REFERENCES EVENT_JOURNAL(ORDERING)
ON DELETE CASCADE
)
)
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ CREATE TABLE IF NOT EXISTS public.event_tag(
FOREIGN KEY(event_id)
REFERENCES event_journal(ordering)
ON DELETE CASCADE
);
);
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ CREATE TABLE event_tag (
foreign key("event_id")
references "dbo"."event_journal"("ordering")
on delete CASCADE
);
);

0 comments on commit 1e04cbe

Please sign in to comment.