Skip to content

Commit

Permalink
tax table created and data imported from socrata
Browse files Browse the repository at this point in the history
Updates 1
  • Loading branch information
jhvhs-bloom committed Jun 5, 2023
1 parent 7af9d61 commit c8766cb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

;; Data desing for AnaxWaiver Project
;; ====================================

-- ;; 06/05/2023
-- ;; tax table added to merge old waivers data from socrata
create table tax(
waiver_num varchar(20),
gross_tax_change varchar(255),
net_tax_change varchar(255),
parcel_pin varchar(1024)
)ENGINE=InnoDB

create table users(
id tinyint unsigned not null auto_increment,
username varchar(20),
Expand Down

1 comment on commit c8766cb

@inghamn
Copy link
Member

@inghamn inghamn commented on c8766cb Jun 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updates #1

Please sign in to comment.