Rename user_role to profile_role
Renamed the user_role table to profile_role. Remote users can have a role on the site; that 'role' may be negative (silenced or sandboxed).
This commit is contained in:
parent
792590bcdc
commit
4e00ce01a9
55
classes/Profile_role.php
Executable file
55
classes/Profile_role.php
Executable file
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
/*
|
||||
* StatusNet - the distributed open-source microblogging tool
|
||||
* Copyright (C) 2009, StatusNet, Inc.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
if (!defined('STATUSNET')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Table Definition for profile_role
|
||||
*/
|
||||
|
||||
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
|
||||
|
||||
class Profile_role extends Memcached_DataObject
|
||||
{
|
||||
###START_AUTOCODE
|
||||
/* the code below is auto generated do not remove the above tag */
|
||||
|
||||
public $__table = 'profile_role'; // table name
|
||||
public $profile_id; // int(4) primary_key not_null
|
||||
public $role; // varchar(32) primary_key not_null
|
||||
public $created; // datetime not_null default_0000-00-00%2000%3A00%3A00
|
||||
|
||||
/* Static get */
|
||||
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Profile_role',$k,$v); }
|
||||
|
||||
/* the code above is auto generated do not remove the tag below */
|
||||
###END_AUTOCODE
|
||||
|
||||
function &pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Profile_role', $kv);
|
||||
}
|
||||
|
||||
const MODERATOR = 'moderator';
|
||||
const ADMINISTRATOR = 'administrator';
|
||||
const SANDBOXED = 'sandboxed';
|
||||
const SILENCED = 'silenced';
|
||||
}
|
69
classes/statusnet.ini
Normal file → Executable file
69
classes/statusnet.ini
Normal file → Executable file
|
@ -253,6 +253,15 @@ modified = 384
|
|||
[location_namespace__keys]
|
||||
id = K
|
||||
|
||||
[login_token]
|
||||
user_id = 129
|
||||
token = 130
|
||||
created = 142
|
||||
modified = 384
|
||||
|
||||
[login_token__keys]
|
||||
user_id = K
|
||||
|
||||
[message]
|
||||
id = 129
|
||||
uri = 2
|
||||
|
@ -358,6 +367,15 @@ modified = 384
|
|||
blocker = K
|
||||
blocked = K
|
||||
|
||||
[profile_role]
|
||||
profile_id = 129
|
||||
role = 130
|
||||
created = 142
|
||||
|
||||
[profile_role__keys]
|
||||
profile_id = K
|
||||
role = K
|
||||
|
||||
[profile_tag]
|
||||
tagger = 129
|
||||
tagged = 129
|
||||
|
@ -525,54 +543,3 @@ modified = 384
|
|||
|
||||
[user_group__keys]
|
||||
id = N
|
||||
|
||||
[user_openid]
|
||||
canonical = 130
|
||||
display = 130
|
||||
user_id = 129
|
||||
created = 142
|
||||
modified = 384
|
||||
|
||||
[user_openid__keys]
|
||||
canonical = K
|
||||
display = U
|
||||
|
||||
[user_openid_trustroot]
|
||||
trustroot = 130
|
||||
user_id = 129
|
||||
created = 142
|
||||
modified = 384
|
||||
|
||||
[user_openid__keys]
|
||||
trustroot = K
|
||||
user_id = K
|
||||
|
||||
[user_role]
|
||||
user_id = 129
|
||||
role = 130
|
||||
created = 142
|
||||
|
||||
[user_role__keys]
|
||||
user_id = K
|
||||
role = K
|
||||
|
||||
[login_token]
|
||||
user_id = 129
|
||||
token = 130
|
||||
created = 142
|
||||
modified = 384
|
||||
|
||||
[login_token__keys]
|
||||
user_id = K
|
||||
token = K
|
||||
|
||||
[user_username]
|
||||
user_id = 129
|
||||
provider_name = 130
|
||||
username = 130
|
||||
created = 142
|
||||
modified = 384
|
||||
|
||||
[user_username__keys]
|
||||
provider_name = K
|
||||
username = K
|
||||
|
|
|
@ -557,13 +557,13 @@ create table config (
|
|||
|
||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
create table user_role (
|
||||
create table profile_role (
|
||||
|
||||
user_id integer not null comment 'user having the role' references user (id),
|
||||
profile_id integer not null comment 'account having the role' references profile (id),
|
||||
role varchar(32) not null comment 'string representing the role',
|
||||
created datetime not null comment 'date the role was granted',
|
||||
|
||||
constraint primary key (user_id, role)
|
||||
constraint primary key (profile_id, role)
|
||||
|
||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user