Former-commit-id:b9a02bf34a
[formerlyb9a02bf34a
[formerly 33cde5250c39fda59bbb08d7b8075cb5645c028f]] Former-commit-id:74fff3659f
Former-commit-id:672709571d
11 lines
345 B
Bash
Executable file
11 lines
345 B
Bash
Executable file
#!/bin/bash
|
|
|
|
tables=$(psql -U awips -d metadata -tc "select table_name from information_schema.columns where column_name = 'reftime'")
|
|
|
|
echo "Updating record tables to disallow null times"
|
|
for table in $tables
|
|
do
|
|
echo "Updating $table"
|
|
psql -U awips -d metadata -c "ALTER TABLE $table ALTER COLUMN reftime SET NOT NULL"
|
|
done
|
|
echo "Done"
|