From: edward Date: Tue, 9 Jan 2018 07:32:47 +0000 (+0800) Subject: sql/core_ip_access.sql X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=059f5db27fe46f401cdc25fa57af104ceb24e173 sql/core_ip_access.sql --- diff --git a/sql/core_ip_access.sql b/sql/core_ip_access.sql index 0429c019..57dd1222 100644 --- a/sql/core_ip_access.sql +++ b/sql/core_ip_access.sql @@ -1,10 +1,17 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -/** - * Author: edward - * Created: Jan 9, 2018 - */ +CREATE TABLE core_ip_access ( + id int(11) NOT NULL AUTO_INCREMENT, + PRIMARY KEY (id) +); + +ALTER TABLE core_ip_access ADD COLUMN ip VARCHAR(32) NOT NULL DEFAULT ''; + + + +ALTER TABLE core_locking ADD COLUMN on_id int(11) NOT NULL DEFAULT 0; +ALTER TABLE core_locking ADD COLUMN person_id int(11) NOT NULL DEFAULT 0; +ALTER TABLE core_locking ADD COLUMN created datetime ; + +alter table core_locking ADD INDEX lookup(on_table, on_id, person_id, created); +-- oops... - wrong name of pid. +alter table core_locking change column `int` id int(11) auto_increment not null; \ No newline at end of file