mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-24 17:06:24 -07:00
Remove SQLite support due to instability
This commit is contained in:
parent
31f9c57a35
commit
a69b6748c7
16 changed files with 22 additions and 97 deletions
4
vagrant/Vagrantfile
vendored
4
vagrant/Vagrantfile
vendored
|
@ -2,8 +2,8 @@
|
|||
# vi: set ft=ruby :
|
||||
|
||||
DBTYPE = ENV.fetch("GC_DBTYPE", "mysql")
|
||||
if DBTYPE != "mysql" && DBTYPE != "postgresql" && DBTYPE != "sqlite3"
|
||||
puts "Invalid GC_DBTYPE environment variable, must be mysql, postgresql, or sqlite3, got #{DBTYPE}"
|
||||
if DBTYPE != "mysql" && DBTYPE != "postgresql"
|
||||
puts "Invalid GC_DBTYPE environment variable, must be mysql or postgresql, got #{DBTYPE}"
|
||||
abort
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue