Files
ubicloud/migrate/20231116_project_flag.rb
2023-11-15 09:47:50 +01:00

10 lines
178 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:project) do
add_column :feature_flags, :jsonb, null: false, default: "{}"
end
end
end