Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ackage DBDefs;
- use strict;
- use warnings;
- use base 'DBDefs::Default';
- use MusicBrainz::Server::DatabaseConnectionFactory;
- use MusicBrainz::Server::Replication ':replication_type';
- MusicBrainz::Server::DatabaseConnectionFactory->register_databases(
- READWRITE => {
- database => 'musicbrainz',
- username => 'musicbrainz',
- schema => 'musicbrainz',
- },
- READONLY => {
- database => 'musicbrainz',
- username => 'musicbrainz',
- schema => 'musicbrainz',
- },
- SYSTEM => {
- database => 'template1',
- username => 'postgres',
- },
- );
- sub DB_SCHEMA_SEQUENCE { 19 }
- sub REPLICATION_TYPE { RT_SLAVE }
- sub LUCENE_SERVER { 'localhost:8080' }
- sub CATALYST_DEBUG { 0 }
- sub DEVELOPMENT_SERVER { 1 }
- 1;
Advertisement
Add Comment
Please, Sign In to add comment