Oleg Ufaev
Oleg Ufaev
We have migration via Fluent API ``` [Migration(20230629130000, "Add column APPLIED_COUNT in PASSPORT")] public class AddAppliedCountColumnInPassport : ForwardOnlyMigration { public override void Up() { Alter.Table("PASSPORT") .AddColumn("APPLIED_COUNT") .AsInt32() .SetExistingRowsTo(0) .WithDefaultValue(0) .NotNullable();...
The current pg_partman implementation (5.0.0) does not support specifying tablespace for table partitions and also ignores tablespace specified for parent/template tables. As a result, partitions always fall into the default...