mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-17 07:36:22 +00:00
6 lines
126 B
Ruby
6 lines
126 B
Ruby
|
class AddPriorityToDesigns < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
add_column :designs, :priority, :integer
|
||
|
end
|
||
|
end
|