mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
Test: Enable update_sql_schema
- Test: Enable update_sql_schema by default - Update test/README about new option - enable new_schema in tests
This commit is contained in:
parent
1076f8bfc2
commit
ec13350b24
@ -17,7 +17,8 @@ $ psql template1
|
|||||||
template1=# CREATE USER ejabberd_test WITH PASSWORD 'ejabberd_test';
|
template1=# CREATE USER ejabberd_test WITH PASSWORD 'ejabberd_test';
|
||||||
template1=# CREATE DATABASE ejabberd_test;
|
template1=# CREATE DATABASE ejabberd_test;
|
||||||
template1=# GRANT ALL PRIVILEGES ON DATABASE ejabberd_test TO ejabberd_test;
|
template1=# GRANT ALL PRIVILEGES ON DATABASE ejabberd_test TO ejabberd_test;
|
||||||
$ psql ejabberd_test -f sql/pg.sql
|
# If you disabled the update_sql_schema option, create the schema manually:
|
||||||
|
# $ psql ejabberd_test -f sql/pg.sql
|
||||||
|
|
||||||
-------------------
|
-------------------
|
||||||
MySQL
|
MySQL
|
||||||
@ -26,7 +27,8 @@ $ mysql
|
|||||||
mysql> CREATE USER 'ejabberd_test'@'localhost' IDENTIFIED BY 'ejabberd_test';
|
mysql> CREATE USER 'ejabberd_test'@'localhost' IDENTIFIED BY 'ejabberd_test';
|
||||||
mysql> CREATE DATABASE ejabberd_test;
|
mysql> CREATE DATABASE ejabberd_test;
|
||||||
mysql> GRANT ALL ON ejabberd_test.* TO 'ejabberd_test'@'localhost';
|
mysql> GRANT ALL ON ejabberd_test.* TO 'ejabberd_test'@'localhost';
|
||||||
$ mysql ejabberd_test < sql/mysql.sql
|
# If you disabled the update_sql_schema option, create the schema manually:
|
||||||
|
# $ mysql ejabberd_test < sql/mysql.sql
|
||||||
|
|
||||||
-------------------
|
-------------------
|
||||||
MS SQL Server
|
MS SQL Server
|
||||||
|
@ -161,6 +161,8 @@ certfiles:
|
|||||||
|
|
||||||
new_sql_schema: NEW_SCHEMA
|
new_sql_schema: NEW_SCHEMA
|
||||||
|
|
||||||
|
update_sql_schema: UPDATE_SQL_SCHEMA
|
||||||
|
|
||||||
api_permissions:
|
api_permissions:
|
||||||
"public commands":
|
"public commands":
|
||||||
who: all
|
who: all
|
||||||
|
@ -14,6 +14,7 @@ define_macro:
|
|||||||
PUT_URL: "http://upload.@HOST@:@@web_port@@/upload"
|
PUT_URL: "http://upload.@HOST@:@@web_port@@/upload"
|
||||||
GET_URL: "http://upload.@HOST@:@@web_port@@/upload"
|
GET_URL: "http://upload.@HOST@:@@web_port@@/upload"
|
||||||
NEW_SCHEMA: @@new_schema@@
|
NEW_SCHEMA: @@new_schema@@
|
||||||
|
UPDATE_SQL_SCHEMA: @@update_sql_schema@@
|
||||||
MYSQL_USER: "@@mysql_user@@"
|
MYSQL_USER: "@@mysql_user@@"
|
||||||
MYSQL_SERVER: "@@mysql_server@@"
|
MYSQL_SERVER: "@@mysql_server@@"
|
||||||
MYSQL_PORT: @@mysql_port@@
|
MYSQL_PORT: @@mysql_port@@
|
||||||
|
@ -59,6 +59,7 @@ init_config(Config) ->
|
|||||||
[{c2s_port, 5222},
|
[{c2s_port, 5222},
|
||||||
{loglevel, 4},
|
{loglevel, 4},
|
||||||
{new_schema, false},
|
{new_schema, false},
|
||||||
|
{update_sql_schema, true},
|
||||||
{s2s_port, 5269},
|
{s2s_port, 5269},
|
||||||
{stun_port, 3478},
|
{stun_port, 3478},
|
||||||
{component_port, 5270},
|
{component_port, 5270},
|
||||||
|
Loading…
Reference in New Issue
Block a user