mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-24 13:56:22 +00:00
5 lines
137 B
Ruby
5 lines
137 B
Ruby
class AddCharacteristicsToDesigns < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :designs, :characteristics, :text
|
|
end
|
|
end
|