12 lines
199 B
MySQL
12 lines
199 B
MySQL
|
-- Verify camper:payment_customer__-acsi_card on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select 1 / (1 - count(*))
|
||
|
from pg_attribute
|
||
|
where attrelid = 'camper.payment_customer'::regclass
|
||
|
and attname = 'acsi_card'
|
||
|
;
|
||
|
|
||
|
rollback;
|