Skip to content

Commit

Permalink
fix(sql): undo SQL_NOTES change from #154
Browse files Browse the repository at this point in the history
  • Loading branch information
thelindat committed Jul 25, 2024
1 parent c1134da commit 90b4236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;

/*!40111 SET @OLD_SQL_NOTES=@@NOTE_VERBOSITY, NOTE_VERBOSITY=0 */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

CREATE DATABASE IF NOT EXISTS `overextended` DEFAULT CHARACTER
SET utf8mb4 COLLATE utf8mb4_unicode_ci;
Expand Down Expand Up @@ -214,4 +214,4 @@ CREATE TABLE IF NOT EXISTS `accounts_transactions` (

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;

/*!40111 SET NOTE_VERBOSITY=IFNULL(@OLD_SQL_NOTES, 1) */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;

0 comments on commit 90b4236

Please sign in to comment.