gitlink-forgeplus/db/migrate/20230417141788_update_commi...

6 lines
193 B
Ruby

class UpdateCommitLogUtf8 < ActiveRecord::Migration[5.2]
def change
execute("ALTER TABLE `commit_logs` MODIFY `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;")
end
end