10 lines
138 B
Ruby
10 lines
138 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:project) do
|
|
drop_column :provider
|
|
end
|
|
end
|
|
end
|