6 lines
73 B
MySQL
6 lines
73 B
MySQL
|
-- Your SQL goes here
|
||
|
|
||
|
CREATE TABLE editor (
|
||
|
id SERIAL PRIMARY KEY
|
||
|
)
|