Merge branch 'fronkdev' into 'master'
Added Mailtemplate::renderBody() function See merge request fronk/thetool!631
This commit is contained in:
@@ -13,7 +13,7 @@ final class CreateMailtemplate extends AbstractMigration
|
||||
$table->addColumn("name", "string", ["null" => false, "limit" => 255]);
|
||||
$table->addColumn("code", "string", ["null" => false, "limit" => 64]);
|
||||
$table->addColumn("description", "string", ["null" => true, "default" => null, "limit" => 1024]);
|
||||
$table->addColumn("subject", "string", ["null" => false, "limit" => 255]);
|
||||
$table->addColumn("subject", "string", ["null" => true, "default" => null, "limit" => 255]);
|
||||
$table->addColumn("body_text", "text", ["null" => true, "default" => null]);
|
||||
$table->addColumn("body_html", "text", ["null" => true, "default" => null]);
|
||||
$table->addColumn("note", "text", ["null" => true, "default" => null]);
|
||||
|
||||
Reference in New Issue
Block a user