Update create_db.sql

set a default password for cardapp to match boltcard.service default setting
This commit is contained in:
Peter Rounce 2022-08-09 19:01:16 +01:00 committed by GitHub
parent 677dc8a850
commit 5f69135c54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
DROP DATABASE IF EXISTS card_db;
CREATE DATABASE card_db;
--CREATE USER cardapp WITH PASSWORD '***';
CREATE USER cardapp WITH PASSWORD 'database_password';
\c card_db;