You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Other CDN providers will eventually be added, as well as other possible actions to take when servers go down, so the schema should be a little flexible to start with. I need to refresh my laravel db best practices, so the table names and column names are subject to change to find the best way of doing it
#users
id increments
email string(100)
password string(100)
salt string(30)
token string(100)
timestamps
#cdn_providers
id increments
name string(100)
api_endpoint string(100)
#user_cdn
id increments
user_id (foreign key to users.id)
cdn_providers_id (foreign key to cdn_providers.id)
api_key string(100)
timestamps
#user_zones
id increments
user_cdn_id (foreign key to user_cdn.id)
zone_name string(100)
No description provided.
The text was updated successfully, but these errors were encountered: