Create a table on the DB with a statement beginning with "CREATE TABLE ", followed by rest

This method does not escape special characters.

Property definitions

sqlite3 $ Sqlite3DB :: create_table
	# Create a table on the DB with a statement beginning with "CREATE TABLE ", followed by `rest`
	#
	# This method does not escape special characters.
	fun create_table(rest: Text): Bool do return execute("CREATE TABLE " + rest)
lib/sqlite3/sqlite3.nit:75,2--78,77