Skip to content

Commit

Permalink
database scripts 2.3 - objectSpecification - Authorization
Browse files Browse the repository at this point in the history
  • Loading branch information
garbika committed Mar 18, 2014
1 parent 8489d19 commit b6873bb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions config/sql/midpoint/2.3/h2/h2-2.3.sql
Expand Up @@ -194,6 +194,7 @@
create table m_authorization (
decision integer,
description clob,
objectSpecification clob,
owner_id bigint not null,
owner_oid varchar(36) not null,
id bigint not null,
Expand Down
1 change: 1 addition & 0 deletions config/sql/midpoint/2.3/mysql/mysql-2.3.sql
Expand Up @@ -204,6 +204,7 @@
create table m_authorization (
decision integer,
description longtext,
objectSpecification longtext,
owner_id bigint not null,
owner_oid varchar(36) not null,
id bigint not null,
Expand Down
2 changes: 1 addition & 1 deletion config/sql/midpoint/2.3/oracle/oracle-2.3.sql
@@ -1,6 +1,5 @@
-- INITRANS added because we use serializable transactions http://docs.oracle.com/cd/B14117_01/appdev.101/b10795/adfns_sq.htm#1025374
-- replace ");" with ") INITRANS 30;"

create table m_abstract_role (
approvalExpression clob,
approvalProcess varchar2(255 char),
Expand Down Expand Up @@ -196,6 +195,7 @@
create table m_authorization (
decision number(10,0),
description clob,
objectSpecification clob,
owner_id number(19,0) not null,
owner_oid varchar2(36 char) not null,
id number(19,0) not null,
Expand Down
1 change: 1 addition & 0 deletions config/sql/midpoint/2.3/postgresql/postgresql-2.3.sql
Expand Up @@ -194,6 +194,7 @@
create table m_authorization (
decision int4,
description text,
objectSpecification text,
owner_id int8 not null,
owner_oid varchar(36) not null,
id int8 not null,
Expand Down
1 change: 1 addition & 0 deletions config/sql/midpoint/2.3/sqlserver/sqlserver-2.3.sql
Expand Up @@ -194,6 +194,7 @@
create table m_authorization (
decision int,
description nvarchar(MAX),
objectSpecification nvarchar(MAX),
owner_id bigint not null,
owner_oid nvarchar(36) not null,
id bigint not null,
Expand Down

0 comments on commit b6873bb

Please sign in to comment.