mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
383 B
SQL
18 lines
383 B
SQL
ALTER TABLE
|
|
resource
|
|
ADD
|
|
COLUMN public_id TEXT NOT NULL DEFAULT '';
|
|
|
|
CREATE UNIQUE INDEX resource_id_public_id_unique_index ON resource (id, public_id);
|
|
|
|
UPDATE
|
|
resource
|
|
SET
|
|
public_id = printf (
|
|
'%s-%s-%s-%s-%s',
|
|
lower(hex(randomblob(4))),
|
|
lower(hex(randomblob(2))),
|
|
lower(hex(randomblob(2))),
|
|
lower(hex(randomblob(2))),
|
|
lower(hex(randomblob(6)))
|
|
); |