Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Nov 3, 2023
1 parent da522cb commit bfd1c3b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/Support/Migrations/M231015155500ExecuteSql.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ public function up(MigrationBuilder $b): void
{
$b->execute(
<<<SQL
CREATE TABLE {{person}} (
[[id]] INT,
[[first_name]] VARCHAR(100),
[[last_name]] VARCHAR(100)
CREATE TABLE person (
id INT,
first_name VARCHAR(100),
last_name VARCHAR(100)
)
SQL,
);
}

public function down(MigrationBuilder $b): void
{
$b->execute('DROP TABLE {{person}}');
$b->execute('DROP TABLE person');
}
}

0 comments on commit bfd1c3b

Please sign in to comment.