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