first/last name instead ofj ust name, fix og migration instead of updating in second file sqlite issue
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user