mirror of
https://github.com/discourse/discourse.git
synced 2025-01-02 05:53:53 +08: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
|