mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 20:00:49 +08:00
6 lines
196 B
Ruby
6 lines
196 B
Ruby
class UpdateCommitLogMessage < ActiveRecord::Migration[5.2]
|
|
def change
|
|
execute("ALTER TABLE `commit_logs` MODIFY `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;")
|
|
end
|
|
end
|