forked from umami-software/umami
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
94 additions
and
109 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import term from 'terminal-kit'; | ||
|
||
const { terminal } = term; | ||
|
||
export default function init() { | ||
terminal('hello!'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
line-height: 40px; | ||
min-height: 40px; | ||
font-weight: 600; | ||
white-space: nowrap; | ||
} | ||
|
||
.label { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
generator client { | ||
provider = "prisma-client-js" | ||
} | ||
|
||
datasource db { | ||
provider = "mysql" | ||
url = env("DATABASE_URL") | ||
} | ||
|
||
model account { | ||
user_id Int @default(autoincrement()) @id | ||
username String @unique | ||
password String | ||
is_admin Boolean @default(false) | ||
created_at DateTime? @default(now()) | ||
updated_at DateTime? @default(now()) | ||
website website[] | ||
} | ||
|
||
model event { | ||
event_id Int @default(autoincrement()) @id | ||
website_id Int | ||
session_id Int | ||
created_at DateTime? @default(now()) | ||
url String | ||
event_type String | ||
event_value String | ||
session session @relation(fields: [session_id], references: [session_id]) | ||
website website @relation(fields: [website_id], references: [website_id]) | ||
@@index([created_at], name: "event_created_at_idx") | ||
@@index([session_id], name: "event_session_id_idx") | ||
@@index([website_id], name: "event_website_id_idx") | ||
} | ||
|
||
model pageview { | ||
view_id Int @default(autoincrement()) @id | ||
website_id Int | ||
session_id Int | ||
created_at DateTime? @default(now()) | ||
url String | ||
referrer String? | ||
session session @relation(fields: [session_id], references: [session_id]) | ||
website website @relation(fields: [website_id], references: [website_id]) | ||
@@index([created_at], name: "pageview_created_at_idx") | ||
@@index([session_id], name: "pageview_session_id_idx") | ||
@@index([website_id], name: "pageview_website_id_idx") | ||
} | ||
|
||
model session { | ||
session_id Int @default(autoincrement()) @id | ||
session_uuid String @unique | ||
website_id Int | ||
created_at DateTime? @default(now()) | ||
hostname String? | ||
browser String? | ||
os String? | ||
device String? | ||
screen String? | ||
language String? | ||
country String? | ||
website website @relation(fields: [website_id], references: [website_id]) | ||
event event[] | ||
pageview pageview[] | ||
@@index([created_at], name: "session_created_at_idx") | ||
@@index([website_id], name: "session_website_id_idx") | ||
} | ||
|
||
model website { | ||
website_id Int @default(autoincrement()) @id | ||
website_uuid String @unique | ||
user_id Int | ||
name String | ||
domain String? | ||
created_at DateTime? @default(now()) | ||
account account @relation(fields: [user_id], references: [user_id]) | ||
event event[] | ||
pageview pageview[] | ||
session session[] | ||
@@index([user_id], name: "website_user_id_idx") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.