Sql for rpg game

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Sql for rpg game

    any one here has the sql for rpg game...

    #2
    PHP Code:
    --
    -- 
    Table structure for table `ibwf_rpg`
    --

    CREATE TABLE IF NOT EXISTS `ibwf_rpg` (
      `
    idint(10NOT NULL AUTO_INCREMENT,
      `
    betint(10NOT NULL DEFAULT '0',
      `
    byuidint(10NOT NULL DEFAULT '0',
      `
    touidint(10NOT NULL DEFAULT '0',
      `
    actimeint(10NOT NULL DEFAULT '0',
      `
    acceptint(10NOT NULL DEFAULT '0',
      
    PRIMARY KEY (`id`)
    ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=;

    --
    -- 
    Dumping data for table `ibwf_rpg`
    --


    -- --------------------------------------------------------

    --
    -- 
    Table structure for table `ibwf_rpgame`
    --

    CREATE TABLE IF NOT EXISTS `ibwf_rpgame` (
      `
    idint(10NOT NULL AUTO_INCREMENT,
      `
    betint(10NOT NULL DEFAULT '0',
      `
    uidint(10NOT NULL DEFAULT '0',
      `
    whoint(10NOT NULL DEFAULT '0',
      `
    ownerint(10NOT NULL DEFAULT '0',
      
    PRIMARY KEY (`id`)
    ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=73 ;

    --
    -- 
    Dumping data for table `ibwf_rpgame`
    -- 
    Last edited by metulj; 09.08.10, 16:42.

    Comment


      #3
      Why are all INT datatype? Use tinyint,smallint,mediumint then use unsigned modifer. If it does not cover then use int.
      Read this
      MySQL :: MySQL 5.0 Reference Manual :: 10.2 Numeric Types

      Comment

      Working...
      X