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
CREATE TABLE FinancialGoals (GoalID INT AUTO_INCREMENT PRIMARY KEY,UserID INT NOT NULL,Description VARCHAR(255),TargetAmount DECIMAL(10, 2) NOT NULL,CurrentAmount DECIMAL(10, 2) NOT NULL DEFAULT 0.00,StartDate DATE,EndDate DATE)