9 lines
283 B
SQL
9 lines
283 B
SQL
-- Initialize TimescaleDB extension
|
|
CREATE EXTENSION IF NOT EXISTS timescaledb;
|
|
|
|
-- Create additional indexes for time-series data
|
|
-- These will be created after the Django migrations run
|
|
|
|
-- Create hypertables for time-series data
|
|
-- This will be done by Django management commands
|