Fix postgre table datatype
diff --git a/tests/mocks/database/schema/skeleton.php b/tests/mocks/database/schema/skeleton.php
index 53df73b..47e8bfd 100644
--- a/tests/mocks/database/schema/skeleton.php
+++ b/tests/mocks/database/schema/skeleton.php
@@ -12,7 +12,7 @@
 		// Job Table
 		$forge->add_field(array(
 			'id' => array(
-				'type' => 'INT',
+				'type' => 'INTEGER',
 				'constraint' => 3,
 			),
 			'name' => array(
@@ -21,11 +21,11 @@
 			),
 			'description' => array(
 				'type' => 'TEXT',
-				'constraint' => 0,
 			),
 		));
 		$forge->add_key('id', TRUE);
-		$forge->create_table('job', TRUE);
+		$res = $forge->create_table('job');
+		var_dump($res);
 	}
 
 	/**