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/prefix_route/prefix_route.sql

12 lines
235 B

-- SQL script for prefix route module
USE ser;
-- create the table
CREATE TABLE prefix_route (
prefix VARCHAR(64) NOT NULL DEFAULT "",
route VARCHAR(64) NOT NULL DEFAULT "",
comment VARCHAR(64) NOT NULL DEFAULT ""
);