Welcome to mirror list, hosted at ThFree Co, Russian Federation.

add_limits_mysql.rake « migrate « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ded519aff269c6f4e3a5df2964882bec670c400 (plain)
1
2
3
4
5
6
7
require Rails.root.join('db/migrate/limits_to_mysql')

desc "GitLab | Add limits to strings in mysql database"
task add_limits_mysql: :environment do
  puts "Adding limits to schema.rb for mysql"
  LimitsToMysql.new.up
end