table('contact_us_form_submissions', ['id' => false, 'primary_key' => ['id']]); $table->addColumn('id', 'uuid', [ 'default' => null, 'null' => false, ]); $table->addColumn('submitted_at', 'datetime', [ 'default' => null, 'null' => false, ]); $table->addColumn('client_ip', 'string', [ 'default' => null, 'limit' => 45, 'null' => false, ]); $table->addColumn('name', 'string', [ 'default' => null, 'limit' => 255, 'null' => false, ]); $table->addColumn('email', 'string', [ 'default' => null, 'limit' => 255, 'null' => true, ]); $table->addColumn('subject', 'string', [ 'default' => null, 'limit' => 255, 'null' => true, ]); $table->addColumn('message', 'text', [ 'default' => null, 'null' => false, ]); $table->addColumn('confirm_email_sent', 'datetime', [ 'default' => null, 'null' => true, ]); $table->addColumn('backend_email_sent', 'datetime', [ 'default' => null, 'null' => true, ]); $table->create(); } }