From eb1e6c6c345c4a588c28d2937949adc1b440133f Mon Sep 17 00:00:00 2001 From: Naz Date: Tue, 2 Sep 2025 10:12:27 +0100 Subject: =?UTF-8?q?=F0=9F=A6=84org:=20now=20using=20an=20org=20document=20?= =?UTF-8?q?to=20configure=20nvim.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I know I messed up --- snippets/sql.json | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 snippets/sql.json (limited to 'snippets') diff --git a/snippets/sql.json b/snippets/sql.json deleted file mode 100644 index d191703..0000000 --- a/snippets/sql.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "BaseAuditEntity fields": { - "prefix": "sqlbae", - "body": [ - "-- BaseAuditEntity fields", - "creator INT NOT NULL, -- FK to users.user_id", - "date_created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,", - "changed_by INT DEFAULT NULL, -- FK to users.user_id", - "date_changed TIMESTAMP DEFAULT NULL,", - "voided BOOLEAN NOT NULL DEFAULT FALSE,", - "voided_by INT DEFAULT NULL, -- FK to users.user_id", - "date_voided TIMESTAMP DEFAULT NULL,", - "void_reason VARCHAR(256) DEFAULT NULL,", - "uuid UUID NOT NULL DEFAULT gen_random_uuid () UNIQUE,", - "CONSTRAINT fk_${0}_creator FOREIGN KEY (creator) REFERENCES users (user_id),", - "CONSTRAINT fk_${0}_changed_by FOREIGN KEY (changed_by) REFERENCES users (user_id),", - "CONSTRAINT fk_${0}_voided_by FOREIGN KEY (voided_by) REFERENCES users (user_id)" - ], - "description": "BaseAuditEntity fields" - } -} -- cgit v1.2.3