mirror of
https://github.com/discourse/discourse.git
synced 2025-02-20 11:48:26 -06:00
8 lines
147 B
Ruby
8 lines
147 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EnableUnaccentExtension < ActiveRecord::Migration[6.1]
|
|
def change
|
|
enable_extension "unaccent"
|
|
end
|
|
end
|