mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-29 12:00:32 +00:00
10 lines
218 B
Ruby
10 lines
218 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddImportedToSnippets < Gitlab::Database::Migration[2.2]
|
|
milestone '17.0'
|
|
|
|
def change
|
|
add_column :snippets, :imported, :integer, default: 0, null: false, limit: 2
|
|
end
|
|
end
|