mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-20 16:30:26 +00:00
12 lines
214 B
Ruby
12 lines
214 B
Ruby
class AddCiConfigFileToProject < ActiveRecord::Migration
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
add_column :projects, :ci_config_path, :string
|
|
end
|
|
|
|
def down
|
|
remove_column :projects, :ci_config_path
|
|
end
|
|
end
|