You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 2, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: migrations/0003_rawr.sql
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ CREATE TABLE IF NOT EXISTS resources (
5
5
CONSTRAINT link_or_bytes CHECK ((bytes IS NOT NULLAND link_to IS NULL) OR (bytes IS NULLAND link_to IS NOT NULL))
6
6
);
7
7
8
+
COMMENT ON TABLE resources IS 'RawR resources. Either has the server act as a cdn by directly storing and distributing the resource, or acts as a proxy, returning the link to the actual file.';
9
+
8
10
CREATETABLEIF NOT EXISTS resource_access_properties (
9
11
id BIGINTPRIMARY KEYREFERENCES resources (id) ON DELETE CASCADE,
0 commit comments