========================================================
Flyway: two versioned migrations, applied on startup
========================================================
captured: 2026-09-15T07:07:26.946024742Z


-- flyway_schema_history --
installed_rank | version | description                               | type  | checksum    | success
---------------+---------+-------------------------------------------+-------+-------------+--------
-1             | NULL    | << Flyway Schema History table created >> | TABLE | NULL        | true   
1              | 1       | create customer                           | SQL   | 1461549807  | true   
2              | 2       | seed customer                             | SQL   | -1214875726 | true   
(3 rows)

-- customer table --
ID | NAME         | EMAIL            
---+--------------+------------------
1  | Ada Lovelace | ada@example.com  
2  | Grace Hopper | grace@example.com
(2 rows)
