Skip to content

Commit f1e4e4d

Browse files
Merge pull request #695 from withoutboats/reserve_windows_crate_names
Reserve windows crate names.
2 parents e72ff88 + 35cea41 commit f1e4e4d

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
DELETE FROM reserved_crate_names WHERE name IN
2+
('nul', 'con', 'prn', 'aux', 'com1', 'com2', 'com3', 'com4',
3+
'com5', 'com6', 'com7', 'com8', 'com9', 'lpt1', 'lpt2',
4+
'lpt3', 'lpt4', 'lpt5', 'lpt6', 'lpt7', 'lpt8', 'lpt9');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
INSERT INTO reserved_crate_names (name) VALUES
2+
('nul'), ('con'), ('prn'), ('aux'), ('com1'), ('com2'), ('com3'), ('com4'),
3+
('com5'), ('com6'), ('com7'), ('com8'), ('com9'), ('lpt1'), ('lpt2'),
4+
('lpt3'), ('lpt4'), ('lpt5'), ('lpt6'), ('lpt7'), ('lpt8'), ('lpt9');

0 commit comments

Comments
 (0)