mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-05-02 06:29:29 -05:00
fix typo
This commit is contained in:
committed by
Sebastian Jeltsch
parent
5a4a540d0b
commit
9b0cd117ea
@@ -26,7 +26,7 @@ By simply starting TrailBase, the migrations in `traildepot/migrations` will be
|
||||
applied, including `U1728810800__create_table_movies.sql`:
|
||||
|
||||
```sql
|
||||
CREATE TABLE movies IF NOT EXISTS (
|
||||
CREATE TABLE IF NOT EXISTS movies (
|
||||
rank INTEGER PRIMARY KEY,
|
||||
name TEXT NOT NULL,
|
||||
year ANY NOT NULL,
|
||||
|
||||
@@ -76,7 +76,7 @@ $ docker compose down
|
||||
## Detailed Instructions
|
||||
|
||||
If you don't want to use the `docker compose` setup above, build from scratch, or
|
||||
run the the Flutter app, only a few simple steps are needed.
|
||||
run the Flutter app, only a few simple steps are needed.
|
||||
If you have `cargo`, `pnpm`, and `flutter` installed, you can simply run:
|
||||
|
||||
```bash
|
||||
@@ -109,7 +109,7 @@ $ make --always-make types
|
||||
├── flutter #
|
||||
│ ├── lib # Flutter app lives here
|
||||
│ └── ... # Most other files a default cross-platform setup
|
||||
├── Makefile # Builds JSON schemas and coge-generates type definitions
|
||||
├── Makefile # Builds JSON schemas and code-generates type definitions
|
||||
├── schema # Checked-in JSON schemas
|
||||
├── traildepot # Where TrailBase keeps its runtime data
|
||||
│ ├── backups # Periodic DB backups
|
||||
|
||||
@@ -14,7 +14,7 @@ By simply starting TrailBase, the migrations in `traildepot/migrations` will be
|
||||
applied, including `U1728810800__create_table_movies.sql`:
|
||||
|
||||
```sql
|
||||
CREATE TABLE movies IF NOT EXISTS (
|
||||
CREATE TABLE IF NOT EXISTS movies (
|
||||
rank INTEGER PRIMARY KEY,
|
||||
name TEXT NOT NULL,
|
||||
year ANY NOT NULL,
|
||||
|
||||
Reference in New Issue
Block a user