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.
kamailio/modules_s/pdt/doc/pdt.sql

15 lines
224 B

-- SQL script for PDT module
DROP DATABASE IF EXISTS pdt;
CREATE DATABASE pdt;
USE pdt;
-- create table
CREATE TABLE prefix_domain (
prefix VARCHAR(32) NOT NULL PRIMARY KEY,
domain VARCHAR(255) NOT NULL DEFAULT ""
);