Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bwinf
medal
Commits
5b991b5d
Commit
5b991b5d
authored
Feb 26, 2021
by
Robert Czechowski
Committed by
Robert Czechowski
Mar 12, 2021
Browse files
Create new database table string_cache
parent
9bba240b
Changes
2
Hide whitespace changes
Inline
Side-by-side
migrations/postgres/0001_create_string_cache.sql
0 → 100644
View file @
5b991b5d
CREATE
TABLE
string_cache
(
key
TEXT
PRIMARY
KEY
,
value
TEXT
NOT
NULL
,
date
TIMESTAMP
NOT
NULL
)
migrations/sqlite_v2/0001_create_string_cache.sql
0 → 100644
View file @
5b991b5d
CREATE
TABLE
string_cache
(
key
TEXT
PRIMARY
KEY
,
value
TEXT
NOT
NULL
,
date
TIMESTAMP
NOT
NULL
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment