This commit is contained in:
ody 2025-12-02 22:34:02 +07:00
parent 75c92adc21
commit eea17ad6a9

View File

@ -88,3 +88,5 @@ CREATE TABLE transactions (
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (user_id) REFERENCES users(id)
);
ALTER TABLE users MODIFY COLUMN balance INT DEFAULT 1000;