13 lines
258 B
C#
13 lines
258 B
C#
using System;
|
|
|
|
namespace ChaosBot.Attribute
|
|
{
|
|
[AttributeUsage(AttributeTargets.Property)]
|
|
public class DBPrimaryKey : DBFieldAttribute
|
|
{
|
|
public override string GetSQLiteQuery()
|
|
{
|
|
return "PRIMARY KEY";
|
|
}
|
|
}
|
|
} |