mirror of
https://github.com/discourse/discourse.git
synced 2026-08-05 13:42:12 +08:00
7 lines
147 B
Ruby
Vendored
7 lines
147 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class EnableUnaccentExtension < ActiveRecord::Migration[6.1]
|
|
def change
|
|
enable_extension "unaccent"
|
|
end
|
|
end
|