wefra/modules/InterfacePostgreSQL.php

11 lines
235 B
PHP
Raw Normal View History

<?php
interface InterfacePostgreSQL {
const PG_SERVER = 'localhost';
const PG_PORT = '5432';
2020-11-27 13:10:57 +00:00
const PG_DBNAME = 'wefra';
const PG_USER = 'odoo11';
const PG_PASSWORD = 'odoo11';
public static function databaseConnect();
}