FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cakephp_queue/config/migrations/dump.php at master · keycoder/cakephp_queue · GitHub
keycoder
/
cakephp_queue
Public
forked from
MSeven/cakephp_queue
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
cakephp_queue
/
config
/
migrations
/
dump.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
70 lines (66 loc) · 2.45 KB
Breadcrumbs
cakephp_queue
/
config
/
migrations
/
dump.php
Copy path
File metadata and controls
70 lines (66 loc) · 2.45 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
<?php
class
M4dd01d0d5ad8474c96b4476d67d6201c
extends
CakeMigration {
/**
* Migration description
*
* @var string
* @access public
*/
public
$
description
=
''
;
/**
* Actions to be performed
*
* @var array $migration
* @access public
*/
public
$
migration
=
array
(
'
up
'
=>
array
(
'
create_table
'
=>
array
(
'
queued_tasks
'
=>
array
(
'
id
'
=>
array
(
'
type
'
=>
'
integer
'
,
'
null
'
=>
false
,
'
default
'
=>
NULL
,
'
length
'
=>
10
,
'
key
'
=>
'
primary
'
),
'
jobtype
'
=>
array
(
'
type
'
=>
'
string
'
,
'
null
'
=>
false
,
'
default
'
=>
NULL
,
'
length
'
=>
45
,
'
collate
'
=>
'
latin1_swedish_ci
'
,
'
charset
'
=>
'
latin1
'
),
'
data
'
=>
array
(
'
type
'
=>
'
text
'
,
'
null
'
=>
true
,
'
default
'
=>
NULL
,
'
collate
'
=>
'
latin1_swedish_ci
'
,
'
charset
'
=>
'
latin1
'
),
'
group
'
=>
array
(
'
type
'
=>
'
string
'
,
'
null
'
=>
true
,
'
default
'
=>
NULL
,
'
collate
'
=>
'
latin1_swedish_ci
'
,
'
charset
'
=>
'
latin1
'
),
'
reference
'
=>
array
(
'
type
'
=>
'
string
'
,
'
null
'
=>
true
,
'
default
'
=>
NULL
,
'
collate
'
=>
'
latin1_swedish_ci
'
,
'
charset
'
=>
'
latin1
'
),
'
created
'
=>
array
(
'
type
'
=>
'
datetime
'
,
'
null
'
=>
false
,
'
default
'
=>
NULL
),
'
notbefore
'
=>
array
(
'
type
'
=>
'
datetime
'
,
'
null
'
=>
true
,
'
default
'
=>
NULL
),
'
fetched
'
=>
array
(
'
type
'
=>
'
datetime
'
,
'
null
'
=>
true
,
'
default
'
=>
NULL
),
'
completed
'
=>
array
(
'
type
'
=>
'
datetime
'
,
'
null
'
=>
true
,
'
default
'
=>
NULL
),
'
failed
'
=>
array
(
'
type
'
=>
'
integer
'
,
'
null
'
=>
false
,
'
default
'
=>
'
0
'
,
'
length
'
=>
3
),
'
failure_message
'
=>
array
(
'
type
'
=>
'
text
'
,
'
null
'
=>
true
,
'
default
'
=>
NULL
,
'
collate
'
=>
'
latin1_swedish_ci
'
,
'
charset
'
=>
'
latin1
'
),
'
workerkey
'
=>
array
(
'
type
'
=>
'
string
'
,
'
null
'
=>
true
,
'
default
'
=>
NULL
,
'
length
'
=>
45
,
'
collate
'
=>
'
latin1_swedish_ci
'
,
'
charset
'
=>
'
latin1
'
),
'
indexes
'
=>
array
(
'
PRIMARY
'
=>
array
(
'
column
'
=>
'
id
'
,
'
unique
'
=>
1
),
),
'
tableParameters
'
=>
array
(
'
charset
'
=>
'
latin1
'
,
'
collate
'
=>
'
latin1_swedish_ci
'
,
'
engine
'
=>
'
MyISAM
'
),
),
),
),
'
down
'
=>
array
(
'
drop_table
'
=>
array
(
'
queued_tasks
'
),
),
);
/**
* Before migration callback
*
* @param string $direction, up or down direction of migration process
* @return boolean Should process continue
* @access public
*/
public
function
before
(
$
direction
) {
return
true
;
}
/**
* After migration callback
*
* @param string $direction, up or down direction of migration process
* @return boolean Should process continue
* @access public
*/
public
function
after
(
$
direction
) {
return
true
;
}
}
?>
Back
|
FazBrowse Home
|
New Git URL