I will be bringing in Stripe which will add 7 more columns to users table as you know.
Does it really? What columns?
I'm using Stripe for subscriptions. Here are all the columns in my user table:
- id
- password
- remember_token
- created_at
- updated_at
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I think it wouldnt matter but just to be safe, I am making a user table that will have quite a few columns that I need to add (i may end up refactoring to another table if possible later, not the stripe columns obviously) and I will be bringing in Stripe which will add 7 more columns to users table as you know. I want to build up the site first and once satisfied,then bring in stripe. At that point the users table will be (hopefully manageably) dense. So is their any advantage, or more importantly, disadvantage to adding stripe towards end of project and its columns to users table as the last few attributes? My intuition says no but I want some perspective from some more professional developers than me. Thanks!
Please or to participate in this conversation.