Skip to content

Commit

Permalink
Merge pull request #57 from AlexSciFier/1.4-hot-fix
Browse files Browse the repository at this point in the history
1.4 hot fix
  • Loading branch information
AlexSciFier authored Aug 16, 2023
2 parents e4c1b56 + 80018f0 commit a9da466
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/helpers/constants.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const APP_NAME = "NeonLink";
export const VERSION = "1.4.0";
export const VERSION = "1.4.2";
export const DEF_MAX_ITEMS = 20;
export const DEF_COLUMNS = 3;
export const CARD_HEADER_STYLE = [
Expand Down
9 changes: 6 additions & 3 deletions server/db/sqlite/migrations/initial.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ export default async function (db) {
search TEXT,
icon TEXT,
categoryId INEGER,
created TIMESTAMP DEFAULT CURRENT_TIMESTAMP
created TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
userId INTEGER
)`,

`CREATE TABLE IF NOT EXISTS bookmarkPosition (
Expand All @@ -38,7 +39,8 @@ export default async function (db) {
`CREATE TABLE IF NOT EXISTS category (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT,
color TEXT
color TEXT,
userId INTEGER
)`,

`CREATE TABLE IF NOT EXISTS categoryPosition (
Expand All @@ -48,7 +50,8 @@ export default async function (db) {

`CREATE TABLE IF NOT EXISTS tags (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT
name TEXT,
userId INTEGER
)`,

`CREATE TABLE IF NOT EXISTS users (
Expand Down

0 comments on commit a9da466

Please sign in to comment.