Schema
Table: lists
id(integer): Primary keytitle(character varying): Title of the listdescription(text): Description of the listslug(text) URL-friendly identifier for the listcreated_at(timestamp without time zone): When the list was created
Table: links
id(integer): Primary keytitle(character varying): Title of the linkdescription(text): Description of the linkurl(character varying): URL of the linkimage(character varying): Image URL associated with the linklist_id(integer): Foreign key referencing theliststablecreated_at(timestamp without time zone): When the link was created
This schema allows you to create lists of links, where each list has a unique slug that can be used in a URL, and each link belongs to a specific list through the list_id foreign key relationship.
DATABASE_URL="mysql://johndoe:randompassword@localhost:3306/mydb"
DATABASE_URL="postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public"
DATABASE_URL="sqlserver://localhost:1433;database=mydb;user=sa;password=r@ndomP@$$w0rd;trustServerCertificate=true"
DATABASE_URL="sqlserver://vticonsulting.database.windows.net:1433;database=vticonsulting;user=vtolbert@vticonsulting;password=sekure1zQ!;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.database.windows.net;loginTimeout=30"
# Dev
Server=(localdb)\\MSSQLLocalDB;
Database=ExemplarCore;
Trusted_Connection=True;
MultipleActiveResultSets=true;
# QA
Server=tcp:han-sql-dev.database.windows.net,1433;
Initial Catalog=ExemplarCore;
Persist Security Info=False;
User ID=iasa;
Password=Innovative123!;
MultipleActiveResultSets=True;
Encrypt=True;
TrustServerCertificate=False;
Connection Timeout=30;
# Prod
Server=tcp:han-sql-prod-east.database.windows.net,1433;
Initial Catalog=ExemplarCore;
Persist Security Info=False;
User ID=hccsqladmin;
Password=Htu849rif%#ja^#a;
MultipleActiveResultSets=True;
Encrypt=True;
TrustServerCertificate=False;
Connection Timeout=30;