@@ -19,6 +19,8 @@ class EmailQueueFixture extends TestFixture
1919 public $ fields = array (
2020 'id ' => array ('type ' => 'uuid ' , 'null ' => false ),
2121 '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 ' ),
2224 'subject ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 255 , 'collate ' => 'utf8_general_ci ' , 'charset ' => 'utf8 ' ),
2325 'config ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 30 , 'collate ' => 'utf8_general_ci ' , 'charset ' => 'utf8 ' ),
2426 'template ' => array ('type ' => 'string ' , 'null ' => false , 'default ' => null , 'length ' => 50 , 'collate ' => 'utf8_general_ci ' , 'charset ' => 'utf8 ' ),
@@ -44,6 +46,8 @@ class EmailQueueFixture extends TestFixture
4446 array (
4547 'id ' => 'email-1 ' ,
4648 'email ' => 'example@example.com ' ,
49+ 'from_name ' => null ,
50+ 'from_email ' => null ,
4751 'subject ' => 'Free dealz ' ,
4852 'config ' => 'default ' ,
4953 'template ' => 'default ' ,
@@ -61,6 +65,8 @@ class EmailQueueFixture extends TestFixture
6165 array (
6266 'id ' => 'email-2 ' ,
6367 'email ' => 'example2@example.com ' ,
68+ 'from_name ' => null ,
69+ 'from_email ' => null ,
6470 'subject ' => 'Free dealz ' ,
6571 'config ' => 'default ' ,
6672 'template ' => 'default ' ,
@@ -78,6 +84,8 @@ class EmailQueueFixture extends TestFixture
7884 array (
7985 'id ' => 'email-3 ' ,
8086 'email ' => 'example3@example.com ' ,
87+ 'from_name ' => null ,
88+ 'from_email ' => null ,
8189 'subject ' => 'Free dealz ' ,
8290 'config ' => 'default ' ,
8391 'template ' => 'default ' ,
@@ -95,6 +103,8 @@ class EmailQueueFixture extends TestFixture
95103 array (
96104 'id ' => 'email-4 ' ,
97105 'email ' => 'example@example.com ' ,
106+ 'from_name ' => null ,
107+ 'from_email ' => null ,
98108 'subject ' => 'Free dealz ' ,
99109 'config ' => 'default ' ,
100110 'template ' => 'default ' ,
@@ -112,6 +122,8 @@ class EmailQueueFixture extends TestFixture
112122 array (
113123 'id ' => 'email-5 ' ,
114124 'email ' => 'example@example.com ' ,
125+ 'from_name ' => null ,
126+ 'from_email ' => null ,
115127 'subject ' => 'Free dealz ' ,
116128 'config ' => 'default ' ,
117129 'template ' => 'default ' ,
@@ -129,6 +141,8 @@ class EmailQueueFixture extends TestFixture
129141 array (
130142 'id ' => 'email-6 ' ,
131143 'email ' => 'example@example.com ' ,
144+ 'from_name ' => null ,
145+ 'from_email ' => null ,
132146 'subject ' => 'Free dealz ' ,
133147 'config ' => 'default ' ,
134148 'template ' => 'default ' ,
0 commit comments