Skip to content
Snippets Groups Projects
Commit 11ffa4f0 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Drop the db_current view, it's not needed.

parent d7a4100f
No related branches found
No related tags found
No related merge requests found
......@@ -121,16 +121,6 @@ FROM species
JOIN db USING (species_id)
WHERE species.is_current = 1;
CREATE VIEW db_current AS
SELECT
species.species_id AS species_id,
db.db_id AS db_id,
db.db_type AS db_type
FROM db
JOIN species USING (species_id)
WHERE species.is_current = 1
AND db.is_current = 1;
-- CREATE VIEW readable_web_data AS
-- SELECT CONCAT('{',
-- GROUP_CONCAT(data SEPARATOR ','),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment