Add stations table definiton.
This commit is contained in:
		@@ -50,3 +50,12 @@ CREATE TABLE frames (
 | 
			
		||||
    weather TEXT,
 | 
			
		||||
    wx_raw_timestamp TIMESTAMP
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
CREATE TABLE "stations" (
 | 
			
		||||
	"id"	INTEGER NOT NULL UNIQUE,
 | 
			
		||||
	"from"	TEXT UNIQUE,
 | 
			
		||||
	"frames_id"	INTEGER,
 | 
			
		||||
	"last_heard_unix"	INTEGER,
 | 
			
		||||
	"count"	INTEGER,
 | 
			
		||||
	PRIMARY KEY("id" AUTOINCREMENT)
 | 
			
		||||
);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user