mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:54:59 +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
|