mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-02 19:30:48 +08:00
6 lines
154 B
Ruby
6 lines
154 B
Ruby
class AddIndexToProjects < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_index :projects, :identifier, name: 'index_projects_on_identifier'
|
|
end
|
|
end
|