mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 10:27:33 +00:00
feat: init migrations for transactional tables (#9946)
# Which Problems Are Solved To start with transactional tables we need to setup the new `zitadel` schema in a way that does not rely on the event store later. # How the Problems Are Solved Setup step added which calls the function which executes the migrations. # Additional Changes none # Additional Context - closes #9933
This commit is contained in:
@@ -12,6 +12,7 @@ import (
|
||||
)
|
||||
|
||||
func TestQueryUser(t *testing.T) {
|
||||
t.Skip("tests are meant as examples and are not real tests")
|
||||
t.Run("User filters", func(t *testing.T) {
|
||||
client := dbmock.NewMockClient(gomock.NewController(t))
|
||||
|
||||
@@ -67,6 +68,7 @@ func TestArg(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestWriteUser(t *testing.T) {
|
||||
t.Skip("tests are meant as examples and are not real tests")
|
||||
t.Run("update user", func(t *testing.T) {
|
||||
user := repository.UserRepository(nil)
|
||||
user.Human().Update(context.Background(), user.IDCondition("test"), user.SetUsername("test"))
|
||||
|
Reference in New Issue
Block a user