An Ecto SQLite3 adapter.
0

Configure Feed

Select the types of activity you want to include in your feed.

Don't run tests that are not supported

Matthew Johnston (Sep 24, 2025, 9:22 PM -0500) 2fb2acec 4e986b56

+4
+4
integration_test/test_helper.exs
··· 109 109 # SQLite3 stores booleans as integers, causing Ecto's json_extract_path tests to fail 110 110 :json_extract_path, 111 111 112 + # SQLite3 does not support ON DELETE SET DEFAULT 113 + :on_delete_default_all, 114 + 112 115 # SQLite3 doesn't support specifying columns for ON DELETE SET NULL 113 116 :on_delete_nilify_column_list, 117 + :on_delete_default_column_list, 114 118 115 119 # not sure how to support this yet 116 120 :bitstring_type,