add instalation entity

This commit is contained in:
vanilia
2025-11-13 10:37:54 +07:00
parent 78f1502930
commit 4b78e489ef
11 changed files with 167 additions and 2 deletions

No files matched your search

+18
View File
@@ -0,0 +1,18 @@
# Makefile for Atlas migrations
# Default environment
ENV ?= gorm
.PHONY: diff apply hash
## Generate a new migration diff
diff:
atlas migrate diff --env $(ENV)
## Apply migrations to the database
apply:
atlas migrate apply --env $(ENV)
## Calculate the schema hash
hash:
atlas migrate hash