File tree Expand file tree Collapse file tree
migrations/1751375338869_add_dataset_id_subtask Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,19 +4,18 @@ This repository contains the schema and metadata of the MINT GraphQL.
44
55## How to run?
66
7- ### Prerequisites
7+ ### Prerequisites
88
991 . Install the [ Hasura CLI] ( https://hasura.io/docs/latest/migrations-metadata-seeds/migrations-metadata-setup/#step-1-install-the-hasura-cli )
10102 . Install MINT using Helm chart
1111
1212### Run
1313
14-
15-
1614Apply the metadata to the MINT GraphQL
1715
1816``` bash
1917$ export HASURA_GRAPHQL_ADMIN_SECRET=< admin-secret>
18+ $ export HASURA_GRAPHQL_ENDPOINT=http://localhost:8080
2019$ hasura migrate apply
2120$ hasura metadata apply
2221```
@@ -26,4 +25,3 @@ Populate the database with the seed data
2625``` bash
2726$ hasura seeds apply
2827```
29-
Original file line number Diff line number Diff line change 1+ ALTER TABLE thread
2+ ADD COLUMN dataset_id text ;
3+
4+ -- down.sql
5+ ALTER TABLE thread
6+ DROP COLUMN dataset_id;
You can’t perform that action at this time.
0 commit comments