File size: 533 Bytes
6e0c0e7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Supabase Migrations

This directory contains the SQL scripts necessary to set up the database schema in Supabase.

## How to run

1. Go to your [Supabase Dashboard](https://supabase.com/dashboard).
2. Select your project.
3. Go to the **SQL Editor** in the left sidebar.
4. Create a **New Query**.
5. Copy the contents of `migrations/20260126_create_tables.sql` and paste it into the editor.
6. Click **Run**.

Alternatively, if you have the Supabase CLI installed, you can link your project and run:

```bash
supabase db push
```