Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smsManager
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cristian Mauricio Diaz Canales
smsManager
Commits
abb29817
Commit
abb29817
authored
Jun 18, 2019
by
Cristian Mauricio Diaz Canales
💬
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'cambios' into 'master'
script See merge request jcarrill/intelsecuritymovistar!6
parents
c441df62
b8911ec5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
2 deletions
+77
-2
script_campañas.sql
script_campañas.sql
+77
-2
No files found.
script_campañas.sql
View file @
abb29817
CREATE
TABLE
`intelsecuritymovistar`
.
`campaign`
(
`id`
INT
NOT
NULL
,
`message`
TEXT
NOT
NULL
,
`status`
TINYINT
(
1
)
NOT
NULL
DEFAULT
'0'
)
ENGINE
=
InnoDB
;
-- phpMyAdmin SQL Dump
ALTER
TABLE
`campaign`
ADD
PRIMARY
KEY
(
`id`
);
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 18-06-2019 a las 23:43:03
-- Versión del servidor: 10.1.40-MariaDB
-- Versión de PHP: 7.2.18
SET
SQL_MODE
=
"NO_AUTO_VALUE_ON_ZERO"
;
SET
AUTOCOMMIT
=
0
;
START
TRANSACTION
;
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 utf8mb4 */
;
--
-- Base de datos: `intelsecuritymovistar`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `campaign`
--
CREATE
TABLE
`campaign`
(
`ca_id`
int
(
11
)
NOT
NULL
,
`ca_mensaje`
text
NOT
NULL
,
`ca_estado`
tinyint
(
1
)
NOT
NULL
DEFAULT
'0'
,
`ca_eliminado`
tinyint
(
1
)
NOT
NULL
DEFAULT
'0'
,
`created_at`
datetime
DEFAULT
NULL
,
`updated_at`
datetime
DEFAULT
NULL
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
latin1
;
--
-- Volcado de datos para la tabla `campaign`
--
INSERT
INTO
`campaign`
(
`ca_id`
,
`ca_mensaje`
,
`ca_estado`
,
`ca_eliminado`
,
`created_at`
,
`updated_at`
)
VALUES
(
1
,
'CAMPAÑA 155i'
,
1
,
0
,
NULL
,
NULL
),
(
2
,
'gfgfg'
,
0
,
1
,
NULL
,
NULL
),
(
3
,
'gfgfg'
,
0
,
1
,
NULL
,
NULL
),
(
4
,
'gfgfg'
,
0
,
1
,
NULL
,
NULL
),
(
5
,
'gfgfgssdd'
,
0
,
0
,
NULL
,
NULL
),
(
6
,
'que onda menol'
,
1
,
0
,
NULL
,
NULL
),
(
7
,
'lkjlkj'
,
1
,
0
,
NULL
,
NULL
),
(
8
,
'ljlkjkljlk'
,
0
,
0
,
NULL
,
NULL
);
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `campaign`
--
ALTER
TABLE
`campaign`
ADD
PRIMARY
KEY
(
`ca_id`
);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `campaign`
--
ALTER
TABLE
`campaign`
MODIFY
`ca_id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
AUTO_INCREMENT
=
9
;
COMMIT
;
/*!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 */
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment