5 lines
159 B
MySQL
5 lines
159 B
MySQL
|
|
-- Add contract_id column to time_entries
|
||
|
|
-- Autotask contractID field on time entries
|
||
|
|
ALTER TABLE time_entries
|
||
|
|
ADD COLUMN IF NOT EXISTS contract_id BIGINT;
|