TT#23271 add uuid columns for accounting.prepaid_cost

Change-Id: I30a6f61d7974167398fd663496ce1f22f491f459
changes/10/16210/4
Rene Krenn 8 years ago
parent 33cea1ade1
commit 546f71665b

@ -0,0 +1,4 @@
SET sql_log_bin=0;
use accounting;
alter table prepaid_costs drop column source_user_id, drop column destination_user_id;

@ -0,0 +1,5 @@
SET sql_log_bin=0;
use accounting;
alter table prepaid_costs add column source_user_id char(36) NOT NULL,
add column destination_user_id char(36) NOT NULL;
Loading…
Cancel
Save