mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 12:23:12 +00:00
30 lines
298 B
SQL
30 lines
298 B
SQL
INSERT INTO
|
|
workspace (
|
|
`id`,
|
|
`creator_id`,
|
|
`name`,
|
|
`description`
|
|
)
|
|
VALUES
|
|
(
|
|
11,
|
|
101,
|
|
'minecraft',
|
|
''
|
|
);
|
|
|
|
INSERT INTO
|
|
workspace (
|
|
`id`,
|
|
`creator_id`,
|
|
`name`,
|
|
`description`
|
|
)
|
|
VALUES
|
|
(
|
|
12,
|
|
102,
|
|
'bob-room',
|
|
''
|
|
);
|