src/Phinx/Db/Adapter/MysqlAdapter.php 1 location
|
@@ 383-391 (lines=9) @@
|
| 380 |
|
* @param mixed $default |
| 381 |
|
* @return string |
| 382 |
|
*/ |
| 383 |
|
protected function getDefaultValueDefinition($default) |
| 384 |
|
{ |
| 385 |
|
if (is_string($default) && 'CURRENT_TIMESTAMP' !== $default) { |
| 386 |
|
$default = $this->getConnection()->quote($default); |
| 387 |
|
} elseif (is_bool($default)) { |
| 388 |
|
$default = $this->castToBool($default); |
| 389 |
|
} |
| 390 |
|
|
| 391 |
|
return isset($default) ? ' DEFAULT ' . $default : ''; |
| 392 |
|
} |
| 393 |
|
|
| 394 |
|
/** |
src/Phinx/Db/Adapter/SQLiteAdapter.php 1 location
|
@@ 979-987 (lines=9) @@
|
| 976 |
|
* @param mixed $default |
| 977 |
|
* @return string |
| 978 |
|
*/ |
| 979 |
|
protected function getDefaultValueDefinition($default) |
| 980 |
|
{ |
| 981 |
|
if (is_string($default) && 'CURRENT_TIMESTAMP' !== $default) { |
| 982 |
|
$default = $this->getConnection()->quote($default); |
| 983 |
|
} elseif (is_bool($default)) { |
| 984 |
|
$default = $this->castToBool($default); |
| 985 |
|
} |
| 986 |
|
|
| 987 |
|
return isset($default) ? ' DEFAULT ' . $default : ''; |
| 988 |
|
} |
| 989 |
|
|
| 990 |
|
/** |
src/Phinx/Db/Adapter/SqlServerAdapter.php 1 location
|
@@ 1021-1029 (lines=9) @@
|
| 1018 |
|
* @param mixed $default |
| 1019 |
|
* @return string |
| 1020 |
|
*/ |
| 1021 |
|
protected function getDefaultValueDefinition($default) |
| 1022 |
|
{ |
| 1023 |
|
if (is_string($default) && 'CURRENT_TIMESTAMP' !== $default) { |
| 1024 |
|
$default = $this->getConnection()->quote($default); |
| 1025 |
|
} elseif (is_bool($default)) { |
| 1026 |
|
$default = $this->castToBool($default); |
| 1027 |
|
} |
| 1028 |
|
|
| 1029 |
|
return isset($default) ? ' DEFAULT ' . $default : ''; |
| 1030 |
|
} |
| 1031 |
|
|
| 1032 |
|
/** |
src/Phinx/Db/Adapter/PostgresAdapter.php 1 location
|
@@ 917-925 (lines=9) @@
|
| 914 |
|
* @param mixed $default |
| 915 |
|
* @return string |
| 916 |
|
*/ |
| 917 |
|
protected function getDefaultValueDefinition($default) |
| 918 |
|
{ |
| 919 |
|
if (is_string($default) && 'CURRENT_TIMESTAMP' !== $default) { |
| 920 |
|
$default = $this->getConnection()->quote($default); |
| 921 |
|
} elseif (is_bool($default)) { |
| 922 |
|
$default = $this->castToBool($default); |
| 923 |
|
} |
| 924 |
|
|
| 925 |
|
return isset($default) ? 'DEFAULT ' . $default : ''; |
| 926 |
|
} |
| 927 |
|
|
| 928 |
|
/** |