aboutsummaryrefslogtreecommitdiffstats
path: root/config/database.yml.example
blob: 9c8273d4b50586383884a6c5f383c838e730fda5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
default: &default
  adapter: mysql2
  encoding: utf8mb4
  collation: utf8mb4_general_ci
  pool: 5
  username: root
  password:
  host: localhost

development:
  <<: *default
  database: aclog_development

test:
  <<: *default
  database: aclog_test

production:
  <<: *default
  database: aclog_production