mirror of
https://code.sup39.dev/repos/Wqawg
synced 2024-12-27 18:54:53 +09:00
Switch from persistent-parser to my own parser module
My parser doesn't support default=, and I think it's safe to assume nobody is running an instance whose DB schema version is one of those first 5 where default= exists, so I'm remvoing it from the original 2016 model file. The unset-default migrations remain, and I checked in `psql` that PostgreSQL accepts the operation on columns that don't have a default value. If it turns out to be a problem, I can replace those migrations with no-op ones.
This commit is contained in:
parent
a6bfb0cf36
commit
08ca211842
2 changed files with 5 additions and 5 deletions
|
@ -19,7 +19,7 @@
|
||||||
Sharer
|
Sharer
|
||||||
ident ShrIdent
|
ident ShrIdent
|
||||||
name Text Maybe
|
name Text Maybe
|
||||||
created UTCTime default=now()
|
created UTCTime
|
||||||
|
|
||||||
UniqueSharer ident
|
UniqueSharer ident
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ Project
|
||||||
sharer SharerId
|
sharer SharerId
|
||||||
name Text Maybe
|
name Text Maybe
|
||||||
desc Text Maybe
|
desc Text Maybe
|
||||||
nextTicket Int default=1
|
nextTicket Int
|
||||||
wiki RepoId Maybe
|
wiki RepoId Maybe
|
||||||
|
|
||||||
UniqueProject ident sharer
|
UniqueProject ident sharer
|
||||||
|
@ -146,10 +146,10 @@ Project
|
||||||
Repo
|
Repo
|
||||||
ident RpIdent
|
ident RpIdent
|
||||||
sharer SharerId
|
sharer SharerId
|
||||||
vcs VersionControlSystem default='VCSGit'
|
vcs VersionControlSystem
|
||||||
project ProjectId Maybe
|
project ProjectId Maybe
|
||||||
desc Text Maybe
|
desc Text Maybe
|
||||||
mainBranch Text default='master'
|
mainBranch Text
|
||||||
|
|
||||||
UniqueRepo ident sharer
|
UniqueRepo ident sharer
|
||||||
|
|
||||||
|
|
|
@ -40,10 +40,10 @@ extra-deps:
|
||||||
- git-0.2.2
|
- git-0.2.2
|
||||||
- highlighter2-0.2.5
|
- highlighter2-0.2.5
|
||||||
- libravatar-0.4.0.2
|
- libravatar-0.4.0.2
|
||||||
|
- megaparsec-7.0.5
|
||||||
- monad-hash-0.1.0.2
|
- monad-hash-0.1.0.2
|
||||||
- monadcryptorandom-0.7.2.1
|
- monadcryptorandom-0.7.2.1
|
||||||
- patience-0.1.1
|
- patience-0.1.1
|
||||||
- persistent-parser-0.1.0.2
|
|
||||||
- pwstore-fast-2.4.4
|
- pwstore-fast-2.4.4
|
||||||
- time-interval-0.1.1
|
- time-interval-0.1.1
|
||||||
- time-units-1.0.0
|
- time-units-1.0.0
|
||||||
|
|
Loading…
Reference in a new issue