-
Notifications
You must be signed in to change notification settings - Fork 2
/
inc.schema.php
69 lines (67 loc) · 2.07 KB
/
inc.schema.php
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
return array(
'version' => 2,
'tables' => array(
'users' => array(
'columns' => array(
'id' => array('pk' => true),
'jira_url' => array('type' => 'text', 'null' => false),
'jira_user' => array('type' => 'text', 'null' => false),
'index_query' => array('type' => 'text'),
'index_project' => array('type' => 'text'),
'index_filter' => array('unsigned' => true),
'last_sync' => array('unsigned' => true),
'jira_timezone' => array('type' => 'text'),
'has_tempo' => array('unsigned' => true, 'default' => 1),
'created' => array('unsigned' => true, 'default' => 0),
'cache__custom_field_ids' => array('type' => 'blob'),
'cache__agile_boards' => array('type' => 'blob'),
),
'indexes' => array(
'user' => array(
'unique' => true,
'columns' => array('jira_url', 'jira_user'),
),
),
),
'options' => array(
'columns' => array(
'user_id' => array('unsigned' => true),
'name' => array('type' => 'text', 'null' => false),
'value' => array('type' => 'text'),
),
'indexes' => array(
'option' => array(
'unique' => true,
'columns' => array('user_id', 'name'),
),
),
),
'filters' => array(
'columns' => array(
'user_id' => array('unsigned' => true),
'filter_id' => array('unsigned' => true),
'name' => array('type' => 'text', 'null' => false),
'jql' => array('type' => 'text', 'null' => false),
),
'indexes' => array(
'filter' => array(
'unique' => true,
'columns' => array('user_id', 'filter_id'),
),
),
),
'variables' => array(
'columns' => array(
'id' => array('pk' => true),
'user_id' => array('unsigned' => true),
'name' => array('type' => 'text', 'null' => false),
'regex' => array('type' => 'text', 'null' => false),
'replacement' => array('type' => 'text', 'null' => false),
'value' => array('type' => 'text', 'null' => false, 'default' => 0),
'auto_update_type' => array('type' => 'text', 'null' => false, 'default' => ''),
'last_update' => array('unsigned' => true, 'default' => 0),
),
),
),
);