diff --git a/contact_emails.install b/contact_emails.install
index 670b990..510e359 100644
--- a/contact_emails.install
+++ b/contact_emails.install
@@ -72,6 +72,27 @@ function contact_emails_schema() {
         'default' => 0,
         'description' => 'Whether or not this email is disabled.',
       ],
+      'reply_to_field' => [
+        'type' => 'varchar',
+        'length' => 255,
+        'not null' => TRUE,
+        'default' => '',
+        'description' => 'The field to set the reply-to as if reply-to type is field.',
+      ],
+      'reply_to_email' => [
+        'type' => 'varchar',
+        'length' => 255,
+        'not null' => TRUE,
+        'default' => '',
+        'description' => 'The email to set the reply-to as if reply-to type is email.',
+      ],
+      'reply_to_type' => [
+        'type' => 'varchar',
+        'length' => 10,
+        'not null' => TRUE,
+        'default' => 'default',
+        'description' => 'The type of reply-to.',
+      ],
     ],
     'primary key' => ['id'],
     'indexes' => [
