Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
louisroyer committed Jul 16, 2024
1 parent aeb98f7 commit f7ddc7b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .sqlfluff
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
dialect = postgres
max_line_length = 140

[sqlfluff:rules:references.special_chars]
ignore_words = uuid-ossp

[sqlfluff:rules]
# old configuration, to be compatible with Debian stable
max_line_length = 140
Expand All @@ -11,4 +14,5 @@ indent_unit = tab
indent_unit = tab

[sqlfluff:rules:L057]
# old configuration, to be compatible with Debian stable
ignore_words = uuid-ossp
2 changes: 1 addition & 1 deletion internal/database/database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ CREATE TABLE IF NOT EXISTS uplink_gtp4 (
uplink_teid INTEGER,
srgw_ip INET,
gnb_ip INET,
action_uuid UUID REFERENCES rule(uuid) ON DELETE CASCADE,
action_uuid UUID REFERENCES rule (uuid) ON DELETE CASCADE,
PRIMARY KEY (uplink_teid, srgw_ip, gnb_ip)
);

Expand Down

0 comments on commit f7ddc7b

Please sign in to comment.