mirror of
https://github.com/coder/coder.git
synced 2025-07-08 11:39:50 +00:00
7 lines
244 B
SQL
7 lines
244 B
SQL
-- Example:
|
|
-- This fixture is applied after migrations/000024_site_config.up.sql
|
|
-- and inserts a value into site_configs that must not cause issues in
|
|
-- future migrations.
|
|
|
|
INSERT INTO site_configs (key, value) VALUES ('mytest', 'example');
|