debian-mirror-gitlab/db/migrate/20130614132337_add_improted_to_project.rb
2016-06-16 23:09:34 +05:30

7 lines
173 B
Ruby

# rubocop:disable all
class AddImprotedToProject < ActiveRecord::Migration
def change
add_column :projects, :imported, :boolean, default: false, null: false
end
end