5 lines
128 B
Ruby
5 lines
128 B
Ruby
class AddTargetMemoToSparks < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :sparks, :target_memo, :string
|
|
end
|
|
end
|