10 lines
204 B
Ruby
10 lines
204 B
Ruby
|
class DropUserActivitiesTable < ActiveRecord::Migration
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
# This migration is a no-op. It just exists to match EE.
|
||
|
def change
|
||
|
end
|
||
|
end
|