diff --git a/migrations/202503071616_create_ticket_table.sql b/migrations/202503071616_create_ticket_table.sql
new file mode 100644
index 0000000..07c5f9d
--- /dev/null
+++ b/migrations/202503071616_create_ticket_table.sql
@@ -0,0 +1,4 @@
+CREATE TABLE IF NOT EXISTS ticket (
+  id int,
+  name text
+);