Skip to content

v0.6.0

Compare
Choose a tag to compare
@prel-bot prel-bot released this 25 Mar 14:29
· 197 commits to main since this release
c9d457e

What's Changed

Exciting New Features 🎉

  • add setting page to add notification message feature by @lirlia in #99

Other Changes

Full Changelog: v0.5.8...v0.6.0

Container Image

docker pull ghcr.io/lirlia/prel:v0.6.0

Need to Migration

# Clone this Repository
❯ git clone [email protected]:lirlia/prel.git
❯ git fetch
❯ git checkout v0.6.0 
❯ psqldef --host=xxx --port=5432 --user=postgres --password=xxx prel < db/schema.sql

-- Apply --
CREATE TABLE setting (
    id TEXT PRIMARY KEY NOT NULL,
    notification_message_for_request TEXT,
    notification_message_for_judge TEXT,
    created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP,
    updated_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP
);