Skip to content

Commit

Permalink
drop member table if member table exists.
Browse files Browse the repository at this point in the history
Signed-off-by: Hankyuhyun <[email protected]>
  • Loading branch information
kyudori committed Sep 2, 2023
1 parent 43f8f5b commit 1c310af
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/resources/database_dump.sql
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ CREATE TABLE `queue` (
-- Table structure for table `member`
--

DROP TABLE IF EXISTS `member`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `member` (
`member_id` bigint(20) PRIMARY KEY NOT NULL AUTO_INCREMENT,
`e-mail` varchar(255) NOT NULL,
Expand Down

0 comments on commit 1c310af

Please sign in to comment.