Re: [SR-Users] Kamailio 3.0.2 mysql create table domain definition

2010-07-28 Thread Daniel-Constantin Mierla
Hello, On 7/27/10 1:22 PM, Henning Westerholt wrote: On Monday 26 July 2010, Stagg Shelton wrote: The script in the source scripts/mysql/my_create.sql uses the the following definition CREATE TABLE domain ( did VARCHAR(64) NOT NULL, [..] ); The script in the source utils/kamctl/mys

Re: [SR-Users] Kamailio 3.0.2 mysql create table domain definition

2010-07-27 Thread Henning Westerholt
On Monday 26 July 2010, Stagg Shelton wrote: > The script in the source scripts/mysql/my_create.sql uses the the > following definition > > CREATE TABLE domain ( > did VARCHAR(64) NOT NULL, > [..] > ); > > The script in the source utils/kamctl/mysql/domain-create.sql uses the > following de

[SR-Users] Kamailio 3.0.2 mysql create table domain definition

2010-07-26 Thread Stagg Shelton
Hello, The script in the source scripts/mysql/my_create.sql uses the the following definition CREATE TABLE domain ( did VARCHAR(64) NOT NULL, domain VARCHAR(128) NOT NULL, flags INT UNSIGNED NOT NULL DEFAULT '0', UNIQUE KEY domain_idx (domain), KEY did_idx (did) ); The s