-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudauction.sql
64 lines (51 loc) · 1.7 KB
/
cloudauction.sql
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
-- phpMyAdmin SQL Dump
-- version 4.1.14
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Aug 25, 2016 at 09:51 PM
-- Server version: 5.6.17
-- PHP Version: 5.5.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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 */;
--
-- Database: `cloudauction`
--
-- --------------------------------------------------------
--
-- Table structure for table `instances`
--
CREATE TABLE IF NOT EXISTS `instances` (
`instance_id` int(11) NOT NULL,
`instance_name` varchar(10) NOT NULL,
`memory` int(11) NOT NULL,
`vcpu` int(11) NOT NULL,
`platform` int(11) NOT NULL,
`max_count` int(11) NOT NULL,
`available` int(11) NOT NULL,
`discount` int(11) NOT NULL,
PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `instances`
--
INSERT INTO `instances` (`instance_id`, `instance_name`, `memory`, `vcpu`, `platform`, `max_count`, `available`, `discount`) VALUES
(1, 'I1', 512, 1, 32, 5, 5, 0),
(2, 'I2', 8192, 2, 64, 10, 10, 0);
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`user_id` int(11) NOT NULL,
`user_name` varchar(20) NOT NULL,
`instance_id` int(11) NOT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!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 */;