README.md
changeset 3 f34855556f4d
parent 1 160338bb2822
child 5 a1276c3d39eb
--- a/README.md	Mon Feb 12 12:49:48 2018 -0800
+++ b/README.md	Mon Feb 12 13:00:25 2018 -0800
@@ -44,7 +44,12 @@
 for details.
 
 Strongly encouraged:  Promote this table to a Timescale "hypertable".
-See Timescale docs for that.
+See Timescale docs for that, but a quick example to partition
+automatically at weekly boundaries would look something like:
+
+```sql
+SELECT create_hypertable( 'netdata', 'time', chunk_time_interval => 604800000000 );
+```