| Instance | Branch |
|---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # PHP path | |
| #export PATH="/usr/local/opt/php@7.1/bin:$PATH" | |
| #export PATH="/usr/local/opt/php@7.1/sbin:$PATH" | |
| # Path to your oh-my-zsh installation. | |
| export ZSH="/Users/alexanderhvidt/.oh-my-zsh" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE CM_Vendor ( | |
| VendorID int IDENTITY(1,1) PRIMARY KEY, | |
| VendorName varchar(100), | |
| VendorLogoURL varchar(100), | |
| FullVendorURL varchar(255) | |
| ); | |
| CREATE TABLE CM_Category ( | |
| CategoryID int IDENTITY(1,1) PRIMARY KEY, | |
| CategoryName varchar(70) UNIQUE NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE CM_Vendor ( | |
| VendorID int IDENTITY(1,1) PRIMARY KEY, | |
| VendorName varchar(100), | |
| VendorLogoURL varchar(100), | |
| FullVendorURL varchar(255) | |
| ); | |
| CREATE TABLE CM_Category ( | |
| CategoryID int IDENTITY(1,1) PRIMARY KEY, | |
| CategoryName varchar(70) UNIQUE NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE CM_Vendor ( | |
| VendorID int IDENTITY(1,1) PRIMARY KEY, | |
| VendorName varchar(100), | |
| VendorLogoURL varchar(100), | |
| FullVendorURL varchar(255) | |
| ); | |
| CREATE TABLE CM_Category ( | |
| CategoryID int IDENTITY(1,1) PRIMARY KEY, | |
| CategoryName varchar(70) UNIQUE NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE CM_Vendor ( | |
| VendorID int IDENTITY(1,1) PRIMARY KEY, | |
| VendorName varchar(100), | |
| VendorLogoURL varchar(100), | |
| FullVendorURL varchar(255) | |
| ); | |
| CREATE TABLE CM_Category ( | |
| CategoryID int IDENTITY(1,1) PRIMARY KEY, | |
| CategoryName varchar(70) UNIQUE NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE CM_Vendor ( | |
| VendorID int IDENTITY(1,1) PRIMARY KEY, | |
| VendorName varchar(100), | |
| VendorLogoURL varchar(100), | |
| FullVendorURL varchar(255) | |
| ); | |
| CREATE TABLE CM_Category ( | |
| CategoryID int IDENTITY(1,1) PRIMARY KEY, | |
| CategoryName varchar(70) UNIQUE NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE CM_Vendor ( | |
| VendorID int IDENTITY(1,1) PRIMARY KEY, | |
| VendorName varchar(100), | |
| VendorLogoURL varchar(100), | |
| FullVendorURL varchar(255) | |
| ); | |
| CREATE TABLE CM_Category ( | |
| CategoryID int IDENTITY(1,1) PRIMARY KEY, | |
| CategoryName varchar(70) UNIQUE NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE CM_Vendor ( | |
| VendorID int IDENTITY(1,1) PRIMARY KEY, | |
| VendorName varchar(100), | |
| VendorLogoURL varchar(100), | |
| FullVendorURL varchar(255) | |
| ); | |
| CREATE TABLE CM_Category ( | |
| CategoryID int IDENTITY(1,1) PRIMARY KEY, | |
| CategoryName varchar(70) UNIQUE NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE CM_Product ( | |
| ProductID int IDENTITY(1,1) PRIMARY KEY, | |
| CategoryID varchar(70) FOREIGN KEY REFERENCES CM_Category(CategoryName), | |
| ProductName varchar(70), | |
| IMGURL varchar(255), | |
| ProductDescription text, | |
| Manufacturer varchar(40) | |
| ); | |
| CREATE TABLE CM_PointOfSale ( |
NewerOlder