Unverified Commit 119603da authored by boojack's avatar boojack Committed by GitHub

chore: upgrade version to `0.9.0` (#835)

parent f6039f2e
......@@ -7,10 +7,10 @@ import (
// Version is the service current released version.
// Semantic versioning: https://semver.org/
var Version = "0.8.3"
var Version = "0.9.0"
// DevVersion is the service current development version.
var DevVersion = "0.8.3"
var DevVersion = "0.9.0"
func GetCurrentVersion(mode string) string {
if mode == "dev" {
......
-- tag
CREATE TABLE tag (
name TEXT NOT NULL,
creator_id INTEGER NOT NULL,
UNIQUE(name, creator_id)
);
......@@ -86,3 +86,10 @@ CREATE TABLE memo_resource (
updated_ts BIGINT NOT NULL DEFAULT (strftime('%s', 'now')),
UNIQUE(memo_id, resource_id)
);
-- tag
CREATE TABLE tag (
name TEXT NOT NULL,
creator_id INTEGER NOT NULL,
UNIQUE(name, creator_id)
);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment