update besar besaran

This commit is contained in:
TigerStable
2026-06-12 16:36:31 +07:00
parent 515c830342
commit 017fe392bc
63 changed files with 4219 additions and 75 deletions
+12
View File
@@ -0,0 +1,12 @@
CREATE DATABASE IF NOT EXISTS webgis_bansos;
USE webgis_bansos;
CREATE TABLE IF NOT EXISTS features (
id VARCHAR(100) PRIMARY KEY,
layer VARCHAR(50) NOT NULL,
data JSON NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- Index for faster queries by layer
CREATE INDEX idx_layer ON features(layer);