File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change
1
+ * No longer pass deprecated option ` -i ` to ` pg_dump ` .
2
+
3
+ * Paul Sadauskas*
4
+
5
+
1
6
## Rails 4.1.14.rc1 (October 30, 2015) ##
2
7
3
8
* Includes HABTM returns correct size now. It's caused by the join dependency
29
34
30
35
* Sean Griffin*
31
36
37
+
32
38
## Rails 4.1.12 (June 25, 2015) ##
33
39
34
40
* Raises the right exception when declares a has many through
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ def setup
202
202
203
203
def test_structure_dump
204
204
filename = "awesome-file.sql"
205
- Kernel . expects ( :system ) . with ( "pg_dump -i - s -x -O -f #{ filename } my-app-db" ) . returns ( true )
205
+ Kernel . expects ( :system ) . with ( "pg_dump -s -x -O -f #{ filename } my-app-db" ) . returns ( true )
206
206
@connection . expects ( :schema_search_path ) . returns ( "foo" )
207
207
208
208
ActiveRecord ::Tasks ::DatabaseTasks . structure_dump ( @configuration , filename )
You can’t perform that action at this time.
0 commit comments