mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-30 04:25:36 +03:00
15 lines
297 B
JavaScript
Generated
15 lines
297 B
JavaScript
Generated
app waspMigrate {
|
|
title: "waspMigrate"
|
|
}
|
|
|
|
route RootRoute { path: "/", to: MainPage }
|
|
page MainPage {
|
|
component: import Main from "@ext/MainPage.js"
|
|
}
|
|
entity Task {=psl
|
|
id Int @id @default(autoincrement())
|
|
description String
|
|
isDone Boolean @default(false)
|
|
psl=}
|
|
|