File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/main/java/com/nilportugues/eventstore/postgres Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,8 @@ 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,
146+ // ConstraintClause.unique(COLUMN_AGGREGATE_ID));
146147
147148 final String createTableSQL = createTable .validate ().toString ();
148149 final Statement stmt = connection .createStatement ();
Original file line number Diff line number Diff line change 1- Tue Jan 30 00:58:28 UTC 2018
1+ Tue Jan 30 01:01:42 UTC 2018
You can’t perform that action at this time.
0 commit comments