Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
b0ecd705
Commit
b0ecd705
authored
14 years ago
by
Jakob Sack
Browse files
Options
Downloads
Patches
Plain Diff
Of course we should change the column names in the SQL file as well
parent
e6b90a60
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/owncloud.sql
+5
-5
5 additions, 5 deletions
docs/owncloud.sql
with
5 additions
and
5 deletions
docs/owncloud.sql
+
5
−
5
View file @
b0ecd705
...
@@ -27,8 +27,8 @@ SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
...
@@ -27,8 +27,8 @@ SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
CREATE
TABLE
IF
NOT
EXISTS
`appconfig`
(
CREATE
TABLE
IF
NOT
EXISTS
`appconfig`
(
`appid`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`appid`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`key`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`
config
key`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`value`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
`
config
value`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
--
--
...
@@ -106,7 +106,7 @@ CREATE TABLE IF NOT EXISTS `locks` (
...
@@ -106,7 +106,7 @@ CREATE TABLE IF NOT EXISTS `locks` (
CREATE
TABLE
IF
NOT
EXISTS
`log`
(
CREATE
TABLE
IF
NOT
EXISTS
`log`
(
`id`
int
(
10
)
unsigned
NOT
NULL
AUTO_INCREMENT
,
`id`
int
(
10
)
unsigned
NOT
NULL
AUTO_INCREMENT
,
`
timestamp
`
datetime
NOT
NULL
,
`
moment
`
datetime
NOT
NULL
,
`appid`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`appid`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`user`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`user`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`action`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`action`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
...
@@ -128,8 +128,8 @@ CREATE TABLE IF NOT EXISTS `log` (
...
@@ -128,8 +128,8 @@ CREATE TABLE IF NOT EXISTS `log` (
CREATE
TABLE
IF
NOT
EXISTS
`preferences`
(
CREATE
TABLE
IF
NOT
EXISTS
`preferences`
(
`userid`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`userid`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`appid`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`appid`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`key`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`
config
key`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
,
`value`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
`
config
value`
varchar
(
255
)
COLLATE
utf8_unicode_ci
NOT
NULL
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_unicode_ci
;
--
--
...
...
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