-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
592a487
commit 9c27a84
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
Database/2-BaseUpdates/2019-06-16-00-Add_Version_Table.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
USE `ace_world`; | ||
|
||
-- | ||
-- Table structure for table `version` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `version`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
SET character_set_client = utf8mb4 ; | ||
CREATE TABLE `version` ( | ||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT, | ||
`base_Version` VARCHAR(45) NULL, | ||
`patch_Version` VARCHAR(45) NULL, | ||
`last_Modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Version Information'; | ||
/*!40101 SET character_set_client = @saved_cs_client */; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters