10 lines
307 B
Ruby
10 lines
307 B
Ruby
class Gitea::ActionRun < Gitea::Base
|
|
self.inheritance_column = nil # FIX The single-table inheritance mechanism failed
|
|
# establish_connection :gitea_db
|
|
|
|
self.table_name = "action_run"
|
|
|
|
# belongs_to :user, class_name: '::User', primary_key: :gitea_uid, foreign_key: :owner_id, optional: true
|
|
|
|
end
|