Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92257849
models.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 18, 20:32
Size
5 KB
Mime Type
text/x-python
Expires
Wed, Nov 20, 20:32 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22406618
Attached To
R3600 invenio-infoscience
models.py
View Options
# -*- coding: utf-8 -*-
#
## This file is part of Invenio.
## Copyright (C) 2011, 2012, 2014 CERN.
##
## Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## Invenio 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
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
"""
bibauthorid database models.
"""
# General imports.
from
invenio.ext.sqlalchemy
import
db
# Create your models here.
from
invenio.modules.accounts.models
import
User
#FIX ME Add db.relationships
class
AidCACHE
(
db
.
Model
):
"""Represents a AidCACHE record."""
__tablename__
=
'aidCACHE'
id
=
db
.
Column
(
db
.
Integer
(
15
),
nullable
=
False
,
primary_key
=
True
,
autoincrement
=
True
)
object_name
=
db
.
Column
(
db
.
String
(
120
),
nullable
=
False
,
index
=
True
)
object_key
=
db
.
Column
(
db
.
String
(
120
),
nullable
=
False
,
index
=
True
)
object_value
=
db
.
Column
(
db
.
Text
,
nullable
=
True
)
last_updated
=
db
.
Column
(
db
.
DateTime
,
nullable
=
False
,
index
=
True
)
class
AidUSERINPUTLOG
(
db
.
Model
):
"""Represents a AidUSERINPUTLOG record."""
__tablename__
=
'aidUSERINPUTLOG'
id
=
db
.
Column
(
db
.
BigInteger
(
15
),
nullable
=
False
,
primary_key
=
True
,
autoincrement
=
True
)
transactionid
=
db
.
Column
(
db
.
BigInteger
(
15
),
nullable
=
False
,
index
=
True
)
timestamp
=
db
.
Column
(
db
.
DateTime
,
nullable
=
False
,
index
=
True
)
userinfo
=
db
.
Column
(
db
.
String
(
255
),
nullable
=
False
,
index
=
True
)
userid
=
db
.
Column
(
db
.
Integer
(
15
,
unsigned
=
True
),
db
.
ForeignKey
(
User
.
id
),
nullable
=
True
)
personid
=
db
.
Column
(
db
.
BigInteger
(
15
),
nullable
=
False
,
index
=
True
)
action
=
db
.
Column
(
db
.
String
(
50
),
nullable
=
False
,
index
=
True
)
tag
=
db
.
Column
(
db
.
String
(
50
),
nullable
=
False
,
index
=
True
)
value
=
db
.
Column
(
db
.
String
(
200
),
nullable
=
False
,
index
=
True
)
comment
=
db
.
Column
(
db
.
Text
,
nullable
=
True
)
class
AidPERSONIDDATA
(
db
.
Model
):
"""Represents a AidPERSONIDDATA record."""
__tablename__
=
'aidPERSONIDDATA'
personid
=
db
.
Column
(
db
.
BigInteger
,
primary_key
=
True
,
nullable
=
False
)
tag
=
db
.
Column
(
db
.
String
(
64
),
primary_key
=
True
,
nullable
=
False
,
index
=
True
)
data
=
db
.
Column
(
db
.
String
(
256
),
nullable
=
False
,
index
=
True
)
opt1
=
db
.
Column
(
db
.
MediumInteger
(
8
),
index
=
True
)
opt2
=
db
.
Column
(
db
.
MediumInteger
(
8
))
opt3
=
db
.
Column
(
db
.
String
(
256
))
class
AidPERSONIDPAPERS
(
db
.
Model
):
"""Represents a AidPERSONIDPAPERS record."""
__tablename__
=
'aidPERSONIDPAPERS'
personid
=
db
.
Column
(
db
.
BigInteger
(
16
,
unsigned
=
True
),
primary_key
=
True
,
nullable
=
False
,
index
=
True
)
bibref_table
=
db
.
Column
(
db
.
Enum
(
'100'
,
'700'
,
name
=
'aidpps_bibref_table'
),
primary_key
=
True
,
nullable
=
False
,
index
=
True
)
bibref_value
=
db
.
Column
(
db
.
Integer
(
11
,
unsigned
=
True
),
primary_key
=
True
,
nullable
=
False
,
index
=
True
)
bibrec
=
db
.
Column
(
db
.
MediumInteger
(
8
,
unsigned
=
True
),
primary_key
=
True
,
nullable
=
False
,
index
=
True
)
name
=
db
.
Column
(
db
.
String
(
256
),
nullable
=
False
,
index
=
True
)
flag
=
db
.
Column
(
db
.
SmallInteger
(
2
),
nullable
=
False
,
index
=
True
,
server_default
=
'0'
)
lcul
=
db
.
Column
(
db
.
SmallInteger
(
2
),
nullable
=
False
,
server_default
=
'0'
)
last_updated
=
db
.
Column
(
db
.
TIMESTAMP
,
nullable
=
False
,
index
=
True
,
server_onupdate
=
db
.
func
.
current_timestamp
(),
server_default
=
db
.
func
.
current_timestamp
())
__table_args__
=
(
db
.
Index
(
'pn-b'
,
personid
,
name
),
db
.
Model
.
__table_args__
)
class
AidRESULTS
(
db
.
Model
):
"""Represents a AidRESULTS record."""
__tablename__
=
'aidRESULTS'
personid
=
db
.
Column
(
db
.
String
(
128
),
primary_key
=
True
,
nullable
=
False
,
index
=
True
)
bibref_table
=
db
.
Column
(
db
.
Enum
(
'100'
,
'700'
,
name
=
'aidres_bibref_table'
),
primary_key
=
True
,
nullable
=
False
,
index
=
True
)
bibref_value
=
db
.
Column
(
db
.
MediumInteger
(
8
,
unsigned
=
True
),
primary_key
=
True
,
nullable
=
False
,
index
=
True
,
autoincrement
=
False
)
bibrec
=
db
.
Column
(
db
.
MediumInteger
(
8
,
unsigned
=
True
),
primary_key
=
True
,
nullable
=
False
,
index
=
True
,
autoincrement
=
False
)
class
AidDENSEINDEX
(
db
.
Model
):
"""Represents an AidDENSEINDEX record."""
__tablename__
=
'aidDENSEINDEX'
name_id
=
db
.
Column
(
db
.
Integer
(
10
),
primary_key
=
True
,
nullable
=
False
,
autoincrement
=
False
)
person_name
=
db
.
Column
(
db
.
String
(
256
),
nullable
=
False
)
personids
=
db
.
Column
(
db
.
iLargeBinary
,
nullable
=
False
)
class
AidINVERTEDLISTS
(
db
.
Model
):
"""Represents an AidINVERTEDLISTS record."""
__tablename__
=
'aidINVERTEDLISTS'
qgram
=
db
.
Column
(
db
.
String
(
4
),
primary_key
=
True
,
nullable
=
False
,
autoincrement
=
False
)
inverted_list
=
db
.
Column
(
db
.
iLargeBinary
,
nullable
=
False
)
list_cardinality
=
db
.
Column
(
db
.
Integer
(
10
),
nullable
=
False
)
__all__
=
[
'AidCACHE'
,
'AidDENSEINDEX'
,
'AidINVERTEDLISTS'
,
'AidPERSONIDDATA'
,
'AidPERSONIDPAPERS'
,
'AidRESULTS'
,
'AidUSERINPUTLOG'
]
Event Timeline
Log In to Comment