From 884e41bacc3cdf9b06fa1d91e1944ab7546eb92c Mon Sep 17 00:00:00 2001 From: "jeff.dean" Date: Fri, 19 Jul 2024 15:25:44 +0900 Subject: [PATCH] test --- test/tasks_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tasks_test.rb b/test/tasks_test.rb index 38a3ca3..9dba3ad 100644 --- a/test/tasks_test.rb +++ b/test/tasks_test.rb @@ -65,7 +65,7 @@ def test_basic_geometry_schema_dump def test_basic_geography_schema_dump setup_database_tasks connection.create_table(:spatial_test, force: true) do |t| - t.point "latlon1", geographic: true + t.point "latlon1", srid: 0, geographic: true t.spatial "latlon2", srid: 4326, type: "point", geographic: true end File.open(tmp_sql_filename, "w:utf-8") do |file|