ValkyrjaProject / Valkyrja.core

[C# - netcore] Community Management bot for Discord (Core library)
https://valkyrja.app
MIT License
11 stars 6 forks source link

Implement ServerConfig database entity #41

Closed RheaAyase closed 7 years ago

RheaAyase commented 7 years ago

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.

galenguyer commented 7 years ago

Working on this now.

galenguyer commented 7 years ago

Github is pain (if someone else wants to hop on this I won't mind)

DokaDoka commented 7 years ago

I think I know what to do, I'll take a crack at it