mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 03:40:45 +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
|