Change-Id: I7cb3fb9b15fe5fe7815df5404ddfc4b22ce0f23a Former-commit-id: 3e7e062396cd24a686325d079612229806667dc5
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';
|