Pőcze Bence
e0ea18a6d0
All checks were successful
rvr-nextgen/pipeline/pr-master This commit looks good
5 lines
240 B
SQL
5 lines
240 B
SQL
ALTER TABLE `communities`
|
|
ADD `main_currency_id` int(10) unsigned DEFAULT NULL,
|
|
ADD KEY `main_currency_id` (`main_currency_id`),
|
|
ADD CONSTRAINT `communities_main_currency_id` FOREIGN KEY (`main_currency_id`) REFERENCES `currencies` (`id`);
|