Files
seaweedfs/weed/filer/postgres
Chris Lu 8e404a1433 go fmt
2021-04-02 02:22:26 -07:00
..
2021-03-30 00:32:03 +03:00
2021-04-02 02:22:26 -07:00
2020-09-01 00:21:19 -07:00

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(65535),
  directory   VARCHAR(65535),
  meta        bytea,
  PRIMARY KEY (dirhash, name)
);