We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e37bcd5 commit b7f694aCopy full SHA for b7f694a
build.gradle.kts
@@ -21,10 +21,9 @@ repositories {
21
sqldelight {
22
databases {
23
create("SportsDatabase") {
24
- packageName.set("dev.hossain.githubstats")
+ packageName.set("dev.hossain.postgresqldelight")
25
// https://cashapp.github.io/sqldelight/2.0.0/jvm_postgresql/
26
dialect("app.cash.sqldelight:postgresql-dialect:2.0.0")
27
-
28
}
29
30
src/main/sqldelight/dev/hossain/postgresqldelight/Player.sq
@@ -1,3 +1,4 @@
1
+-- Source: https://cashapp.github.io/sqldelight/2.0.0/jvm_postgresql/#fresh-schema
2
CREATE TABLE hockeyPlayer (
3
player_number INTEGER PRIMARY KEY NOT NULL,
4
full_name TEXT NOT NULL
0 commit comments