mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-29 12:48:15 +00:00
10 lines
211 B
Ruby
10 lines
211 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddInternalToNotes < Gitlab::Database::Migration[2.0]
|
|
enable_lock_retries!
|
|
|
|
def change
|
|
add_column(:notes, :internal, :boolean, default: false, null: false)
|
|
end
|
|
end
|