Skip to content

Commit 3317a0e

Browse files
committed
feat: Add slug as a property again
1 parent eafcb6d commit 3317a0e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

course-definition.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ marketing:
6969
7070
stages:
7171
- legacy_slug: "init"
72+
slug: "init"
7273
name: "Print page size"
7374
difficulty: very_easy
7475
description_md: |-
@@ -121,6 +122,7 @@ stages:
121122
do this by parsing a file that uses the [SQLite database file format](https://www.sqlite.org/fileformat.html).
122123
123124
- legacy_slug: "table_count"
125+
slug: "table_count"
124126
name: "Print number of tables"
125127
difficulty: hard
126128
description_md: |-
@@ -165,6 +167,7 @@ stages:
165167
[SQLite database file format](https://www.sqlite.org/fileformat.html).
166168
167169
- legacy_slug: "table_names"
170+
slug: "table_names"
168171
name: "Print table names"
169172
difficulty: hard
170173
description_md: |-
@@ -197,6 +200,7 @@ stages:
197200
the count of tables like in the previous stage, you'll print out the names of tables too.
198201
199202
- legacy_slug: "row_counts"
203+
slug: "row_counts"
200204
name: "Count rows in a table"
201205
difficulty: medium
202206
description_md: |-
@@ -235,6 +239,7 @@ stages:
235239
`SELECT COUNT(*) FROM <table>`.
236240
237241
- legacy_slug: "read_single_column"
242+
slug: "read_single_column"
238243
name: "Read data from a single column"
239244
difficulty: hard
240245
description_md: |-
@@ -285,6 +290,7 @@ stages:
285290
`SELECT <column> FROM <table>`.
286291
287292
- legacy_slug: "read_multiple_columns"
293+
slug: "read_multiple_columns"
288294
name: "Read data from multiple columns"
289295
difficulty: hard
290296
description_md: |-
@@ -316,6 +322,7 @@ stages:
316322
In this stage, your sqlite3 implementation will need to execute a SQL statement of this form: `SELECT <column1>,<column2> FROM <table>`.
317323
318324
- legacy_slug: "where"
325+
slug: "where"
319326
name: "Filter data with a WHERE clause"
320327
difficulty: hard
321328
description_md: |-
@@ -344,6 +351,7 @@ stages:
344351
an index, so you'll visit all records in a table and then filter out the matching ones.
345352
346353
- legacy_slug: "table_scan"
354+
slug: "table_scan"
347355
name: "Retrieve data using a full-table scan"
348356
difficulty: hard
349357
description_md: |-
@@ -386,6 +394,7 @@ stages:
386394
an index, so you'll visit all records in a table and then filter out the matching ones.
387395
388396
- legacy_slug: "index_scan"
397+
slug: "index_scan"
389398
name: "Retrieve data using an index"
390399
difficulty: hard
391400
description_md: |-

0 commit comments

Comments
 (0)