Add database schema

This commit is contained in:
Kienan Stewart 2018-12-23 23:40:39 -05:00
parent 31fabf2a47
commit 673d2cc981
1 changed files with 6 additions and 0 deletions

6
src/schema/schema.sql Normal file
View File

@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS `subdomain_wsgi` (
`id` bigint(20) unsigned NOT NULL,
`venv` varchar(255) default '',
`app_subdir` varchar(255) default '',
PRIMARY KEY (`id`)
) COMMENT = 'WSGI / Python settings for each subdomain'