File tree 3 files changed +38
-3
lines changed
3 files changed +38
-3
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ production:
40
40
adapter : postgresql
41
41
encoding : unicode
42
42
reconnect : false
43
- database : pdh
43
+ database : pdh_development
44
44
pool : 5
45
- username : conway_read
46
- password : pony4588
45
+ username : conway
46
+ password : pony
47
47
host : localhost
Original file line number Diff line number Diff line change
1
+ mysql :
2
+ hostname : localhost
3
+ port : 3306
4
+ socket : /var/run/mysqld/mysqld.sock
5
+ username : conway
6
+ password : pony
7
+ database : pdh_development
8
+ destination :
9
+ # if file is given, output goes to file, else postgres
10
+ # file:
11
+ postgres :
12
+ hostname : localhost
13
+ port : 5432
14
+ username : conway
15
+ password : pony
16
+ database : pdh_development
17
+
18
+ # if tables is given, only the listed tables will be converted. leave empty to convert all tables.
19
+ # tables:
20
+ # - table1
21
+ # - table2
22
+ # if exclude_tables is given, exclude the listed tables from the conversion.
23
+ # exclude_tables:
24
+ # - table3
25
+ # - table4
26
+
27
+
28
+ # if supress_data is true, only the schema definition will be exported/migrated, and not the data
29
+ supress_data : false
30
+
31
+ # if supress_ddl is true, only the data will be exported/imported, and not the schema
32
+ supress_ddl : false
33
+
34
+ # if force_truncate is true, forces a table truncate before table loading
35
+ force_truncate : false
You can’t perform that action at this time.
0 commit comments