Commit bd1eccb2 by Liv Haapala

Puuttuva tietokantakentän lisäys

1 parent 0e8b30ed
......@@ -670,6 +670,11 @@ public class BootstrapBean implements BootstrapBeanLocal {
"ALTER TABLE bill_lines ADD COLUMN discount_source_id INTEGER",
"ALTER TABLE bill_lines ADD CONSTRAINT FK_bill_lines_discount_source_id FOREIGN KEY (discount_source_id) REFERENCES bill_lines (id)"
});
dbUpdates.add(new String[] {
"ALTER TABLE places ADD COLUMN reservable BOOLEAN NOT NULL default true"
});
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!