Skip to content

Instantly share code, notes, and snippets.

@RelativeTech
Created March 25, 2021 20:20
Show Gist options
  • Save RelativeTech/ad7be244330a575881436aef41cdf42d to your computer and use it in GitHub Desktop.
Save RelativeTech/ad7be244330a575881436aef41cdf42d to your computer and use it in GitHub Desktop.
create table worker (
id integer not null,
created_by varchar(255),
in_utc timestamp not null,
last_modified_by varchar(255),
out_utc timestamp,
audit_id varchar(255),
compensation double not null,
worker_code varchar(255),
worker_name varchar(255),
primary key (id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment