mirror of
https://github.com/discourse/discourse.git
synced 2024-12-19 22:04:30 +08:00
6 lines
86 B
MySQL
6 lines
86 B
MySQL
|
CREATE TABLE config
|
||
|
(
|
||
|
name TEXT NOT NULL PRIMARY KEY,
|
||
|
value TEXT NOT NULL
|
||
|
);
|