From 8ca30e8cd3524e728fd9d4db05d6fd6fa2bc9d32 Mon Sep 17 00:00:00 2001 From: Roberto Sánchez <roberto.sanchez@curisit.net> Date: Tue, 07 Jan 2014 18:32:12 +0000 Subject: [PATCH] #394 feature - Added first Java RestFul resource and JS form part --- securis/src/main/resources/db/schema.sql | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/securis/src/main/resources/db/schema.sql b/securis/src/main/resources/db/schema.sql index b631c95..e26e417 100644 --- a/securis/src/main/resources/db/schema.sql +++ b/securis/src/main/resources/db/schema.sql @@ -20,7 +20,7 @@ drop table IF EXISTS application; CREATE TABLE IF NOT EXISTS application ( - id INT NOT NULL, + id INT NOT NULL auto_increment, name VARCHAR(45) NOT NULL , description VARCHAR(500) NULL , creation_timestamp DATETIME NULL , @@ -29,7 +29,7 @@ drop table IF EXISTS license_type; CREATE TABLE IF NOT EXISTS license_type ( - id INT NOT NULL, + id INT NOT NULL auto_increment, code VARCHAR(10) NOT NULL , name VARCHAR(45) NOT NULL , description VARCHAR(100) NULL , -- Gitblit v1.3.2