Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn committed Oct 28, 2024
1 parent ca095d8 commit 2cdeb02
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ public function up(): void
$this->db->query('CREATE OR REPLACE PROCEDURE plus(left IN NUMBER, right IN NUMBER, output OUT NUMBER) IS BEGIN output := left + right; END;');
$this->db->query('CREATE OR REPLACE PROCEDURE one(cursor OUT SYS_REFCURSOR) IS BEGIN open cursor for select 1 AS ONE from DUAL; END;');
}

if ($this->db->DBDriver === 'SQLSRV') {
$this->db->query('ALTER TABLE without_auto_increment ALTER COLUMN value VARCHAR(400) COLLATE Latin1_General_100_CS_AS_SC_UTF8');
}
}

public function down(): void
Expand Down

0 comments on commit 2cdeb02

Please sign in to comment.