4 lines
213 B
SQL
4 lines
213 B
SQL
ALTER TABLE content_files ADD COLUMN plaintext_hash BLOB;
|
|
ALTER TABLE content_files ADD COLUMN ref_count INTEGER NOT NULL DEFAULT 1;
|
|
CREATE INDEX idx_content_files_plaintext_hash ON content_files(plaintext_hash);
|