You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15884.up

10 lines
381 B

use provisioning;
alter table recording_streams
add column storage_file tinyint(1) not null default 1,
add column storage_db tinyint(1) not null default 0,
add column storage_s3 tinyint(1) not null default 0,
add column storage_gcs tinyint(1) not null default 0,
add column s3_uri varchar(255) not null default '',
add column gcs_uri varchar(255) not null default '';