Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reserve windows crate names. #695

Merged
Merged
Changes from all commits
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

@@ -0,0 +1,4 @@
DELETE FROM reserved_crate_names WHERE name IN
('nul', 'con', 'prn', 'aux', 'com1', 'com2', 'com3', 'com4',
'com5', 'com6', 'com7', 'com8', 'com9', 'lpt1', 'lpt2',
'lpt3', 'lpt4', 'lpt5', 'lpt6', 'lpt7', 'lpt8', 'lpt9');
@@ -0,0 +1,4 @@
INSERT INTO reserved_crate_names (name) VALUES
('nul'), ('con'), ('prn'), ('aux'), ('com1'), ('com2'), ('com3'), ('com4'),
('com5'), ('com6'), ('com7'), ('com8'), ('com9'), ('lpt1'), ('lpt2'),
('lpt3'), ('lpt4'), ('lpt5'), ('lpt6'), ('lpt7'), ('lpt8'), ('lpt9');
ProTip! Use n and p to navigate between commits in a pull request.