feat: update course entity & refactor package

This commit is contained in:
2026-08-21 22:17:02 +07:00
parent 31f53a1d52
commit 941bf322e5
14 changed files with 3 additions and 326 deletions
@@ -0,0 +1,8 @@
-- Flyway Migration V1: Initial schema
-- Creates courses table
CREATE TABLE IF NOT EXISTS courses (
id BIGSERIAL PRIMARY KEY,
title VARCHAR(200) NOT NULL,
description VARCHAR(1000)
);