mirror of
https://github.com/ubicloud/ubicloud.git
synced 2025-11-28 08:30:27 +08:00
9 lines
139 B
Ruby
9 lines
139 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sequel.migration do
|
|
change do
|
|
alter_table(:nic) do
|
|
set_column_not_null :state
|
|
end
|
|
end
|
|
end
|