chrislu 36fec34c47 print only adapted url 3 months ago
..
README.txt eb7929a971 rename filer2 to filer 3 years ago
postgres_sql_gen.go 26dbc6c905 move to https://github.com/seaweedfs/seaweedfs 1 year ago
postgres_store.go 36fec34c47 print only adapted url 3 months ago

README.txt


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)
);