Merge branch 'develop' into standalone_develop

This commit is contained in:
2022-05-06 17:25:52 +08:00
6 changed files with 17 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
class ChangeIssuesDescriptionAndJournalsNotesColumn < ActiveRecord::Migration[5.2]
def change
change_column :issues, :description, :text, :limit => 4294967295
change_column :journals, :notes, :text, :limit => 4294967295
change_column :pull_requests, :body, :text, :limit => 4294967295
end
end