Skip to content

Commit

Permalink
oops, single quotes not double for SQL
Browse files Browse the repository at this point in the history
  • Loading branch information
johndonor3 committed Oct 5, 2020
1 parent 81f3f45 commit 4b85c51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions schema/sdss5db/opsdb/opsdb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ ALTER TABLE ONLY opsdb.camera
-- Table data

INSERT INTO opsdb.exposure_flavor VALUES
(1, "Science"), (2, "Arc"), (3, "Flat"), (4, "Bias"),
(5, "Object"), (6, "Dark"), (7, "Sky"), (8, "Calib"),
(9, "LocalFlat"), (10, "SuperDark"), (11, "SuperFlat"),
(12, "DomeFlat"), (13, "QuartzFlat"), (14, "ArcLamp");
(1, 'Science'), (2, 'Arc'), (3, 'Flat'), (4, 'Bias'),
(5, 'Object'), (6, 'Dark'), (7, 'Sky'), (8, 'Calib'),
(9, 'LocalFlat'), (10, 'SuperDark'), (11, 'SuperFlat'),
(12, 'DomeFlat'), (13, 'QuartzFlat'), (14, 'ArcLamp');

INSERT INTO opsdb.survey VALUES (1, 'BHM'), (2, 'MWM');

Expand Down

0 comments on commit 4b85c51

Please sign in to comment.