mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-03 19:42:55 +00:00
The binary etc were renamed some time ago, but the path in the source tree remained "attachment_service" to avoid disruption to ongoing PRs. There aren't any big PRs out right now, so it's a good time to cut over. - Rename `attachment_service` to `storage_controller` - Move it to the top level for symmetry with `storage_broker` & to avoid mixing the non-prod neon_local stuff (`control_plane/`) with the storage controller which is a production component.
10 lines
245 B
SQL
10 lines
245 B
SQL
CREATE TABLE nodes (
|
|
node_id BIGINT PRIMARY KEY NOT NULL,
|
|
|
|
scheduling_policy VARCHAR NOT NULL,
|
|
|
|
listen_http_addr VARCHAR NOT NULL,
|
|
listen_http_port INTEGER NOT NULL,
|
|
listen_pg_addr VARCHAR NOT NULL,
|
|
listen_pg_port INTEGER NOT NULL
|
|
); |