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