Merge pull request #18 from ClaySolutions/master

Add bigint support
This commit is contained in:
Damian Mooyman 2015-02-25 08:51:58 +13:00
commit dd23af4278

View File

@ -733,6 +733,16 @@ class MSSQLSchemaManager extends DBSchemaManager {
return 'int not null default ' . (int) $values['default'];
}
/**
* Return a bigint type-formatted string
*
* @params array $values Contains a tokenised list of info about this data type
* @return string
*/
public function bigint($values) {
return 'bigint not null default ' . (int) $values['default'];
}
/**
* Return a datetime type-formatted string
* For MS SQL, we simply return the word 'timestamp', no other parameters are necessary