Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Add /report endpoint #762
Conversation
erikjohnston
assigned
NegativeMjark
May 4, 2016
NegativeMjark
commented on the diff
May 4, 2016
| + * | ||
| + * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| + * you may not use this file except in compliance with the License. | ||
| + * You may obtain a copy of the License at | ||
| + * | ||
| + * http://www.apache.org/licenses/LICENSE-2.0 | ||
| + * | ||
| + * Unless required by applicable law or agreed to in writing, software | ||
| + * distributed under the License is distributed on an "AS IS" BASIS, | ||
| + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| + * See the License for the specific language governing permissions and | ||
| + * limitations under the License. | ||
| + */ | ||
| + | ||
| + | ||
| +CREATE TABLE event_reports( |
|
|
|
Other than adding an incrementing ID so the schema can be updated incrementally. LGTM |
|
@NegativeMjark Like so? |
NegativeMjark
commented on an outdated diff
May 4, 2016
NegativeMjark
and 1 other
commented on an outdated diff
May 4, 2016
| @@ -15,6 +15,8 @@ | ||
| CREATE TABLE event_reports( | ||
| + id BIGINT NOT NULL, | ||
| + received_ts BIGINT NOT NULL, |
NegativeMjark
Contributor
|
|
LGTM. We might want to only allow one report per event per reporter. but like so much else with this PR it can probably wait until later. |
erikjohnston commentedMay 4, 2016
No description provided.