3 lines
146 B
SQL
3 lines
146 B
SQL
--resize the column gsno in riverstat table
|
|
|
|
UPDATE pg_attribute SET atttypmod = 15+4 WHERE attrelid= 'riverstat'::regclass AND attname = 'gsno';
|