mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
18 lines
392 B
Plaintext
18 lines
392 B
Plaintext
|
|
||
|
1. create "seaweedfs" database
|
||
|
|
||
|
export PGHOME=/Library/PostgreSQL/10
|
||
|
$PGHOME/bin/createdb --username=postgres --password seaweedfs
|
||
|
|
||
|
2. create "filemeta" table
|
||
|
$PGHOME/bin/psql --username=postgres --password seaweedfs
|
||
|
|
||
|
CREATE TABLE IF NOT EXISTS filemeta (
|
||
|
dirhash BIGINT,
|
||
|
name VARCHAR(1000),
|
||
|
directory VARCHAR(4096),
|
||
|
meta bytea,
|
||
|
PRIMARY KEY (dirhash, name)
|
||
|
);
|
||
|
|