diff --git a/model.install b/model.install
index d0e0806..7cc292e 100644
--- a/model.install
+++ b/model.install
@@ -69,7 +69,7 @@ function model_schema() {
     ),
   );
 
-  $schema['model_type'] = array(
+  $schema['model_types'] = array(
     'description' => 'Stores information about defined model types.',
     'fields' => array(
       'id' => array(
diff --git a/model.module b/model.module
index bae3573..5f00617 100644
--- a/model.module
+++ b/model.module
@@ -52,7 +52,7 @@ function model_entity_info() {
     'label' => t('Model Type'),
     'entity class' => 'ModelType',
     'controller class' => 'ModelTypeController',
-    'base table' => 'model_type',
+    'base table' => 'model_types',
     'fieldable' => FALSE,
     'bundle of' => 'model',
     'exportable' => TRUE,
