List of commits:
Subject Hash Author Date (UTC)
This version works in MS-SQL. 4e3f33f464173c91c3f4ac4b6acb0235ed2d6720 Luigi Bai 2020-09-07 19:11:54
Add headers. 4da1ccbdb2e3e852050de3460bc9ac9ba061ed7a Luigi Bai 2020-09-07 16:28:52
loadDockets now works to local. 96ba8f7419f63be6612fe1efd3e24d5d30eaf20a Luigi Bai 2020-09-06 20:59:06
Fix for new column names. 5791d77e19585c494e51c6062ab45440e5af0903 Luigi Bai 2020-09-06 20:44:50
Add headers 32cb7264c06b28dc0404b715f24fd2d82b66633b Luigi Bai 2020-09-06 20:44:29
Have a working version of xfer - now transfers data to MS SQL Server from SQLITE3. 428e493bcc5b7f718a741db046d08905f47d0f1c Luigi Bai 2020-09-05 22:11:55
Stupid MS SQL Server assumes case insensitive collation for text/char columns. Who does that? 2700846d8c1233d27664fb74b582293ddb8cb32a Luigi Bai 2020-09-05 21:11:17
Fixed MS schema - 4096 too big for varchar. ca3870f7e244d83e58d74c7f231baacbc19ba8fa Luigi Bai 2020-09-04 17:04:05
Remove interstitial console.log 19481f6692d9f93e75aa173bee9716261ef54db0 Luigi Bai 2020-09-04 12:07:33
Added license/copyright info. Added shim for Promise. Rewrote xferData with await and shim. 3930998d32fb2a19239e63b1b07bf1804c7ea46e Luigi Bai 2020-09-04 12:04:32
Fixed a typo. Ugh. 64718362e042d4a987d3161f999de087edb7bc8a Luigi Bai 2020-09-04 03:59:37
Must have an example of the creds.js file to learn from. 13d0e75c21bf8194c53e148e37cc6f85d8152de3 Luigi Bai 2020-09-04 03:59:16
Transfer local data to cloud based MS SQL-Server database. 8035b6dac5ce05ced62474409ab46ca490a6db4a Luigi Bai 2020-09-04 03:50:32
Learned that package-lock.json should also be committed. 20222232bd2e5388b76d3330e6f695b5aacfe393 Luigi Bai 2020-09-03 11:04:05
Fixed SPDX license expression. c894ba842750ff63035c850095ac93399495f4bc Luigi Bai 2020-09-03 11:01:27
Updated README. Added .gitignore, node/npm package.json, and the schema definitions for the data stores. a5baa30d1360514e217250737abf3a4518ab6a65 Luigi Bai 2020-09-02 17:35:09
Initial commit f67ef5b180d66c95e84ee5c5aa0a893376afa5c4 datajams-lbai 2020-09-02 02:28:52
Commit 4e3f33f464173c91c3f4ac4b6acb0235ed2d6720 - This version works in MS-SQL.
Author: Luigi Bai
Author date (UTC): 2020-09-07 19:11
Committer name: Luigi Bai
Committer date (UTC): 2020-09-07 19:11
Parent(s): 4da1ccbdb2e3e852050de3460bc9ac9ba061ed7a
Signing key:
Tree: 3ea474b465e5c5c9c74d23528e3c4ead83ef618f
File Lines added Lines deleted
schema.mssql.sql 2 1
File schema.mssql.sql changed (mode: 100644) (index 3145b10..69eac4a)
... ... CREATE TABLE docket (
3 3 precinct INTEGER, precinct INTEGER,
4 4 place INTEGER, place INTEGER,
5 5 docket_dateTime datetime, docket_dateTime datetime,
6 URL nvarchar(1024) COLLATE SQL_Latin1_General_CP1250_CS_AS,
6 URL nvarchar(1024) COLLATE Latin1_General_100_CS_AS_SC_UTF8,
7 7 docket_ID INTEGER IDENTITY(1, 1) PRIMARY KEY docket_ID INTEGER IDENTITY(1, 1) PRIMARY KEY
8 8 ); );
9 9 DROP TABLE cases; DROP TABLE cases;
 
... ... CREATE UNIQUE INDEX docketedCase on docketedCases (precinct, place, docket_dateT
45 45 CREATE UNIQUE INDEX casenum on cases (casenumber); CREATE UNIQUE INDEX casenum on cases (casenumber);
46 46 CREATE UNIQUE INDEX partyIdx on party (casenumber, party_role, party_name); CREATE UNIQUE INDEX partyIdx on party (casenumber, party_role, party_name);
47 47 CREATE UNIQUE INDEX eventIdx on events (casenumber, eventDescription, dateAdded); CREATE UNIQUE INDEX eventIdx on events (casenumber, eventDescription, dateAdded);
48
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/datajams-lbai/datajams-evictions

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/datajams-lbai/datajams-evictions

Clone this repository using git:
git clone git://git.rocketgit.com/user/datajams-lbai/datajams-evictions

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main