1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-23 19:11:40 +02:00
seaweedfs/weed/filer2/postgres
2018-08-19 15:18:37 -07:00
..
postgres_store.go go fmt 2018-08-19 15:18:37 -07:00
README.txt support both mysql and postgres 2018-05-26 22:02:49 -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(1000),
  directory   VARCHAR(4096),
  meta        bytea,
  PRIMARY KEY (dirhash, name)
);