ユーザー登録時に文字数超過のエラーが出ることへの暫定的な対応

This commit is contained in:
suti7yk5032 2024-08-19 10:01:49 +09:00
parent 8019674b13
commit 8a88a1a31f

View file

@ -79,7 +79,7 @@ class DL():
find_club_member_table = cursor.fetchall() find_club_member_table = cursor.fetchall()
print(find_club_member_table) print(find_club_member_table)
if find_club_member_table[0][0] == False: if find_club_member_table[0][0] == False:
cursor.execute("CREATE TABLE club_member (id SERIAL NOT NULL, name VARCHAR(30) NOT NULL, discord_username VARCHAR(32) NOT NULL, discord_userid VARCHAR(18) NOT NULL, PRIMARY KEY (id))") cursor.execute("CREATE TABLE club_member (id SERIAL NOT NULL, name VARCHAR(50) NOT NULL, discord_username VARCHAR(50) NOT NULL, discord_userid VARCHAR(18) NOT NULL, PRIMARY KEY (id))")
self.db.commit() self.db.commit()
cursor.execute("SELECT EXISTS (SELECT FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'pc_list')") cursor.execute("SELECT EXISTS (SELECT FROM information_schema.tables WHERE table_schema = 'public' AND table_name = 'pc_list')")