Pārlūkot izejas kodu

数据库问题

0210411 4 mēneši atpakaļ
vecāks
revīzija
23f1c57466
1 mainītis faili ar 0 papildinājumiem un 10 dzēšanām
  1. 0 10
      source/db.sql

+ 0 - 10
source/db.sql

@@ -1,10 +0,0 @@
-create database if not exists gobang;
-use gobang;
-create table if not exists user (
-    id bigint unsigned primary key auto_increment key,
-    username varchar(32) unique key not null ,
-    password varchar(64) not null,
-    score int default 1000,
-    total_count int default 0,
-    win_count int default 0
-);