Skip to content

Commit 8badacb

Browse files
committed
docs: add trailing line
1 parent d461a01 commit 8badacb

17 files changed

+17
-17
lines changed

multifile/domains/email_address.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
--
44

55
CREATE DOMAIN email_address AS text
6-
CONSTRAINT email_address_check CHECK (VALUE ~~ '%@%');
6+
CONSTRAINT email_address_check CHECK (VALUE ~~ '%@%');

multifile/domains/positive_integer.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
--
44

55
CREATE DOMAIN positive_integer AS integer
6-
CONSTRAINT positive_integer_check CHECK (VALUE > 0);
6+
CONSTRAINT positive_integer_check CHECK (VALUE > 0);

multifile/functions/get_order_count.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ SECURITY INVOKER
1111
VOLATILE
1212
AS $$
1313
SELECT COUNT(*) FROM orders WHERE user_id = user_id_param;
14-
$$;
14+
$$;

multifile/functions/get_user_count.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ SECURITY INVOKER
99
VOLATILE
1010
AS $$
1111
SELECT COUNT(*) FROM users;
12-
$$;
12+
$$;

multifile/functions/update_timestamp.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ BEGIN
1212
NEW.updated_at = NOW();
1313
RETURN NEW;
1414
END;
15-
$$;
15+
$$;

multifile/main.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232

3333
-- Include views (depend on tables and functions)
3434
\i views/user_summary.sql
35-
\i views/order_details.sql
35+
\i views/order_details.sql

multifile/procedures/cleanup_orders.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ CREATE OR REPLACE PROCEDURE cleanup_orders()
66
LANGUAGE sql
77
AS $$
88
DELETE FROM orders WHERE status = 'completed';
9-
$$;
9+
$$;

multifile/procedures/update_status.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ CREATE OR REPLACE PROCEDURE update_status(
99
LANGUAGE sql
1010
AS $$
1111
UPDATE orders SET status = new_status WHERE user_id = user_id_param;
12-
$$;
12+
$$;

multifile/sequences/global_id_seq.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
-- Name: global_id_seq; Type: SEQUENCE; Schema: -; Owner: -
33
--
44

5-
CREATE SEQUENCE IF NOT EXISTS global_id_seq;
5+
CREATE SEQUENCE IF NOT EXISTS global_id_seq;

multifile/sequences/order_number_seq.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
-- Name: order_number_seq; Type: SEQUENCE; Schema: -; Owner: -
33
--
44

5-
CREATE SEQUENCE IF NOT EXISTS order_number_seq;
5+
CREATE SEQUENCE IF NOT EXISTS order_number_seq;

0 commit comments

Comments
 (0)