Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
c245e86b
Commit
c245e86b
authored
11 years ago
by
Marcos García de La Fuente
Browse files
Options
Downloads
Patches
Plain Diff
Little changes to the opensurvey_sondage table definition
parent
c2c97ec8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/install/mysql/migration/3.5.0-3.6.0.sql
+4
-1
4 additions, 1 deletion
htdocs/install/mysql/migration/3.5.0-3.6.0.sql
htdocs/install/mysql/tables/llx_opensurvey_sondage.sql
+4
-4
4 additions, 4 deletions
htdocs/install/mysql/tables/llx_opensurvey_sondage.sql
with
8 additions
and
5 deletions
htdocs/install/mysql/migration/3.5.0-3.6.0.sql
+
4
−
1
View file @
c245e86b
...
...
@@ -26,4 +26,7 @@ ALTER TABLE `llx_opensurvey_sondage` DROP COLUMN `canedit` ;
ALTER
TABLE
`llx_opensurvey_sondage`
ADD
COLUMN
`allow_spy`
TINYINT
(
1
)
UNSIGNED
NOT
NULL
AFTER
`allow_comments`
;
ALTER
TABLE
`llx_opensurvey_sondage`
DROP
COLUMN
`origin`
;
ALTER
TABLE
`llx_opensurvey_sondage`
ADD
COLUMN
`fk_user_creat`
INT
(
11
)
UNSIGNED
NOT
NULL
AFTER
`nom_admin`
;
ALTER
TABLE
`llx_opensurvey_sondage`
CHANGE
COLUMN
`mailsonde`
`mailsonde`
TINYINT
(
1
)
UNSIGNED
NOT
NULL
DEFAULT
'0'
;
\ No newline at end of file
ALTER
TABLE
`llx_opensurvey_sondage`
CHANGE
COLUMN
`mailsonde`
`mailsonde`
TINYINT
(
1
)
UNSIGNED
NOT
NULL
DEFAULT
'0'
;
ALTER
TABLE
`llx_opensurvey_sondage`
CHANGE
COLUMN
`titre`
`titre`
TEXT
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NOT
NULL
;
ALTER
TABLE
`llx_opensurvey_sondage`
CHANGE
COLUMN
`date_fin`
`date_fin`
DATETIME
NOT
NULL
;
ALTER
TABLE
`llx_opensurvey_sondage`
CHANGE
COLUMN
`format`
`format`
VARCHAR
(
2
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NOT
NULL
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_opensurvey_sondage.sql
+
4
−
4
View file @
c245e86b
...
...
@@ -21,12 +21,12 @@ CREATE TABLE llx_opensurvey_sondage (
mail_admin
VARCHAR
(
128
),
nom_admin
VARCHAR
(
64
),
fk_user_creat
INT
(
11
)
UNSIGNED
NOT
NULL
,
titre
TEXT
,
date_fin
DATETIME
,
format
VARCHAR
(
2
),
titre
TEXT
NOT
NULL
,
date_fin
DATETIME
NOT
NULL
,
format
VARCHAR
(
2
)
NOT
NULL
,
mailsonde
TINYINT
(
1
)
UNSIGNED
NOT
NULL
DEFAULT
'0'
,
allow_comments
TINYINT
(
1
)
unsigned
NOT
NULL
DEFAULT
1
,
allow_spy
TINYINT
(
1
)
unsigned
NOT
NULL
DEFAULT
1
,
tms
TIMESTAMP
,
sujet
TEXT
)
ENGINE
=
InnoDB
;
)
ENGINE
=
InnoDB
;
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment