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