Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ログインシステムのあるサイトがあります。ログに記録したすべてのユーザーがコメントを作成できます。コメントはどのように保存すればよいですか?それらをmysqlデータベースやtxtファイルなどに保存するための最良の方法は何ですか?どんなデザインをお勧めしますか?
どうですか
CREATE TABLE login_comment ( `id` INT NOT NULL AUTO_INCREMENT , `user_id` INT NOT NULL , `timestamp` DATETIME NOT NULL DEFAULT current_timestamp , `comment` TEXT NOT NULL , PRIMARY KEY (`id`) );
の外部キーもテーブルに追加する必要がありuser_idますusers。
user_id
users