mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-24 13:45:44 +08:00
6 lines
140 B
Ruby
6 lines
140 B
Ruby
class AddPositionToLicenses < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :licenses, :position, :integer, default: 0
|
|
end
|
|
end
|