-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mysqlsync.json
More file actions
30 lines (30 loc) · 779 Bytes
/
.mysqlsync.json
File metadata and controls
30 lines (30 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"files_path" : "./snash",
"profiles": {
"dev":{
"dbname": "icod_project",
"user": "root",
"pass": "root",
"host": "localhost",
"port": "3306",
"prefix": "",
"delete_table": false,
"delete_column": true,
"delete_index": true,
"optimize": true
},
"prod":{
"dbname": "p_8",
"user": "root",
"pass": "root",
"host": "localhost",
"port": "3306",
"prefix": "p_8_",
"file_name": "icod_project.json",
"delete_table": true,
"delete_column": true,
"delete_index": true,
"optimize": true
}
}
}