generate classes for db schema with URIs
darcs-hash:20080522184109-84dde-0d13fc6890f85613554f5dd64b1baa67bbcaa8f6.gz
This commit is contained in:
parent
aa34949520
commit
7979176e14
@ -4,18 +4,18 @@
|
|||||||
*/
|
*/
|
||||||
require_once 'DB/DataObject.php';
|
require_once 'DB/DataObject.php';
|
||||||
|
|
||||||
class Avatar extends DB_DataObject
|
class Avatar extends DB_DataObject
|
||||||
{
|
{
|
||||||
###START_AUTOCODE
|
###START_AUTOCODE
|
||||||
/* the code below is auto generated do not remove the above tag */
|
/* the code below is auto generated do not remove the above tag */
|
||||||
|
|
||||||
public $__table = 'avatar'; // table name
|
public $__table = 'avatar'; // table name
|
||||||
public $profile_id; // int(4) primary_key not_null
|
public $profile_id; // int(4) primary_key not_null
|
||||||
public $original; // tinyint(1)
|
public $original; // tinyint(1)
|
||||||
public $width; // int(4) primary_key not_null
|
public $width; // int(4) primary_key not_null
|
||||||
public $height; // int(4) primary_key not_null
|
public $height; // int(4) primary_key not_null
|
||||||
public $mediatype; // varchar(32) not_null
|
public $mediatype; // varchar(32) not_null
|
||||||
public $filename; // varchar(255)
|
public $filename; // varchar(255)
|
||||||
public $url; // varchar(255) unique_key
|
public $url; // varchar(255) unique_key
|
||||||
public $created; // datetime() not_null
|
public $created; // datetime() not_null
|
||||||
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
||||||
|
@ -24,7 +24,7 @@ if (!defined('LACONICA')) { exit(1); }
|
|||||||
*/
|
*/
|
||||||
require_once 'DB/DataObject.php';
|
require_once 'DB/DataObject.php';
|
||||||
|
|
||||||
class Notice extends DB_DataObject
|
class Notice extends DB_DataObject
|
||||||
{
|
{
|
||||||
###START_AUTOCODE
|
###START_AUTOCODE
|
||||||
/* the code below is auto generated do not remove the above tag */
|
/* the code below is auto generated do not remove the above tag */
|
||||||
@ -32,8 +32,9 @@ class Notice extends DB_DataObject
|
|||||||
public $__table = 'notice'; // table name
|
public $__table = 'notice'; // table name
|
||||||
public $id; // int(4) primary_key not_null
|
public $id; // int(4) primary_key not_null
|
||||||
public $profile_id; // int(4) not_null
|
public $profile_id; // int(4) not_null
|
||||||
public $content; // varchar(140)
|
public $uri; // varchar(255) unique_key
|
||||||
public $url; // varchar(255)
|
public $content; // varchar(140)
|
||||||
|
public $url; // varchar(255)
|
||||||
public $created; // datetime() not_null
|
public $created; // datetime() not_null
|
||||||
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ if (!defined('LACONICA')) { exit(1); }
|
|||||||
*/
|
*/
|
||||||
require_once 'DB/DataObject.php';
|
require_once 'DB/DataObject.php';
|
||||||
|
|
||||||
class Profile extends DB_DataObject
|
class Profile extends DB_DataObject
|
||||||
{
|
{
|
||||||
###START_AUTOCODE
|
###START_AUTOCODE
|
||||||
/* the code below is auto generated do not remove the above tag */
|
/* the code below is auto generated do not remove the above tag */
|
||||||
@ -32,11 +32,11 @@ class Profile extends DB_DataObject
|
|||||||
public $__table = 'profile'; // table name
|
public $__table = 'profile'; // table name
|
||||||
public $id; // int(4) primary_key not_null
|
public $id; // int(4) primary_key not_null
|
||||||
public $nickname; // varchar(64) not_null
|
public $nickname; // varchar(64) not_null
|
||||||
public $fullname; // varchar(255)
|
public $fullname; // varchar(255)
|
||||||
public $profileurl; // varchar(255)
|
public $profileurl; // varchar(255)
|
||||||
public $homepage; // varchar(255)
|
public $homepage; // varchar(255)
|
||||||
public $bio; // varchar(140)
|
public $bio; // varchar(140)
|
||||||
public $location; // varchar(255)
|
public $location; // varchar(255)
|
||||||
public $created; // datetime() not_null
|
public $created; // datetime() not_null
|
||||||
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
||||||
|
|
||||||
|
@ -24,14 +24,16 @@ if (!defined('LACONICA')) { exit(1); }
|
|||||||
*/
|
*/
|
||||||
require_once 'DB/DataObject.php';
|
require_once 'DB/DataObject.php';
|
||||||
|
|
||||||
class Remote_profile extends DB_DataObject
|
class Remote_profile extends DB_DataObject
|
||||||
{
|
{
|
||||||
###START_AUTOCODE
|
###START_AUTOCODE
|
||||||
/* the code below is auto generated do not remove the above tag */
|
/* the code below is auto generated do not remove the above tag */
|
||||||
|
|
||||||
public $__table = 'remote_profile'; // table name
|
public $__table = 'remote_profile'; // table name
|
||||||
public $id; // int(4) primary_key not_null
|
public $id; // int(4) primary_key not_null
|
||||||
public $url; // varchar(255) unique_key
|
public $uri; // varchar(255) unique_key
|
||||||
|
public $postnoticeurl; // varchar(255)
|
||||||
|
public $updateprofileurl; // varchar(255)
|
||||||
public $created; // datetime() not_null
|
public $created; // datetime() not_null
|
||||||
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ if (!defined('LACONICA')) { exit(1); }
|
|||||||
*/
|
*/
|
||||||
require_once 'DB/DataObject.php';
|
require_once 'DB/DataObject.php';
|
||||||
|
|
||||||
class Subscription extends DB_DataObject
|
class Subscription extends DB_DataObject
|
||||||
{
|
{
|
||||||
###START_AUTOCODE
|
###START_AUTOCODE
|
||||||
/* the code below is auto generated do not remove the above tag */
|
/* the code below is auto generated do not remove the above tag */
|
||||||
@ -32,7 +32,7 @@ class Subscription extends DB_DataObject
|
|||||||
public $__table = 'subscription'; // table name
|
public $__table = 'subscription'; // table name
|
||||||
public $subscriber; // int(4) primary_key not_null
|
public $subscriber; // int(4) primary_key not_null
|
||||||
public $subscribed; // int(4) primary_key not_null
|
public $subscribed; // int(4) primary_key not_null
|
||||||
public $token; // varchar(255)
|
public $token; // varchar(255)
|
||||||
public $created; // datetime() not_null
|
public $created; // datetime() not_null
|
||||||
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ if (!defined('LACONICA')) { exit(1); }
|
|||||||
require_once 'DB/DataObject.php';
|
require_once 'DB/DataObject.php';
|
||||||
require_once 'Validate.php';
|
require_once 'Validate.php';
|
||||||
|
|
||||||
class User extends DB_DataObject
|
class User extends DB_DataObject
|
||||||
{
|
{
|
||||||
###START_AUTOCODE
|
###START_AUTOCODE
|
||||||
/* the code below is auto generated do not remove the above tag */
|
/* the code below is auto generated do not remove the above tag */
|
||||||
@ -32,8 +32,9 @@ class User extends DB_DataObject
|
|||||||
public $__table = 'user'; // table name
|
public $__table = 'user'; // table name
|
||||||
public $id; // int(4) primary_key not_null
|
public $id; // int(4) primary_key not_null
|
||||||
public $nickname; // varchar(64) unique_key
|
public $nickname; // varchar(64) unique_key
|
||||||
public $password; // varchar(255)
|
public $password; // varchar(255)
|
||||||
public $email; // varchar(255) unique_key
|
public $email; // varchar(255) unique_key
|
||||||
|
public $uri; // varchar(255) unique_key
|
||||||
public $created; // datetime() not_null
|
public $created; // datetime() not_null
|
||||||
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
||||||
|
|
||||||
|
@ -19,6 +19,7 @@ url = U
|
|||||||
[notice]
|
[notice]
|
||||||
id = 129
|
id = 129
|
||||||
profile_id = 129
|
profile_id = 129
|
||||||
|
uri = 2
|
||||||
content = 2
|
content = 2
|
||||||
url = 2
|
url = 2
|
||||||
created = 142
|
created = 142
|
||||||
@ -43,13 +44,15 @@ id = N
|
|||||||
|
|
||||||
[remote_profile]
|
[remote_profile]
|
||||||
id = 129
|
id = 129
|
||||||
url = 2
|
uri = 2
|
||||||
|
postnoticeurl = 2
|
||||||
|
updateprofileurl = 2
|
||||||
created = 142
|
created = 142
|
||||||
modified = 384
|
modified = 384
|
||||||
|
|
||||||
[remote_profile__keys]
|
[remote_profile__keys]
|
||||||
id = K
|
id = K
|
||||||
url = U
|
uri = U
|
||||||
|
|
||||||
[subscription]
|
[subscription]
|
||||||
subscriber = 129
|
subscriber = 129
|
||||||
@ -67,6 +70,7 @@ id = 129
|
|||||||
nickname = 2
|
nickname = 2
|
||||||
password = 2
|
password = 2
|
||||||
email = 2
|
email = 2
|
||||||
|
uri = 2
|
||||||
created = 142
|
created = 142
|
||||||
modified = 384
|
modified = 384
|
||||||
|
|
||||||
@ -74,3 +78,4 @@ modified = 384
|
|||||||
id = K
|
id = K
|
||||||
nickname = U
|
nickname = U
|
||||||
email = U
|
email = U
|
||||||
|
uri = U
|
||||||
|
Loading…
Reference in New Issue
Block a user