Skip to content

Commit

Permalink
feat: Add a database table for translations
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobefu committed Dec 28, 2024
1 parent 585b331 commit 64f485d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DROP TABLE IF EXISTS translations;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS translations(
source varchar(128) NOT NULL PRIMARY KEY UNIQUE,
translation varchar(128) NOT NULL,
category varchar(255) NOT NULL
);

0 comments on commit 64f485d

Please sign in to comment.