morethantext-web/src/morethantext/mttsql.pest

7 lines
171 B
Plaintext
Raw Permalink Normal View History

2024-02-01 20:40:29 -05:00
char = _{ ASCII_ALPHANUMERIC | "_" }
whitespace = _{" " | "\t" | "\r" | "\n"}
name = {char+}
command = {"create database" ~ whitespace+ ~ name ~ ";"}
script = {command+}