Commit ca075c03 authored by beberlei's avatar beberlei

Fixed a bug in Sqlite not specifying it supports auto-increment/identity (how...

Fixed a bug in Sqlite not specifying it supports auto-increment/identity (how did that work anyhow?)
parent 77dbcac3
...@@ -376,6 +376,11 @@ class SqlitePlatform extends AbstractPlatform ...@@ -376,6 +376,11 @@ class SqlitePlatform extends AbstractPlatform
return false; return false;
} }
public function supportsIdentityColumns()
{
return true;
}
/** /**
* Get the platform name for this instance * Get the platform name for this instance
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment