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

postgresql $ Postgres :: 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/postgresql/postgres.nit:109,3--112,78