name: public description: Public schema tables: - name: users schema: public columns: id: name: id table: users schema: public type: bigint not_null: true is_primary_key: true username: name: username table: users schema: public type: varchar length: 50 not_null: true indexes: {} constraints: {} relationships: {}