Skip to content

Commit 7d57e19

Browse files
committed
test: storage and auth migrations
1 parent 7983727 commit 7d57e19

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

nix/tests/expected/auth.out

+13
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,16 @@ order by
102102
auth | uid | supabase_auth_admin
103103
(3 rows)
104104

105+
-- auth service schema migrations
106+
select * from auth.schema_migrations;
107+
version
108+
----------------
109+
20171026211738
110+
20171026211808
111+
20171026211834
112+
20180103212743
113+
20180108183307
114+
20180119214651
115+
20180125194653
116+
(7 rows)
117+

nix/tests/expected/storage.out

+6
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,9 @@ order by
9696
storage | search | supabase_storage_admin
9797
(4 rows)
9898

99+
-- storage service migrations
100+
select * from storage.migrations ;
101+
id | name | hash | executed_at
102+
----+------+------+-------------
103+
(0 rows)
104+

nix/tests/sql/auth.sql

+3
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,6 @@ where
6868
n.nspname = 'auth'
6969
order by
7070
p.proname;
71+
72+
-- auth service schema migrations
73+
select * from auth.schema_migrations;

nix/tests/sql/storage.sql

+3
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,6 @@ where
6868
n.nspname = 'storage'
6969
order by
7070
p.proname;
71+
72+
-- storage service migrations
73+
select * from storage.migrations ;

0 commit comments

Comments
 (0)