836d593033
This was removed from the interface in https://github.com/gitlabhq/gitlabhq/pull/6027 but its implementation lingered around for two years.
5 lines
135 B
Ruby
5 lines
135 B
Ruby
class RemoveExpiresAtFromSnippets < ActiveRecord::Migration
|
|
def change
|
|
remove_column :snippets, :expires_at, :datetime
|
|
end
|
|
end
|