Skip to content

Commit

Permalink
Resolved #11, Update Examples
Browse files Browse the repository at this point in the history
  • Loading branch information
dusta authored Dec 5, 2018
1 parent 8908e7d commit 737d5de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/example1/tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ CREATE TABLE `files` (
-- Struktura tabeli dla tabeli `files_cache`
--

CREATE TABLE `files_cache` (
CREATE TABLE `file_cache` (
`id` int(11) NOT NULL,
`file_id` int(11) NOT NULL,
`file_cache_path` varchar(255) NOT NULL,
Expand Down Expand Up @@ -82,7 +82,7 @@ ALTER TABLE `files`
--
-- AUTO_INCREMENT dla tabeli `files_cache`
--
ALTER TABLE `files_cache`
ALTER TABLE `file_cache`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
Expand Down

0 comments on commit 737d5de

Please sign in to comment.