@@ -919,7 +919,7 @@ public class ColumnInfo
919
919
{
920
920
// public int cid { get; set; }
921
921
922
- [ Column ( "name" ) , UnityEngine . Scripting . RequiredMember ]
922
+ [ Column ( "name" ) ]
923
923
public string Name { get ; set ; }
924
924
925
925
// [Column ("type")]
@@ -2465,17 +2465,17 @@ public ColumnAttribute (string name)
2465
2465
}
2466
2466
2467
2467
[ AttributeUsage ( AttributeTargets . Property ) ]
2468
- public class PrimaryKeyAttribute : Attribute
2468
+ public class PrimaryKeyAttribute : UnityEngine . Scripting . RequiredMemberAttribute
2469
2469
{
2470
2470
}
2471
2471
2472
2472
[ AttributeUsage ( AttributeTargets . Property ) ]
2473
- public class AutoIncrementAttribute : Attribute
2473
+ public class AutoIncrementAttribute : UnityEngine . Scripting . RequiredMemberAttribute
2474
2474
{
2475
2475
}
2476
2476
2477
2477
[ AttributeUsage ( AttributeTargets . Property , AllowMultiple = true ) ]
2478
- public class IndexedAttribute : Attribute
2478
+ public class IndexedAttribute : UnityEngine . Scripting . RequiredMemberAttribute
2479
2479
{
2480
2480
public string Name { get ; set ; }
2481
2481
public int Order { get ; set ; }
@@ -2507,7 +2507,7 @@ public override bool Unique {
2507
2507
}
2508
2508
2509
2509
[ AttributeUsage ( AttributeTargets . Property ) ]
2510
- public class MaxLengthAttribute : Attribute
2510
+ public class MaxLengthAttribute : UnityEngine . Scripting . RequiredMemberAttribute
2511
2511
{
2512
2512
public int Value { get ; private set ; }
2513
2513
@@ -2529,7 +2529,7 @@ public sealed class PreserveAttribute : System.Attribute
2529
2529
/// "BINARY" is the default.
2530
2530
/// </summary>
2531
2531
[ AttributeUsage ( AttributeTargets . Property ) ]
2532
- public class CollationAttribute : Attribute
2532
+ public class CollationAttribute : UnityEngine . Scripting . RequiredMemberAttribute
2533
2533
{
2534
2534
public string Value { get ; private set ; }
2535
2535
@@ -2540,12 +2540,12 @@ public CollationAttribute (string collation)
2540
2540
}
2541
2541
2542
2542
[ AttributeUsage ( AttributeTargets . Property ) ]
2543
- public class NotNullAttribute : Attribute
2543
+ public class NotNullAttribute : UnityEngine . Scripting . RequiredMemberAttribute
2544
2544
{
2545
2545
}
2546
2546
2547
2547
[ AttributeUsage ( AttributeTargets . Enum ) ]
2548
- public class StoreAsTextAttribute : Attribute
2548
+ public class StoreAsTextAttribute : UnityEngine . Scripting . RequiredMemberAttribute
2549
2549
{
2550
2550
}
2551
2551
0 commit comments