40 lines
1.1 KiB
Transact-SQL
40 lines
1.1 KiB
Transact-SQL
--
|
|
-- Table structure for table 'dhcpippool'
|
|
--
|
|
-- See also "procedure.sql" in this directory for
|
|
-- a stored procedure that gives much faster response.
|
|
--
|
|
|
|
CREATE TABLE dhcpstatus (
|
|
status_id int NOT NULL,
|
|
status varchar(10) NOT NULL,
|
|
PRIMARY KEY (status_id)
|
|
)
|
|
GO
|
|
|
|
INSERT INTO dhcpstatus (status_id, status) VALUES (1, 'dynamic'), (2, 'static'), (3, 'declined'), (4, 'disabled')
|
|
GO
|
|
|
|
CREATE TABLE dhcpippool (
|
|
id int IDENTITY (1,1) NOT NULL,
|
|
pool_name varchar(30) NOT NULL,
|
|
FramedIPAddress varchar(15) NOT NULL default '',
|
|
pool_key varchar(30) NOT NULL default '',
|
|
gateway varchar(15) NOT NULL default '',
|
|
expiry_time DATETIME NOT NULL default CURRENT_TIMESTAMP,
|
|
status_id int NOT NULL default 1,
|
|
counter int NOT NULL default 0,
|
|
CONSTRAINT fk_status_id FOREIGN KEY (status_id) REFERENCES dhcpstatus (status_id),
|
|
PRIMARY KEY (id)
|
|
)
|
|
GO
|
|
|
|
CREATE INDEX dhcp_poolname_expire ON dhcpippool(pool_name, expiry_time)
|
|
GO
|
|
|
|
CREATE INDEX dhcp_FramedIPAddress ON dhcpippool(FramedIPAddress)
|
|
GO
|
|
|
|
CREATE INDEX dhcp_poolname_poolkey_FramedIPAddress ON dhcpippool(pool_name, pool_key, FramedIPAddress)
|
|
GO
|
|
|