mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-22 00:21:43 +03:00
18 lines
334 B
JavaScript
Generated
18 lines
334 B
JavaScript
Generated
app waspMigrate {
|
|
wasp: {
|
|
version: "^0.7.0"
|
|
},
|
|
title: "waspMigrate"
|
|
}
|
|
|
|
route RootRoute { path: "/", to: MainPage }
|
|
page MainPage {
|
|
component: import Main from "@client/MainPage"
|
|
}
|
|
entity Task {=psl
|
|
id Int @id @default(autoincrement())
|
|
description String
|
|
isDone Boolean @default(false)
|
|
psl=}
|
|
|