diff options
author | Christopher Baines <mail@cbaines.net> | 2020-05-16 08:42:00 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-05-16 08:42:00 +0100 |
commit | 9c72fc23dc7350300be0f18538eb9691ef058d40 (patch) | |
tree | ccd0577bd2870a61b3189278bc36d9451350d174 /README | |
parent | 796c129a36d17ac79c9c065b7d4c2da4483fab3d (diff) | |
download | data-service-9c72fc23dc7350300be0f18538eb9691ef058d40.tar data-service-9c72fc23dc7350300be0f18538eb9691ef058d40.tar.gz |
Move around --no-tablespaces
Turns out, at the moment, this is ineffective when combined with the archive
formats, like the custom format in use. Therefore, move it to the pg_restore
command, where hopefully it'll work.
Diffstat (limited to 'README')
-rw-r--r-- | README | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ for a password, at which point enter the password for the database user that you set earlier. #+BEGIN_SRC shell -pg_restore --jobs=4 --user=guix_data_service --host=127.0.0.1 --dbname=guix_data_service guix_data_service_small.dump +pg_restore --jobs=4 --user=guix_data_service --no-tablespaces --host=127.0.0.1 --dbname=guix_data_service guix_data_service_small.dump #+END_SRC ** Set the database paramstring |