-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLudoDBRevision.php
More file actions
34 lines (34 loc) · 855 Bytes
/
LudoDBRevision.php
File metadata and controls
34 lines (34 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* Revision
* User: Alf Magne Kalleland
* Date: 04.06.13
* Time: 01:26
*/
class LudoDBRevision extends LudoDBModel
{
protected $config = array(
'idField' => 'id',
'table' => 'LudoDBRevision',
'columns' => array(
'id' => 'int auto_increment not null primary key',
'model' => array(
'db' => 'varchar(255)',
'access' => 'rw'
),
'arguments' => array(
'db' => 'varchar(4000)',
'access' => 'rw'
),
'data' => array(
'db' => 'mediumtext',
'access' => 'rw'
),
'created' => array(
'db' => 'datetime',
'access' => 'r'
)
),
'indexes' => array('model','arguments')
);
}