mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
Issue 1743: Cannot create table with autoincrement column - MSSQL
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10459 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a75e4a6384
commit
e8315e2efe
1 changed files with 1 additions and 1 deletions
|
|
@ -367,7 +367,7 @@
|
|||
$column_schema[] = sprintf("primary key (%s)", '"'.implode($primary_list,'","').'"');
|
||||
}
|
||||
|
||||
$schema = sprintf('create table [%s] (xe_seq int identity(1,1),%s%s)', $this->addQuotes($table_name), "\n", implode($column_schema,",\n"));
|
||||
$schema = sprintf('create table [%s] (%s%s)', $this->addQuotes($table_name), "\n", implode($column_schema,",\n"));
|
||||
$output = $this->_query($schema);
|
||||
if(!$output) return false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue