Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
services
t3o sites
typo3.org
t3o_membership
Commits
01383d3e
Commit
01383d3e
authored
Aug 12, 2021
by
Stefan Busemann
Browse files
[TASK] Remove unnecessary table definition
parent
26ab869a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Configuration/Commands.php
deleted
100644 → 0
View file @
26ab869a
<?php
return
[
't3omembership:updateStatistic'
=>
[
'class'
=>
\
T3o\T3oMembership\Command\MemberstatisticCommand
::
class
,
'schedulable'
=>
true
,
],
];
Configuration/Services.yaml
0 → 100644
View file @
01383d3e
ext_tables.sql
View file @
01383d3e
...
...
@@ -88,22 +88,8 @@ CREATE TABLE tx_t3omembership_domain_model_membership (
);
CREATE
TABLE
tx_t3omembership_domain_model_member_statistic
(
uid
int
(
11
)
NOT
NULL
auto_increment
,
pid
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
month
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
year
int
(
11
)
DEFAULT
'0'
NOT
NULL
,
membership
int
(
11
)
unsigned
DEFAULT
'0'
,
count
int
(
11
)
unsigned
DEFAULT
'0'
,
tstamp
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
crdate
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
cruser_id
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
deleted
tinyint
(
4
)
unsigned
DEFAULT
'0'
NOT
NULL
,
hidden
tinyint
(
4
)
unsigned
DEFAULT
'0'
NOT
NULL
,
starttime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
endtime
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
sorting
int
(
11
)
unsigned
DEFAULT
'0'
NOT
NULL
,
PRIMARY
KEY
(
uid
),
KEY
parent
(
pid
)
count
int
(
11
)
unsigned
DEFAULT
'0'
);
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment