mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 18:36:35 +08:00
8 lines
144 B
Ruby
8 lines
144 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddBookmarkNameIndex < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
add_index :bookmarks, :name
|
||
|
end
|
||
|
end
|