Updated autoloader for AR

This commit is contained in:
Ben Passmore
2019-11-30 15:13:19 +10:00
parent f83add866e
commit 7462dea1e0

View File

@@ -7,15 +7,12 @@ module BeEF
module Core
module Models
class Autoloading < ActiveRecord::Base
class Autoloading < BeEF::Core::Model
attribute :id, :Serial
attribute :in_use, :Boolean
belongs_to :command
belongs_to :command
end
end
end
end
end