mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 19:44:59 +08:00
7 lines
147 B
Ruby
7 lines
147 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EnableUnaccentExtension < ActiveRecord::Migration[6.1]
|
|
def change
|
|
enable_extension "unaccent"
|
|
end
|
|
end
|