Skip to content

Commit

Permalink
Minor test improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
aimeos committed Nov 6, 2024
1 parent 403bf71 commit 2fc9b67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Tasks/create/Create.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function up()

$db = $this->db( 'test' );

$db->sequence( 'seq_test' )->start( 1000 );
$db->sequence( 'testseq' )->start( 1000 );

$db->table( 'test', function( Table $t ) {

Expand All @@ -38,7 +38,7 @@ public function up()
// $t->time( 'time' ); // not supported by Oracle
$t->guid( 'uuid' );
$t->default();
$t->uuid( 'uid2' )->null( true )->custom( 'UUID DEFAULT gen_random_uuid() NOT NULL', 'postgresql' );
$t->uuid( 'uid2' )->null( true )->custom( 'UUID DEFAULT gen_random_uuid()', 'postgresql' );

$t->unique( 'code', 'unq_code' );
$t->index( ['status', 'pos'], 'idx_status_type' );
Expand Down

0 comments on commit 2fc9b67

Please sign in to comment.