mirror of
https://github.com/wasp-lang/wasp.git
synced 2025-01-02 06:07:37 +03:00
15 lines
297 B
JavaScript
15 lines
297 B
JavaScript
|
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=}
|
||
|
|