squawk-fmt 2.63.0

Linter for Postgres migrations & SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
---
source: crates/squawk_fmt/tests/tests.rs
input_file: crates/squawk_fmt/tests/before/create_table.sql
---
create table u();

create table t(
  a int,
  b text
);

-- users table
create table users(id int);