Workout With Friends
Stay fit with a little motivation
 All Classes Namespaces Files Functions Variables Properties
Static Public Attributes | Static Private Attributes | List of all members
wowf.models.pivot_tables.Buddy Class Reference

Pivot table between users and the users they follow. More...

Inheritance diagram for wowf.models.pivot_tables.Buddy:
Inheritance graph
Collaboration diagram for wowf.models.pivot_tables.Buddy:
Collaboration graph

Static Public Attributes

tuple user_id
tuple buddy_id
- Static Public Attributes inherited from wowf.models.meta.Base
tuple query = DBSession.query_property()
- Static Public Attributes inherited from wowf.lib.fulltext.FulltextBase
list index_fields = []

Static Private Attributes

string __tablename__ = 'buddies'

Additional Inherited Members

- Public Member Functions inherited from wowf.models.meta.Base
def __str__
def __repr__
def __unicode__
def get_by_id
def create
def delete

Detailed Description

Pivot table between users and the users they follow.

Definition at line 11 of file pivot_tables.py.

Member Data Documentation

string wowf.models.pivot_tables.Buddy.__tablename__ = 'buddies'
staticprivate

Definition at line 13 of file pivot_tables.py.

tuple wowf.models.pivot_tables.Buddy.buddy_id
static
Initial value:
Column(
Integer(unsigned=True), ForeignKey('users.id', ondelete='cascade'),
primary_key=True, autoincrement=False)

Definition at line 17 of file pivot_tables.py.

tuple wowf.models.pivot_tables.Buddy.user_id
static
Initial value:
Column(
Integer(unsigned=True), ForeignKey('users.id', ondelete='cascade'),
primary_key=True, autoincrement=False)

Definition at line 14 of file pivot_tables.py.


The documentation for this class was generated from the following file: