nmig/test_config.json

44 lines
1.3 KiB
JSON

{
"README" : [
"This JSON document represents the test configuration options."
],
"source_description" : [
"Connection parameters to your MySQL database",
"Please ensure, that you have defined all parameters properly.",
"Ensure, that details like 'charset' are included (if necessary)."
],
"source" : {
"host" : "localhost",
"port" : 3306,
"charset" : "UTF8",
"user" : "root",
"password" : "0123456789"
},
"target_description" : [
"Connection parameters to your PostgreSQL database",
"Please ensure, that you have defined all parameters properly.",
"Ensure, that details like 'charset' are included (if necessary). nmig_test_db"
],
"target" : {
"host" : "localhost",
"port" : 5432,
"charset" : "UTF8",
"user" : "postgres",
"password" : "0123456789"
},
"schema_description" : [
"A name of the schema, that will contain all migrated tables.",
"If not supplied, then a new schema will be created automatically."
],
"schema" : "public",
"remove_test_resources_description" : [
"If true, then all resources created by test scripts will be removed.",
"Default - true."
],
"remove_test_resources" : true
}