root/contributed_modules/modules/chan_sccp/uninstall.php

Revision 7463, 308 bytes (checked in by pnlarsson, 3 years ago)

A helper module for chan_sccb, v0.1

Line 
1 <?php
2
3 global $db;
4
5 echo "dropping table chan_mac..";
6 sql("DROP TABLE IF EXISTS `chan_mac`");
7 echo "done<br>\n";
8
9 echo "dropping table chanline..";
10 sql("DROP TABLE IF EXISTS `chanline`");
11 echo "done<br>\n";
12
13 echo "dropping table chandevice..";
14 sql("DROP TABLE IF EXISTS `chandevice`");
15 echo "done<br>\n";
16 ?>
Note: See TracBrowser for help on using the browser.