You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
As of now, even to start the project we have to manually create the table schema in supabase dashboard by executing SQL commands provided in table_setup.md. And even after that to test a functionality we have to manually create table entries which is very inconvenient and delays meaningful time which could have been focused on development
Describe the solution you'd like
We can automate the above process my using migrations
just by executing few commands like
Links the current project with the supabase project
npx supabase link --project-ref <Project-id>
Migrate the Supabase database to the desired structure defined in table_setup.md
npx supabase db push
we can seed the data (filling the table with sample data) after the tables have migrated using seeding
Additional context
All of the above will speedup the process of setting up the project locally
The text was updated successfully, but these errors were encountered:
Hi there! Thanks for opening this issue. We appreciate your contribution to this open-source project. We aim to respond or assign your issue as soon as possible.
Is your feature request related to a problem? Please describe.
As of now, even to start the project we have to manually create the table schema in supabase dashboard by executing SQL commands provided in table_setup.md. And even after that to test a functionality we have to manually create table entries which is very inconvenient and delays meaningful time which could have been focused on development
Describe the solution you'd like
We can automate the above process my using migrations
just by executing few commands like
Links the current project with the supabase project
Migrate the Supabase database to the desired structure defined in table_setup.md
we can seed the data (filling the table with sample data) after the tables have migrated using seeding
Additional context
All of the above will speedup the process of setting up the project locally
The text was updated successfully, but these errors were encountered: