flag_actions.install
1.99 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/**
* @file
* Flag actions install file.
*/
/**
* Implements hook_uninstall().
*/
function flag_actions_uninstall() {
}
/**
* Implements hook_schema().
*/
function flag_actions_schema() {
$schema = array();
$schema['flag_actions'] = array(
'fields' => array(
'aid' => array(
'type' => 'serial',
'not null' => TRUE,
'disp-width' => '5',
),
'fid' => array(
'type' => 'int',
'size' => 'small',
'not null' => FALSE,
'disp-width' => '5',
),
'event' => array(
'type' => 'varchar',
'length' => '255',
'not null' => FALSE,
),
'threshold' => array(
'type' => 'int',
'size' => 'small',
'not null' => TRUE,
'default' => 0,
'disp-width' => '5',
),
'repeat_threshold' => array(
'type' => 'int',
'size' => 'small',
'not null' => TRUE,
'default' => 0,
'disp-width' => '5',
),
'callback' => array(
'type' => 'varchar',
'length' => '255',
'not null' => TRUE,
'default' => '',
),
'parameters' => array(
'type' => 'text',
'size' => 'big',
'not null' => TRUE,
),
),
'primary key' => array('aid'),
);
return $schema;
}
/**
* Add a "repeat_threshold" value to all existing Flag actions.
*/
function flag_actions_update_6200() {
// Add the new repeat_threshold column.
if (!db_field_exists('flag_actions', 'repeat_threshold')) {
$column = array(
'type' => 'int',
'size' => 'small',
'not null' => TRUE,
'default' => 0,
'disp-width' => '5',
);
db_add_field('flag_actions', 'repeat_threshold', $column);
}
// Update the normal threshold column to default to 0.
$column = array(
'type' => 'int',
'size' => 'small',
'not null' => TRUE,
'default' => 0,
'disp-width' => '5',
);
db_change_field('flag_actions', 'threshold', 'threshold', $column);
}