Skip to content

Commit 7fa0191

Browse files
committed
Remove console tag
1 parent 0aafbde commit 7fa0191

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Database migrations are managed with [`migrate`](https://github.com/golang-migra
8181

8282
To add new migrations, use the following command:
8383

84-
```console
84+
```
8585
$ ./coderd/database/migrations/create_fixture.sh my name
8686
/home/coder/src/coder/coderd/database/migrations/000070_my_name.up.sql
8787
/home/coder/src/coder/coderd/database/migrations/000070_my_name.down.sql
@@ -113,7 +113,7 @@ migration of multiple features or complex configurations.
113113

114114
To add a new partial fixture, run the following command:
115115

116-
```console
116+
```
117117
$ ./coderd/database/migrations/create_fixture.sh my fixture
118118
/home/coder/src/coder/coderd/database/migrations/testdata/fixtures/000070_my_fixture.up.sql
119119
```
@@ -126,7 +126,7 @@ To create a full dump, run a fully fledged Coder deployment and use it to
126126
generate data in the database. Then shut down the deployment and take a snapshot
127127
of the database.
128128

129-
```console
129+
```
130130
$ mkdir -p coderd/database/migrations/testdata/full_dumps/v0.12.2 && cd $_
131131
$ pg_dump "postgres://coder@localhost:..." -a --inserts >000069_dump_v0.12.2.up.sql
132132
```
@@ -137,7 +137,7 @@ emails, OAuth tokens and other secrets. Then commit the dump to the project.
137137
To find out what the latest migration for a version of Coder is, use the
138138
following command:
139139

140-
```console
140+
```
141141
$ git ls-files v0.12.2 -- coderd/database/migrations/*.up.sql
142142
```
143143

0 commit comments

Comments
 (0)