Changeset 9dd4182 for SQLScripts
- Timestamp:
- 07/09/23 17:51:32 (17 months ago)
- Branches:
- main
- Children:
- 99d8816
- Parents:
- 708a5bc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
SQLScripts/kreiranje.sql
r708a5bc r9dd4182 129 129 dateCreated timestamp default now(), 130 130 dateApproved timestamp, 131 dateDelivered timestamp, 131 132 priority varchar(50) not null, 132 133 managerUserId integer not null, … … 245 246 246 247 ); 248 249 ------------------------- 250 251 alter table question_availability_for_storedarticle add constraint pk_question_availability_for_storedarticle primary key (questionId, sArticleId); 252 253 ------------------------- 254 255 alter table article_belongs_to_category add constraint pk_article_belongs_to_category primary key (articleId, categoryId); 256 257 ------------------------- 258 259 alter table supplier_supplies_category add constraint pk_supplier_supplies_category primary key (userId, categoryId);
Note:
See TracChangeset
for help on using the changeset viewer.