Skip to content
Snippets Groups Projects
schema.rs 136 B
Newer Older
Stephen D's avatar
Stephen D committed
table! {
Stephen D's avatar
Stephen D committed
	user_programs (id) {
		id -> Int4,
		discord_user_id -> Numeric,
		name -> Varchar,
		code -> Text,
		published -> Int4,
	}
Stephen D's avatar
Stephen D committed
}