2017 © Pedro PelĂĄez
 

library article-manager

image

vladimirbiro/article-manager

  • Thursday, November 9, 2017
  • by vladimirbiro
  • Repository
  • 1 Watchers
  • 0 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Article-list

InĆĄtalĂĄcia, (*1)

composer require vladimirbiro/article-manager:dev-master

Vytvorenie tabulky produktov, (*2)

CREATE TABLE `article` (
  `id_article` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL DEFAULT '',
  `description` text,
  `id_manufacturer` int(11) DEFAULT NULL,
  `price` float NOT NULL DEFAULT '0' COMMENT 'Cena',
  `q` int(11) DEFAULT NULL COMMENT 'Pocet kusov',
  `time_add` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Cas pridania produktu',
  `is_public` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Verejny / Sukromny',
  `is_delete` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Vymazany',
  PRIMARY KEY (`id_article`)
);

Tabulka obsahuje iba nevyhnutnĂ© Ășdaje. Je moĆŸnĂ© ju rozĆĄĂ­riĆ„ o ďalĆĄie stÄșpce., (*3)

The Versions

09/11 2017

dev-master

9999999-dev

  Sources   Download

GPL-3.0 BSD-3-Clause GPL-2.0

The Requires

 

The Development Requires

by VladimĂ­r BĂ­ro