mirror of
https://github.com/coder/coder.git
synced 2026-06-04 05:28:20 +00:00
b4afbe7720
* feat: Implement basic moon crud * chore: Implement enterprise endpoints for moons
15 lines
349 B
SQL
15 lines
349 B
SQL
INSERT INTO workspace_proxies
|
|
(id, name, display_name, icon, url, wildcard_hostname, created_at, updated_at, deleted)
|
|
VALUES
|
|
(
|
|
'cf8ede8c-ff47-441f-a738-d92e4e34a657',
|
|
'us',
|
|
'United States',
|
|
'/emojis/us.png',
|
|
'https://us.coder.com',
|
|
'*.us.coder.com',
|
|
'2023-03-30 12:00:00.000+02',
|
|
'2023-03-30 12:00:00.000+02',
|
|
false
|
|
);
|