Data with which we can determine how widespread actual HTML5 and CSS3 capability is.
This commit is contained in:
skull132
2016-10-01 14:11:12 +03:00
committed by GitHub
parent 95ec4b958f
commit 66fa45b588
6 changed files with 48 additions and 0 deletions

View File

@@ -486,3 +486,15 @@ CREATE TABLE `ss13_whitelist_statuses` (
`status_name` varchar(32) NOT NULL,
PRIMARY KEY (`status_name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `ss13_stats_ie` (
`ckey` varchar(32) NOT NULL,
`IsIE` tinyint(4) NOT NULL,
`IsEdge` tinyint(4) NOT NULL,
`EdgeHtmlVersion` int(11) NOT NULL,
`TrueVersion` tinyint(4) NOT NULL,
`ActingVersion` tinyint(4) NOT NULL,
`CompatibilityMode` tinyint(4) NOT NULL,
`DateUpdated` datetime DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;