~ubuntu-branches/ubuntu/hardy/php5/hardy-updates

« back to all changes in this revision

Viewing changes to ext/soap/interop/database_round2.sql

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-10-09 03:14:32 UTC
  • Revision ID: james.westby@ubuntu.com-20051009031432-kspik3lobxstafv9
Tags: upstream-5.0.5
ImportĀ upstreamĀ versionĀ 5.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# phpMyAdmin MySQL-Dump
 
2
# version 2.2.5
 
3
# http://phpwizard.net/phpMyAdmin/
 
4
# http://phpmyadmin.sourceforge.net/ (download page)
 
5
#
 
6
# Host: localhost
 
7
# Generation Time: Apr 08, 2002 at 08:32 PM
 
8
# Server version: 3.23.49
 
9
# PHP Version: 4.1.1
 
10
# Database : `interop`
 
11
# --------------------------------------------------------
 
12
 
 
13
#
 
14
# Table structure for table `endpoints`
 
15
#
 
16
 
 
17
CREATE TABLE endpoints (
 
18
  id int(11) NOT NULL auto_increment,
 
19
  endpointName varchar(50) NOT NULL default '',
 
20
  endpointURL varchar(255) NOT NULL default '',
 
21
  wsdlURL varchar(255) NOT NULL default '',
 
22
  class varchar(20) NOT NULL default '',
 
23
  status int(11) NOT NULL default '1',
 
24
  PRIMARY KEY  (id)
 
25
) TYPE=MyISAM;
 
26
# --------------------------------------------------------
 
27
 
 
28
#
 
29
# Table structure for table `results`
 
30
#
 
31
 
 
32
CREATE TABLE results (
 
33
  id int(11) NOT NULL auto_increment,
 
34
  endpoint int(11) NOT NULL default '0',
 
35
  stamp int(11) NOT NULL default '0',
 
36
  class varchar(10) NOT NULL default '',
 
37
  type varchar(10) default NULL,
 
38
  wsdl int(11) NOT NULL default '0',
 
39
  function varchar(255) NOT NULL default '',
 
40
  result varchar(25) NOT NULL default '',
 
41
  error text,
 
42
  wire text NOT NULL,
 
43
  PRIMARY KEY  (id)
 
44
) TYPE=MyISAM;