Skip to content

Commit

Permalink
update MySQL DB scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
zaharchenko committed Oct 1, 2019
1 parent 051d2c5 commit acfc9f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions modules/core/db/init/mysql/create-db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
create table SAMLADDON_SAML_CONNECTION (
ID varchar(36) not null,
VERSION integer not null,
CREATE_TS timestamp,
CREATE_TS datetime(3),
CREATED_BY varchar(50),
UPDATE_TS timestamp,
UPDATE_TS datetime(3),
UPDATED_BY varchar(50),
DELETE_TS timestamp,
DELETE_TS datetime(3),
DELETED_BY varchar(50),
--
NAME varchar(255) not null,
Expand All @@ -29,11 +29,11 @@ create table SAMLADDON_SAML_CONNECTION (
create table SAMLADDON_KEY_STORE (
ID varchar(36) not null,
VERSION integer not null,
CREATE_TS timestamp,
CREATE_TS datetime(3),
CREATED_BY varchar(50),
UPDATE_TS timestamp,
UPDATE_TS datetime(3),
UPDATED_BY varchar(50),
DELETE_TS timestamp,
DELETE_TS datetime(3),
DELETED_BY varchar(50),
--
LOGIN varchar(100) not null,
Expand Down

0 comments on commit acfc9f5

Please sign in to comment.