Skip to content

Instantly share code, notes, and snippets.

View richard-ma's full-sized avatar

Li Ma richard-ma

  • Tianjin, China
View GitHub Profile
@richard-ma
richard-ma / hustoj_db.sql
Created July 9, 2013 03:59
db sql of hustoj
set names utf8;
create database jol;
use jol;
CREATE TABLE `compileinfo` (
`solution_id` int(11) NOT NULL DEFAULT '0',
`error` text,
PRIMARY KEY (`solution_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;