Commit 718ef4ab authored by Lukáš Chudíček's avatar Lukáš Chudíček
Browse files

fix: seeding modified properly

parent f39947fd
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@ CREATE TABLE public.users (
                              id uuid NOT NULL,
                              email character varying(255) NOT NULL,
                              name character varying(255) NOT NULL,
                              role character varying(255) NOT NULL,
                              CONSTRAINT users_email_check CHECK (((email)::text ~* '^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,6}$'::text))
);

+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ spring:
  jpa:
    open-in-view: false
    hibernate:
      ddl-auto: update
      ddl-auto: create-drop
    properties:
      hibernate:
        dialect: org.hibernate.dialect.PostgreSQLDialect