first/last name instead ofj ust name, fix og migration instead of updating in second file sqlite issue

This commit is contained in:
2026-01-26 23:31:29 -08:00
parent ea1cb8cd29
commit 348665deb8
15 changed files with 74 additions and 94 deletions

View File

@@ -28,17 +28,22 @@ class CreateContactUsFormSubmissions extends AbstractMigration {
'limit' => 45,
'null' => true,
]);
$table->addColumn('name', 'string', [
$table->addColumn('first_name', 'string', [
'default' => null,
'limit' => 255,
'null' => false,
'null' => true,
]);
$table->addColumn('last_name', 'string', [
'default' => null,
'limit' => 255,
'null' => true,
]);
$table->addColumn('email', 'string', [
'default' => null,
'limit' => 255,
'null' => true,
]);
$table->addColumn('subject', 'string', [
$table->addColumn('contact_subject', 'string', [
'default' => null,
'limit' => 255,
'null' => true,