Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
yotta
/
pictogram
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
60
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
580f87c8
authored
Apr 11, 2017
by
Sebastián Collado Montañez
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
scene database schema
parent
5accdc6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
sails/roles/database/files/pictodb-schema.sql
sails/roles/database/files/pictodb-schema.sql
View file @
580f87c8
...
...
@@ -430,6 +430,23 @@ CREATE TABLE IF NOT EXISTS `working_session` (
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
AUTO_INCREMENT
=
1
COMMENT
=
"This table stores working session information. Every working session is related to one instruction and one supervisor (and the instruction is related to one method which is related to one student)"
;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `scene`
--
CREATE
TABLE
IF
NOT
EXISTS
`scene`
(
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`name`
varchar
(
100
)
COLLATE
utf8_unicode_ci
DEFAULT
NULL
,
`active`
boolean
NULL
DEFAULT
0
,
`categories`
boolean
NULL
DEFAULT
0
,
`id_sup`
int
(
11
)
NOT
NULL
,
`id_stu`
int
(
11
)
NOT
NULL
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
AUTO_INCREMENT
=
1
COMMENT
=
"Scene table information. Every scene is related to some stu_pictos"
;
-- CREATE INDEX ix_ws_begin ON working_session (`begin`);
--
-- Restricciones para tablas volcadas
...
...
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