@@ -19,6 +19,8 @@ class EmailQueueFixture extends TestFixture
19
19
public $ fields = array (
20
20
'id ' => array ('type ' => 'uuid ' , 'null ' => false ),
21
21
'email ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 100 , 'collate ' => 'utf8_general_ci ' , 'charset ' => 'utf8 ' ),
22
+ 'from_name ' => array ('type ' => 'string ' , 'null ' => true , 'default ' => null , 'length ' => 100 , 'collate ' => 'utf8_general_ci ' , 'charset ' => 'utf8 ' ),
23
+ 'from_email ' => array ('type ' => 'string ' , 'null ' => true , 'default ' => null , 'length ' => 100 , 'collate ' => 'utf8_general_ci ' , 'charset ' => 'utf8 ' ),
22
24
'subject ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 255 , 'collate ' => 'utf8_general_ci ' , 'charset ' => 'utf8 ' ),
23
25
'config ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 30 , 'collate ' => 'utf8_general_ci ' , 'charset ' => 'utf8 ' ),
24
26
'template ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 50 , 'collate ' => 'utf8_general_ci ' , 'charset ' => 'utf8 ' ),
@@ -44,6 +46,8 @@ class EmailQueueFixture extends TestFixture
44
46
array (
45
47
'id ' => 'email-1 ' ,
46
48
49
+ 'from_name ' => null ,
50
+ 'from_email ' => null ,
47
51
'subject ' => 'Free dealz ' ,
48
52
'config ' => 'default ' ,
49
53
'template ' => 'default ' ,
@@ -61,6 +65,8 @@ class EmailQueueFixture extends TestFixture
61
65
array (
62
66
'id ' => 'email-2 ' ,
63
67
68
+ 'from_name ' => null ,
69
+ 'from_email ' => null ,
64
70
'subject ' => 'Free dealz ' ,
65
71
'config ' => 'default ' ,
66
72
'template ' => 'default ' ,
@@ -78,6 +84,8 @@ class EmailQueueFixture extends TestFixture
78
84
array (
79
85
'id ' => 'email-3 ' ,
80
86
87
+ 'from_name ' => null ,
88
+ 'from_email ' => null ,
81
89
'subject ' => 'Free dealz ' ,
82
90
'config ' => 'default ' ,
83
91
'template ' => 'default ' ,
@@ -95,6 +103,8 @@ class EmailQueueFixture extends TestFixture
95
103
array (
96
104
'id ' => 'email-4 ' ,
97
105
106
+ 'from_name ' => null ,
107
+ 'from_email ' => null ,
98
108
'subject ' => 'Free dealz ' ,
99
109
'config ' => 'default ' ,
100
110
'template ' => 'default ' ,
@@ -112,6 +122,8 @@ class EmailQueueFixture extends TestFixture
112
122
array (
113
123
'id ' => 'email-5 ' ,
114
124
125
+ 'from_name ' => null ,
126
+ 'from_email ' => null ,
115
127
'subject ' => 'Free dealz ' ,
116
128
'config ' => 'default ' ,
117
129
'template ' => 'default ' ,
@@ -129,6 +141,8 @@ class EmailQueueFixture extends TestFixture
129
141
array (
130
142
'id ' => 'email-6 ' ,
131
143
144
+ 'from_name ' => null ,
145
+ 'from_email ' => null ,
132
146
'subject ' => 'Free dealz ' ,
133
147
'config ' => 'default ' ,
134
148
'template ' => 'default ' ,
0 commit comments