Skip to content

Commit

Permalink
revert snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
eliykat committed Sep 13, 2024
1 parent 0a9ba1a commit 69f10e8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1222,6 +1222,11 @@ protected override void BuildModel(ModelBuilder modelBuilder)
b.Property<Guid>("Id")
.HasColumnType("char(36)");
b.Property<bool>("AccessAll")
.ValueGeneratedOnAdd()
.HasColumnType("tinyint(1)")
.HasDefaultValue(false);
b.Property<bool>("AccessSecretsManager")
.HasColumnType("tinyint(1)");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1227,6 +1227,11 @@ protected override void BuildModel(ModelBuilder modelBuilder)
b.Property<Guid>("Id")
.HasColumnType("uuid");
b.Property<bool>("AccessAll")
.ValueGeneratedOnAdd()
.HasColumnType("boolean")
.HasDefaultValue(false);
b.Property<bool>("AccessSecretsManager")
.HasColumnType("boolean");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1211,6 +1211,11 @@ protected override void BuildModel(ModelBuilder modelBuilder)
b.Property<Guid>("Id")
.HasColumnType("TEXT");
b.Property<bool>("AccessAll")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER")
.HasDefaultValue(false);
b.Property<bool>("AccessSecretsManager")
.HasColumnType("INTEGER");
Expand Down

0 comments on commit 69f10e8

Please sign in to comment.