public void Apply(IVersionInstance instance)
 {
     if (instance.Type.Name == "BinaryBlob")
     {
         instance.Nullable();
         instance.CustomSqlType("timestamp");
         instance.Generated.Always();
     }
 }
Ejemplo n.º 2
0
 public void Apply(IVersionInstance instance)
 {
     if (instance.Type.Name == "BinaryBlob")
     {
         instance.Nullable();
         instance.CustomSqlType("timestamp");
         instance.Generated.Always();
     }
 }
Ejemplo n.º 3
0
 public void Apply(IVersionInstance instance)
 {
     instance.Nullable();
 }