add a deleted_notice table
This commit is contained in:
parent
b995370d4a
commit
db53cc800f
44
classes/Deleted_notice.php
Executable file
44
classes/Deleted_notice.php
Executable file
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* Laconica - a distributed open-source microblogging tool
|
||||||
|
* Copyright (C) 2008, 2009, Control Yourself, 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('LACONICA')) { exit(1); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Table Definition for notice
|
||||||
|
*/
|
||||||
|
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
|
||||||
|
|
||||||
|
class Deleted_notice extends Memcached_DataObject
|
||||||
|
{
|
||||||
|
###START_AUTOCODE
|
||||||
|
/* the code below is auto generated do not remove the above tag */
|
||||||
|
|
||||||
|
public $__table = 'deleted_notice'; // table name
|
||||||
|
public $id; // int(4) primary_key not_null
|
||||||
|
public $profile_id; // int(4) not_null
|
||||||
|
public $uri; // varchar(255) unique_key
|
||||||
|
public $created; // datetime() not_null
|
||||||
|
public $deleted; // datetime() not_null
|
||||||
|
|
||||||
|
/* Static get */
|
||||||
|
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Deleted_notice',$k,$v); }
|
||||||
|
|
||||||
|
/* the code above is auto generated do not remove the tag below */
|
||||||
|
###END_AUTOCODE
|
||||||
|
}
|
11
classes/laconica.ini
Normal file → Executable file
11
classes/laconica.ini
Normal file → Executable file
|
@ -38,6 +38,17 @@ modified = 384
|
||||||
[consumer__keys]
|
[consumer__keys]
|
||||||
consumer_key = K
|
consumer_key = K
|
||||||
|
|
||||||
|
[deleted_notice]
|
||||||
|
id = 129
|
||||||
|
profile_id = 129
|
||||||
|
uri = 2
|
||||||
|
created = 142
|
||||||
|
deleted = 142
|
||||||
|
|
||||||
|
[deleted_notice__keys]
|
||||||
|
id = K
|
||||||
|
uri = U
|
||||||
|
|
||||||
[design]
|
[design]
|
||||||
id = 129
|
id = 129
|
||||||
backgroundcolor = 1
|
backgroundcolor = 1
|
||||||
|
|
|
@ -534,4 +534,16 @@ create table session (
|
||||||
|
|
||||||
index session_modified_idx (modified)
|
index session_modified_idx (modified)
|
||||||
|
|
||||||
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||||
|
|
||||||
|
create table deleted_notice (
|
||||||
|
|
||||||
|
id integer primary key comment 'identity of notice',
|
||||||
|
profile_id integer not null comment 'author of the notice',
|
||||||
|
uri varchar(255) unique key comment 'universally unique identifier, usually a tag URI',
|
||||||
|
created datetime not null comment 'date the notice record was created',
|
||||||
|
deleted datetime not null comment 'date the notice record was created',
|
||||||
|
|
||||||
|
index deleted_notice_profile_id_idx (profile_id)
|
||||||
|
|
||||||
|
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user