Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
tackandr committed Nov 15, 2023
1 parent 48f0548 commit 0deede6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions migration/20211214_to_20231115/migrate.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
set -ue

SQLHOME=../../sql

psql -1 << EOSQL
INSERT INTO earth_shape VALUES(7,6371229,6371229,NULL,'MEPS value');
SELECT setval('earth_shape_id_seq', 7);
UPDATE geom_lambert_conformal SET earth_shape_id = 7 WHERE id = 1093;
UPDATE geom_lambert_conformal SET earth_shape_id = NULL WHERE id = 1050;
UPDATE geom_lambert_conformal SET earth_shape_id = NULL WHERE id = 1078;
UPDATE geom_lambert_conformal SET earth_shape_id = NULL WHERE id = 1095;
\i $SQLHOME/radon_version_f.sql
SELECT public.radon_version_f();
EOSQL

0 comments on commit 0deede6

Please sign in to comment.