diff --git a/tweet_feed.install b/tweet_feed.install
index eb659eb..67e7da5 100644
--- a/tweet_feed.install
+++ b/tweet_feed.install
@@ -42,6 +42,11 @@ function tweet_feed_schema() {
         'type' => 'varchar',
         'length' => 24,
         'not null' => TRUE),
+      'name' => array(
+        'description' => 'The name of the person tweeting',
+        'type' => 'varchar',
+        'length' => 20,
+        'not null' => TRUE),
       'hashtags' => array(
         'description' => 'A comma separated list of hashtags without the hash.',
         'type' => 'varchar',
@@ -133,3 +138,11 @@ function tweet_feed_update_7111() {
   $schema = tweet_feed_schema();
   db_add_field('tweet_feed', 'profile_image_https_url', $schema['tweet_feed']['fields']['profile_image_https_url']);
 }
+
+/**
+ * Add the field for holding the real name of the person tweeting.
+ */
+function tweet_feed_update_7112(){
+  $schema = tweet_feed_schema();
+  db_add_field('tweet_feed', 'name', $schema['tweet_feed']['fields']['name']);
+}
diff --git a/tweet_feed.module b/tweet_feed.module
index 6f686ef..6bdc5a7 100644
--- a/tweet_feed.module
+++ b/tweet_feed.module
@@ -248,9 +248,10 @@ function tweet_feed_process_tweets($tdata) {
         
         $lowest_id = ($key == 0) ? $tweet->id : $lowest_id;
         $lowest_id = ($tweet->id < $lowest_id) ? $tweet->id : $lowest_id;
-        
+
         $tweet_html = tweet_feed_format_output($tweet->text);
         $hashtags = tweet_feed_get_hashtags($tweet->entities->hashtags);
+
         $data = array(
           'tweet' => utf8_encode($tweet_html),
           'created_at' => $creation_timestamp,
@@ -258,6 +259,7 @@ function tweet_feed_process_tweets($tdata) {
           'profile_image_url' => $tweet->user->profile_image_url,
           'profile_image_https_url' => $tweet->user->profile_image_url_https,
           'screen_name' => $tweet->user->screen_name,
+          'name' => $tweet->user->name,
           'hashtags' => $hashtags,
           'tweet_id' => $tweet->id,
         );
diff --git a/tweet_feed.views.inc b/tweet_feed.views.inc
index e826429..8a58f03 100644
--- a/tweet_feed.views.inc
+++ b/tweet_feed.views.inc
@@ -84,6 +84,13 @@ function tweet_feed_views_data() {
           'handler' => 'views_handler_field',
         ),
       ),
+      'name' => array(
+        'title' => t('Name'),
+        'help' => t('The full name of the tweeter.'),
+        'field' => array(
+          'handler' => 'views_handler_field',
+        ),
+      ),
       'hashtags' => array(
         'title' => t('Hashtags'),
         'help' => t('The Hashtags associated with a tweet.'),
