diff --git a/sql/001-tables.sql b/sql/001-tables.sql index 268d9c8..0a6f7f5 100644 --- a/sql/001-tables.sql +++ b/sql/001-tables.sql @@ -10,7 +10,7 @@ CREATE TABLE IF NOT EXISTS issue ( -- year-month-day issue_date DATE NOT NULL, cloudinary_public_id VARCHAR(20) NOT NULL CHECK (cloudinary_public_id <> ''), - -- draft, published + -- draft, publish status VARCHAR(50) NOT NULL DEFAULT 'draft', -- Bevy 0.13, and more display_name VARCHAR(100) NOT NULL DEFAULT '', diff --git a/src/app.rs b/src/app.rs index c1b066f..0ac3f92 100644 --- a/src/app.rs +++ b/src/app.rs @@ -32,14 +32,9 @@ pub fn App() -> impl IntoView { attr:class="h-full bg-white antialiased" />
- // injects a stylesheet into the document
// id=leptos means cargo-leptos will hot-reload this stylesheet