7 lines
163 B
Ruby
7 lines
163 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChangeGwEventsNameNullable < ActiveRecord::Migration[8.0]
|
|
def change
|
|
remove_column :gw_events, :name, :string
|
|
end
|
|
end
|