Design an SQLite table schema for a simple library catalog and verify it with PRAGMA.
Constraints
Example
>>> create_table_schema('books', [('title', 'TEXT'), ('pages', 'INTEGER')])
['id INTEGER', 'title TEXT', 'pages INTEGER']
>>> create_table_schema('empty', [])
['id INTEGER']
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints