debian-mirror-gitlab/db/migrate/20190911115056_add_projects_max_pages_size.rb

10 lines
238 B
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
class AddProjectsMaxPagesSize < ActiveRecord::Migration[5.2]
DOWNTIME = false
def change
2020-04-22 19:07:51 +05:30
add_column :projects, :max_pages_size, :integer # rubocop:disable Migration/AddColumnsToWideTables
2019-12-21 20:55:43 +05:30
end
end