Skip to content

Commit

Permalink
Merge pull request #3 from vlejd/fall_2023
Browse files Browse the repository at this point in the history
Update for Fall 2023 edition.
  • Loading branch information
Ianvdl authored Feb 2, 2024
2 parents 158bf30 + 6543956 commit 3b91291
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Introduction

These scripts are based on those developed at altay-oz/load_patstat.
These scripts are based on those developed at altay-oz/load_patstat.

The bulk downloads provided by EPO are served as batches of zip files. This
script assumes you have already downloaded and extracted these zip files, and
Expand All @@ -17,6 +17,7 @@ on localhost.
This repository contains scripts tested for the following PATSTAT versions (see the releases in this repository for corresponding versions):
* Spring 2022*
* Fall 2022*
* Fall 2023

Releases marked with an asterisk have one or more point releases available for bugfixes. Always use the latest release for your version of PATSTAT.

Expand Down
3 changes: 2 additions & 1 deletion create_patstat_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ CREATE TABLE tls201_appln (
appln_kind char(2) DEFAULT '' NOT NULL,
appln_filing_date date DEFAULT '9999-12-31' NOT NULL,
appln_filing_year smallint DEFAULT '9999' NOT NULL,
appln_nr_epodoc varchar(20) DEFAULT '' NOT NULL,
appln_nr_original varchar(100) DEFAULT '' NOT NULL,
ipr_type char(2) DEFAULT '' NOT NULL,
receiving_office char(2) DEFAULT '' NOT NULL,
Expand Down Expand Up @@ -277,7 +278,7 @@ CREATE TABLE tls231_inpadoc_legal_event (

CREATE TABLE tls801_country (
ctry_code char(2) DEFAULT '' NOT NULL,
iso_alph3 varchar(3) DEFAULT '' NOT NULL,
iso_alpha3 varchar(3) DEFAULT '' NOT NULL,
st3_name varchar(100) DEFAULT '' NOT NULL,
organisation_flag char(1) DEFAULT '' NOT NULL,
continent varchar(25) DEFAULT '' NOT NULL,
Expand Down

0 comments on commit 3b91291

Please sign in to comment.