How do you create a table in Cassandra using phantom for Scala?
问题 I am trying to run the example on https://github.com/websudos/phantom/blob/develop/phantom-example/src/main/scala/com/websudos/phantom/example/basics/SimpleRecipes.scala ,So I created a Recipe and tried to insert it using insertNewRecord(myRecipe) and got the following exception: ....InvalidQueryException: unconfigured columnfamily my_custom_table . I checked using cqlsh and the keyspace was created but the table was not. So my question is, how do I create the table using phantom? This is