summaryrefslogtreecommitdiffstats
path: root/src/Utils/Table.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Utils/Table.php')
-rw-r--r--src/Utils/Table.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Utils/Table.php b/src/Utils/Table.php
index 95b6850..86ccbfb 100644
--- a/src/Utils/Table.php
+++ b/src/Utils/Table.php
@@ -43,7 +43,6 @@ class Table
$ret = array();
foreach ($statement->fields as $field) {
-
if ((empty($field->key)) || ($field->key->type !== 'FOREIGN KEY')) {
continue;
}
@@ -93,7 +92,6 @@ class Table
$ret = array();
foreach ($statement->fields as $field) {
-
// Skipping keys.
if (empty($field->type)) {
continue;
@@ -105,7 +103,6 @@ class Table
);
if ($field->options) {
-
if ($field->type->name === 'TIMESTAMP') {
if ($field->options->has('NOT NULL')) {
$ret[$field->name]['timestamp_not_null'] = true;