File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ LOG_LEVEL=debug
22
22
DB_CONNECTION = pgsql
23
23
DB_HOST = 127.0.0.1
24
24
DB_PORT = 5432
25
- DB_DATABASE = larachain
25
+ DB_DATABASE = laralamma
26
26
DB_USERNAME = postgres
27
- DB_PASSWORD =
27
+ DB_PASSWORD = secret
28
28
29
29
SESSION_DRIVER = database
30
30
SESSION_LIFETIME = 120
Original file line number Diff line number Diff line change 5
5
# Perform all actions as $POSTGRES_USER
6
6
export PGUSER=" $POSTGRES_USER "
7
7
8
- # Create the 'template_postgis ' template db
8
+ # Create the 'laralamma ' template db
9
9
" ${psql[@]} " << - 'EOSQL '
10
- CREATE DATABASE template_postgis IS_TEMPLATE true;
10
+ CREATE DATABASE laralamma IS_TEMPLATE true;
11
11
EOSQL
12
12
13
13
# Load PostGIS into both template_database and $POSTGRES_DB
14
- for DB in template_postgis " $POSTGRES_DB " ; do
14
+ for DB in laralamma " $POSTGRES_DB " ; do
15
15
echo " Loading PostGIS extensions into $DB "
16
16
" ${psql[@]} " --dbname=" $DB " << -'EOSQL '
17
17
CREATE EXTENSION IF NOT EXISTS postgis;
You can’t perform that action at this time.
0 commit comments