1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
-- MySQL dump 10.9
--
-- Host: diclofenac Database: structures
-- ------------------------------------------------------
-- Server version 4.1.10a
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
--
-- Table structure for table `atom_coord`
--
DROP TABLE IF EXISTS `atom_coord`;
CREATE TABLE `atom_coord` (
`id` int(11) NOT NULL auto_increment,
`conformation_id` int(11) default NULL,
`x` float default NULL,
`y` float default NULL,
`z` float default NULL,
`atom_idx` int(2) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 MAX_ROWS=500000000;
--
-- Table structure for table `conformation_generation`
--
DROP TABLE IF EXISTS `conformation_generation`;
CREATE TABLE `conformation_generation` (
`method_id` int(11) NOT NULL auto_increment,
`method` text,
`parameters` text,
PRIMARY KEY (`method_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Table structure for table `conformations`
--
DROP TABLE IF EXISTS `conformations`;
CREATE TABLE `conformations` (
`id` int(11) NOT NULL auto_increment,
`topology_id` int(11) default NULL,
`method_id` int(11) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 MAX_ROWS=100000000;
--
-- Table structure for table `connection_table_atoms`
--
DROP TABLE IF EXISTS `connection_table_atoms`;
CREATE TABLE `connection_table_atoms` (
`id` int(11) NOT NULL auto_increment,
`topology_id` int(11) default NULL,
`atom_number` int(2) default NULL,
`element` char(2) default NULL,
`formal_charge` int(1) default NULL,
`name` char(8) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 MAX_ROWS=4294967295;
--
-- Table structure for table `connection_table_bonds`
--
DROP TABLE IF EXISTS `connection_table_bonds`;
CREATE TABLE `connection_table_bonds` (
`id` int(11) NOT NULL auto_increment,
`topology_id` int(11) default NULL,
`bond_number` int(2) default NULL,
`atom1` int(2) default NULL,
`atom2` int(2) default NULL,
`bond_order` int(1) default NULL,
`stereo` int(1) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 MAX_ROWS=4294967295;
--
-- Table structure for table `topology`
--
DROP TABLE IF EXISTS `topology`;
CREATE TABLE `topology` (
`topology_id` int(11) NOT NULL auto_increment,
`source_id` text,
`name` text,
PRIMARY KEY (`topology_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|