feat(migration): Added initial migrations

This commit is contained in:
2025-08-11 19:05:04 +03:00
parent 54576f6119
commit a190431dc2
2 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
-- +goose Up
create table status
(
id bigserial primary key,
service_id bigint,
status varchar(255) not null,
created_at timestamp with time zone,
description varchar(255),
constraint fk_service_statuses FOREIGN KEY (service_id) references service (id)
);
-- +goose Down