File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/com/nilportugues/eventstore/postgres Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ private void createTableAndIndexes() {
142142 final CreateTableQuery createTable = new CreateTableQuery (table , true );
143143 createTable .addColumnConstraint (idColumn , ConstraintClause .primaryKey (COLUMN_ID ));
144144 createTable .addColumnConstraint (eventIdColumn , ConstraintClause .unique (COLUMN_EVENT_ID ));
145- createTable .addColumnConstraint (aggregateIdColumn , ConstraintClause .unique (COLUMN_AGGREGATE_ID ));
145+ // createTable.addColumnConstraint(aggregateIdColumn, ConstraintClause.unique(COLUMN_AGGREGATE_ID));
146146
147147 final String createTableSQL = createTable .validate ().toString ();
148148 final Statement stmt = connection .createStatement ();
Original file line number Diff line number Diff line change 1- Mon Jan 29 18:49:12 UTC 2018
1+ Tue Jan 30 00:58:28 UTC 2018
You can’t perform that action at this time.
0 commit comments