mirror of
https://github.com/Phundrak/georm.git
synced 2025-06-25 09:24:57 +00:00
Adds an example demonstrating user, comment, and follower relationship including: - User management with profiles - Comments (not really useful, just for showcasing) - Follower/follozing relationships - Ineractive CLI interface with CRUD operations - Database migrations for the example schema
5 lines
122 B
SQL
5 lines
122 B
SQL
DROP TABLE IF EXISTS Followers;
|
|
DROP TABLE IF EXISTS Comments;
|
|
DROP TABLE IF EXISTS Profiles;
|
|
DROP TABLE IF EXISTS Users;
|