Skip to content

Commit

Permalink
schema/pgsql: Drop checkcommand_argument.argument_key storage mode
Browse files Browse the repository at this point in the history
During #792, the storage mode for this column got lost. After further
inspection, setting a distinct storage mode for a column of type varchar
seems unnecessary.
  • Loading branch information
oxzi authored and lippserd committed Dec 17, 2024
1 parent cff2ba3 commit fa00ac2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion schema/pgsql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,6 @@ CREATE TABLE checkcommand_argument (
ALTER TABLE checkcommand_argument ALTER COLUMN id SET STORAGE PLAIN;
ALTER TABLE checkcommand_argument ALTER COLUMN environment_id SET STORAGE PLAIN;
ALTER TABLE checkcommand_argument ALTER COLUMN checkcommand_id SET STORAGE PLAIN;
ALTER TABLE checkcommand_argument ALTER COLUMN argument_key SET STORAGE PLAIN;
ALTER TABLE checkcommand_argument ALTER COLUMN properties_checksum SET STORAGE PLAIN;

COMMENT ON COLUMN checkcommand_argument.id IS 'sha1(environment.id + checkcommand_id + argument_key)';
Expand Down

0 comments on commit fa00ac2

Please sign in to comment.