Skip to content

Commit

Permalink
removed auto_increment; fixed scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketMan committed May 19, 2018
1 parent 38244c2 commit b900ec1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion css/nostyle.css
Expand Up @@ -2,6 +2,9 @@ body {
font-family: Helvetica, Verdana, Arial, sans-serif;
background-color: #ffffff;
}
html {
overflow-y: scroll;
}
div.headerLogo {
float: left;
width: 200px;
Expand Down Expand Up @@ -29,4 +32,4 @@ div.headerNavbar span {
}
div.leftNav{
clear:both;
}
}
4 changes: 2 additions & 2 deletions db/zkdbSchema.sql
Expand Up @@ -57,7 +57,7 @@ CREATE TABLE IF NOT EXISTS `airnames` (
PRIMARY KEY (`id`),
UNIQUE KEY `airname_2` (`airname`),
KEY `airname` (`airname`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1299 ;
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;

-- --------------------------------------------------------

Expand Down Expand Up @@ -86,7 +86,7 @@ CREATE TABLE IF NOT EXISTS `albumvol` (
KEY `pubkey` (`pubkey`),
KEY `aat` (`artist`,`album`,`tag`),
FULLTEXT KEY `artist_2` (`artist`,`album`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=212193 ;
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ;

-- --------------------------------------------------------

Expand Down

0 comments on commit b900ec1

Please sign in to comment.