#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::DB::Item::Permission;
use strict;
use warnings;
use lib '/app/tools/common/lib';
use Common::DB::Item;
use base 'Common::DB::Item';

# !!! DEPRECATED

my $gConfig = {
    _db           => Common::DB::Item::kCommonDB(),
    'application' => {
        _table => 'permission',
        _key   => 1,
        _quote => 1,
    },
    'area' => {
        _table => 'permission',
        _key   => 1,
        _quote => 1,
    },
    'command' => {
        _table => 'permission',
        _key   => 1,
        _quote => 1,
    },
    'access_level_id' => {
        _table => 'permission',
        _key   => 1,
    },
};

sub _config {
    return $gConfig;
}

1;
