-
Notifications
You must be signed in to change notification settings - Fork 0
/
deltasqlfactura.sql
111 lines (91 loc) · 3.57 KB
/
deltasqlfactura.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
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
104
105
106
107
108
109
110
--
-- Table structure for table `cobro`
--
CREATE TABLE IF NOT EXISTS `cobro` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cuenta_id` int(11) NOT NULL,
`fecha` date NOT NULL,
`monto` float(12,2) NOT NULL DEFAULT '0.00',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `cuenta_id_idx` (`cuenta_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
--
-- Table structure for table `cuenta`
--
CREATE TABLE IF NOT EXISTS `cuenta` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nombre` varchar(64) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `cuentapadre`
--
CREATE TABLE IF NOT EXISTS `cuentapadre` (
`cuenta_id` int(11) NOT NULL DEFAULT '0',
`progenitor_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`cuenta_id`,`progenitor_id`),
KEY `cuentapadre_progenitor_id_progenitor_id` (`progenitor_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `cuentausuario`
--
CREATE TABLE IF NOT EXISTS `cuentausuario` (
`cuenta_id` int(11) NOT NULL DEFAULT '0',
`usuario_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`cuenta_id`,`usuario_id`),
KEY `cuentausuario_usuario_id_usuario_id` (`usuario_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Table structure for table `factura`
--
CREATE TABLE IF NOT EXISTS `factura` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`usuario_id` int(11) NOT NULL,
`costo_turno` float(12,2) NOT NULL DEFAULT '0.00',
`costo_actividad` float(12,2) NOT NULL DEFAULT '0.00',
`costo_matricula` float(12,2) NOT NULL DEFAULT '0.00',
`descuento_hermano` float(12,2) NOT NULL DEFAULT '0.00',
`descuento_alumno` float(12,2) NOT NULL DEFAULT '0.00',
`total` float(12,2) NOT NULL DEFAULT '0.00',
`month` int(11) NOT NULL,
`year` int(11) NOT NULL,
`recargo_atraso` float(12,2) NOT NULL DEFAULT '0.00',
`porcentaje_atraso` float(6,2) NOT NULL DEFAULT '0.00',
`pago` tinyint(4) NOT NULL DEFAULT '0',
`cancelado` tinyint(4) NOT NULL DEFAULT '0',
`cuenta_id` int(11) NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `cuenta_id_idx` (`cuenta_id`),
KEY `usuario_id_idx` (`usuario_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
--
-- Constraints for table `cobro`
--
ALTER TABLE `cobro`
ADD CONSTRAINT `cobro_cuenta_id_cuenta_id` FOREIGN KEY (`cuenta_id`) REFERENCES `cuenta` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `cuentapadre`
--
ALTER TABLE `cuentapadre`
ADD CONSTRAINT `cuentapadre_cuenta_id_cuenta_id` FOREIGN KEY (`cuenta_id`) REFERENCES `cuenta` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `cuentapadre_progenitor_id_progenitor_id` FOREIGN KEY (`progenitor_id`) REFERENCES `progenitor` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `cuentausuario`
--
ALTER TABLE `cuentausuario`
ADD CONSTRAINT `cuentausuario_cuenta_id_cuenta_id` FOREIGN KEY (`cuenta_id`) REFERENCES `cuenta` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `cuentausuario_usuario_id_usuario_id` FOREIGN KEY (`usuario_id`) REFERENCES `usuario` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `factura`
--
ALTER TABLE `factura`
ADD CONSTRAINT `factura_cuenta_id_cuenta_id` FOREIGN KEY (`cuenta_id`) REFERENCES `cuenta` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `factura_usuario_id_usuario_id` FOREIGN KEY (`usuario_id`) REFERENCES `usuario` (`id`) ON DELETE CASCADE;