Giter Club home page Giter Club logo

esea's Introduction

esea

ESEA Sample Problem

-- MySQL dump 10.13 Distrib 5.5.42, for osx10.6 (i386)

-- Host: localhost Database: esea


-- Server version 5.5.42-log

-- -- Table structure for table maps

DROP TABLE IF EXISTS maps;

CREATE TABLE maps (

id int(11) unsigned NOT NULL AUTO_INCREMENT,

name varchar(32) DEFAULT NULL,

PRIMARY KEY (id),

UNIQUE KEY unqiue_name (name),

KEY map_id_index (id)

) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8;

-- -- Table structure for table match_results

DROP TABLE IF EXISTS match_results;

CREATE TABLE match_results (

match_id int(11) unsigned NOT NULL,

team_id int(11) unsigned NOT NULL,

score int(11) DEFAULT NULL,

status int(11) NOT NULL,

KEY mr_id_index (match_id),

KEY mr_ti_index (team_id),

KEY mr_status_index (status)

) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- -- Table structure for table matches

DROP TABLE IF EXISTS matches;

CREATE TABLE matches (

id int(11) unsigned NOT NULL AUTO_INCREMENT,

date datetime NOT NULL,

map int(11) unsigned NOT NULL,

PRIMARY KEY (id),

KEY m_id_index (id),

KEY m_date_index (date)

) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8;

-- -- Table structure for table statuses

DROP TABLE IF EXISTS statuses;

CREATE TABLE statuses (

id int(11) unsigned NOT NULL AUTO_INCREMENT,

name varchar(16) NOT NULL DEFAULT '',

PRIMARY KEY (id)

) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

-- -- Table structure for table teams

DROP TABLE IF EXISTS teams;

CREATE TABLE teams (

id int(11) unsigned NOT NULL AUTO_INCREMENT,

name varchar(64) NOT NULL DEFAULT '',

PRIMARY KEY (id),

UNIQUE KEY unique_name (name),

KEY t_id_index (id)

) ENGINE=InnoDB AUTO_INCREMENT=2001 DEFAULT CHARSET=utf8;

esea's People

Contributors

lakesta avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.