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
ALTER DATABASE receipts CHARACTER SET = utf8 COLLATE utf8_general_ci;
use receipts;
create table records ( id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, username TEXT NOT NULL, userid TEXT NOT NULL, filename TEXT NOT NULL, filetype TEXT NOT NULL, fileprice FLOAT NOT NULL, isfinished BOOLEAN DEFAULT 0 NOT NULL, uploadtime TIMESTAMP DEFAULT CURRENT_TIMESTAMP);