wefra-odoo11/modules/InterfacePostgreSQL.php

11 lines
235 B
PHP
Raw Normal View History

2019-10-02 21:28:58 +00:00
<?php
interface InterfacePostgreSQL {
const PG_SERVER = 'localhost';
const PG_PORT = '5432';
const PG_DBNAME = 'wefra_odoo11';
const PG_USER = 'odoo11';
const PG_PASSWORD = 'odoo11';
public function databaseConnect();
}