Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F24928862
config.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
638 B
Referenced Files
None
Subscribers
None
config.sql
View Options
-- If you provide several instructions, separate those with TWO blank lines.
--
-- This schema is compiled as part of the program, as such you need to rebuild
-- (`cargo build`) the project after any schema modification.
CREATE
TABLE
IF
NOT
EXISTS
fantoir_config
(
key
VARCHAR
(
63
)
NOT
NULL
CONSTRAINT
fantoir_config_pk
PRIMARY
KEY
,
CONSTRAINT
fantoir_config_key_format
CHECK
(
key
~
'^[a-zA-Z][a-zA-Z0-9_]*$'
),
value
VARCHAR
(
255
)
);
INSERT
INTO
fantoir_config
(
key
,
value
)
VALUES
(
'fantoir_table'
,
'/*table*/fantoir'
)
ON
CONFLICT
(
key
)
DO
UPDATE
SET
value
=
excluded
.
value
;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 21, 06:52 (1 d, 1 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3546580
Default Alt Text
config.sql (638 B)
Attached To
Mode
rDS Nasqueron Datasources
Attached
Detach File
Event Timeline
Log In to Comment