6 lines
158 B
PL/PgSQL
6 lines
158 B
PL/PgSQL
BEGIN;
|
|
DROP TRIGGER IF EXISTS update_lnwallets_update_ts on lnwallets;
|
|
DROP FUNCTION IF EXISTS lnwallets_update_ts();
|
|
DROP TABLE IF EXISTS lnwallets;
|
|
COMMIT;
|