Less to migrate, less to maintain, and I'll never swap these out as components; might as well get the ease of managing them all in one project.
21 lines
363 B
Forth
21 lines
363 B
Forth
/// Constants for tables used in myWebLog
|
|
[<RequireQualifiedAccess>]
|
|
module MyWebLog.Data.RethinkDB.Table
|
|
|
|
/// The Category table
|
|
let Category = "Category"
|
|
|
|
/// The Comment table
|
|
let Comment = "Comment"
|
|
|
|
/// The Page table
|
|
let Page = "Page"
|
|
|
|
/// The Post table
|
|
let Post = "Post"
|
|
|
|
/// The WebLog table
|
|
let WebLog = "WebLog"
|
|
|
|
/// The User table
|
|
let User = "User" |