diff options
author | chai <chaifix@163.com> | 2022-03-22 21:08:33 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-03-22 21:08:33 +0800 |
commit | ce16e68c3b5afd85cfb12a9c9d847e178ae03c8e (patch) | |
tree | 87a72f6abb8e633e55e056af6f7d3fffa34f977b | |
parent | f980b021f1f1df132c4599cb4c1fb127a1ae289a (diff) |
*sql
-rw-r--r-- | sql/musik.sql | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sql/musik.sql b/sql/musik.sql index 8d4233b..6e05000 100644 --- a/sql/musik.sql +++ b/sql/musik.sql @@ -10,7 +10,7 @@ Target Server Type : MYSQL Target Server Version : 50722 File Encoding : 65001 -Date: 2022-03-21 02:36:02 +Date: 2022-03-22 21:08:24 */ SET FOREIGN_KEY_CHECKS=0; @@ -25,7 +25,7 @@ CREATE TABLE `album` ( `description` text, `cover` text, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for album_music @@ -36,7 +36,7 @@ CREATE TABLE `album_music` ( `music_id` int(32) NOT NULL, `album_id` int(32) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for music @@ -50,7 +50,7 @@ CREATE TABLE `music` ( `cover` text, `project` text, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for music_tag @@ -61,7 +61,7 @@ CREATE TABLE `music_tag` ( `music_id` int(32) DEFAULT NULL, `tag_id` int(32) DEFAULT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for tags @@ -71,4 +71,4 @@ CREATE TABLE `tags` ( `id` int(32) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(128) NOT NULL, PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8; |