feat: add blog_options and rss feed generation
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE blog_options (
|
||||
id UUID PRIMARY KEY DEFAULT uuid_generate_v4(),
|
||||
name VARCHAR(255) NOT NULL UNIQUE,
|
||||
value TEXT
|
||||
);
|
||||
|
||||
CREATE INDEX blog_options_name_index ON blog_options (name);
|
||||
|
||||
-- Remove useless index
|
||||
DROP INDEX index_passkeys;
|
||||
Reference in New Issue
Block a user