mirror of
https://github.com/php/web-pecl.git
synced 2026-03-26 16:22:09 +01:00
Having synced file permissions in Git repositories is a reccurring issue. Git can track files as executables (0755) or not (0644). Usually, all files except the executable ones such as command line scripts or binary executables, should be set to 0644. This patch syncs permissions in the Git repository.
19 lines
521 B
SQL
19 lines
521 B
SQL
--
|
|
-- Table structure for table `package_stats`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `package_stats`;
|
|
|
|
CREATE TABLE `package_stats` (
|
|
`dl_number` mediumint(8) unsigned NOT NULL default '0',
|
|
`package` varchar(80) NOT NULL default '',
|
|
`release` varchar(20) NOT NULL default '',
|
|
`pid` int(11) NOT NULL default '0',
|
|
`rid` int(11) NOT NULL default '0',
|
|
`cid` int(11) NOT NULL default '0',
|
|
`last_dl` datetime NOT NULL default '0000-00-00 00:00:00',
|
|
PRIMARY KEY (`rid`,`pid`),
|
|
INDEX (`package`),
|
|
INDEX (`dl_number`)
|
|
);
|