~ubuntu-branches/ubuntu/breezy/koffice/breezy

« back to all changes in this revision

Viewing changes to kugar/samplesdb/kugardb.sql

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- MySQL dump 10.2
 
2
--
 
3
-- Host: localhost    Database: kugardb
 
4
---------------------------------------------------------
 
5
-- Server version       4.1.0-alpha-max-nt
 
6
 
 
7
--
 
8
-- Table structure for table 'salers'
 
9
--
 
10
 
 
11
DROP TABLE IF EXISTS salers;
 
12
CREATE TABLE salers (
 
13
  name varchar(100) NOT NULL default '',
 
14
  NumSaler int(10) unsigned NOT NULL auto_increment,
 
15
  PRIMARY KEY  (NumSaler)
 
16
) TYPE=MyISAM;
 
17
 
 
18
--
 
19
-- Dumping data for table 'salers'
 
20
--
 
21
 
 
22
/*!40000 ALTER TABLE salers DISABLE KEYS */;
 
23
LOCK TABLES salers WRITE;
 
24
INSERT INTO salers VALUES ('Red Hat',1),('Sun',2),('Microsoft',3),('Mandrake',4),('Suse',5);
 
25
UNLOCK TABLES;
 
26
/*!40000 ALTER TABLE salers ENABLE KEYS */;
 
27
 
 
28
--
 
29
-- Table structure for table 'software'
 
30
--
 
31
 
 
32
DROP TABLE IF EXISTS software;
 
33
CREATE TABLE software (
 
34
  NumSoftware int(10) unsigned NOT NULL auto_increment,
 
35
  NumSaler int(11) NOT NULL default '0',
 
36
  title varchar(100) NOT NULL default '',
 
37
  version varchar(10) NOT NULL default '',
 
38
  platform varchar(100) NOT NULL default '',
 
39
  copies int(11) NOT NULL default '0',
 
40
  PRIMARY KEY  (NumSoftware)
 
41
) TYPE=MyISAM;
 
42
 
 
43
--
 
44
-- Dumping data for table 'software'
 
45
--
 
46
 
 
47
/*!40000 ALTER TABLE software DISABLE KEYS */;
 
48
LOCK TABLES software WRITE;
 
49
INSERT INTO software VALUES (1,1,'Red hat linux','5.0','x86',1),(2,4,'Mandrake linux','9.1','x86',2),(3,4,'Mandrake linux','9.0','x86',3);
 
50
UNLOCK TABLES;
 
51
/*!40000 ALTER TABLE software ENABLE KEYS */;