Use other database entities as an example to finish the implementation of the ServerConfig.cs
Reference the database design image in #6
Use TypeName = "varchar(255)" for string type in the DB,
TypeName = "text" for the text type,
and TypeName = "tinyint" for enums (they're integer in the db).
Use guid instead of integer for any discord id values (channelid, serverid, userid, roleid)
and Int64 for all the other integer types in the DB.
Use other database entities as an example to finish the implementation of the ServerConfig.cs
Reference the database design image in #6
Use
TypeName = "varchar(255)"
forstring
type in the DB,TypeName = "text"
for thetext
type, andTypeName = "tinyint"
for enums (they're integer in the db). Useguid
instead of integer for anydiscord id
values (channelid, serverid, userid, roleid) andInt64
for all the otherinteger
types in the DB.