sqlx 0.8.6

🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.
Documentation
SQLite format 3@  	._
�	�"�
��
g
b�-k!!�!table_sqlx_test_sqlx_testCREATE TABLE _sqlx_test (
    id INT PRIMARY KEY,
    text TEXT NOT NULL
)3	G!indexsqlite_autoindex__sqlx_test_1_sqlx_test	�)�%tableproductsproductsCREATE TABLE products (
    product_no INTEGER,
    name TEXT,
    price NUMERIC,
    CONSTRAINT price_greater_than_zero CHECK (price > 0)
)W''sviewaccounts_viewaccounts_viewCREATE VIEW accounts_view as
SELECT *
FROM accounts�	�etableaccountsaccountsCREATE TABLE accounts (
    id INTEGER NOT NULL PRIMARY KEY,
    name TEXT NOT NULL,
    is_active BOOLEAN
)�u##�1tabletweet_replytweet_replyCREATE TABLE tweet_reply (
    id BIGINT NOT NULL PRIMARY KEY,
    tweet_id BIGINT NOT NULL,
    text TEXT NOT NULL,
    owner_id BIGINT,
    CONSTRAINT tweet_id_fk FOREIGN KEY (tweet_id) REFERENCES tweet(id)
)5I#indexsqlite_autoindex_tweet_reply_1tweet_reply�(�/tabletweettweetCREATE TABLE tweet (
    id BIGINT NOT NULL PRIMARY KEY,
    text TEXT NOT NULL,
    is_sent BOOLEAN NOT NULL DEFAULT TRUE,
    owner_id BIGINT
))=indexsqlite_autoindex_tweet_1tweet
��	7		#sqlx is pretty cool!
��		
��'		Q	Yeah! #sqlx is indeed pretty cool!
��		
��)	Herp Derpinson

������)this is a test)this is a test)this is a test)this is a test)this is a test
������