Skip to content

Commit bccb467

Browse files
committed
Update MySQLTableTest.php
1 parent b472e32 commit bccb467

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/webfiori/database/tests/mysql/MySQLTableTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public function testMap00() {
205205
$this->assertEquals('[t]', $mappedInstance->getName());
206206
$this->assertEquals("if not exists (select * from sysobjects where name='t' and xtype='U')\n"
207207
. "create table [t] (\n"
208-
. " [user_id_super] [int] not null,\n"
208+
. " [user_id_super] [int] identity(1,1) not null,\n"
209209
. " [email_x] [varchar](256) not null,\n"
210210
. " constraint t_pk primary key clustered([user_id_super]) on [PRIMARY],\n"
211211
. " constraint fk_ok foreign key ([user_id_super], [email_x]) references [users] ([user_id], [email]) on update cascade on delete cascade,\n"

0 commit comments

Comments
 (0)