mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
383 B
19 lines
383 B
|
20 years ago
|
--
|
||
|
|
-- Drop the actual types (in cascade):
|
||
|
|
--
|
||
|
|
---------------------------------------------------
|
||
|
|
SET search_path = public;
|
||
|
|
|
||
|
|
DROP TYPE ean13 CASCADE;
|
||
|
|
DROP TYPE isbn13 CASCADE;
|
||
|
|
DROP TYPE ismn13 CASCADE;
|
||
|
|
DROP TYPE issn13 CASCADE;
|
||
|
|
DROP TYPE isbn CASCADE;
|
||
|
|
DROP TYPE ismn CASCADE;
|
||
|
|
DROP TYPE issn CASCADE;
|
||
|
|
DROP TYPE upc CASCADE;
|
||
|
|
|
||
|
|
DROP FUNCTION isn_weak();
|
||
|
|
DROP FUNCTION isn_weak(boolean);
|
||
|
|
|