Skip to content

Commit 85871f4

Browse files
committed
prod is same as dev. get working on heroku
1 parent c4e87a9 commit 85871f4

File tree

3 files changed

+38
-3
lines changed

3 files changed

+38
-3
lines changed

config/database.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ production:
4040
adapter: postgresql
4141
encoding: unicode
4242
reconnect: false
43-
database: pdh
43+
database: pdh_development
4444
pool: 5
45-
username: conway_read
46-
password: pony4588
45+
username: conway
46+
password: pony
4747
host: localhost

data.dump

66.5 KB
Binary file not shown.

mysql2psql.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

0 commit comments

Comments
 (0)