Web_Scraper_Data / job_data /raw /ddl_file_metadata.sql
Amin1600's picture
Upload folder using huggingface_hub
84d6b28 verified
Raw
History Blame Contribute Delete
596 Bytes
/*
===============================================================================
DDL Script: Create file metadata table
===============================================================================
Script Purpose:
This script creates a metadata table for the files already uploaded, dropping existing tables
if they already exist.
Run this script to re-define the DDL structure
===============================================================================
*/
DROP TABLE IF EXISTS file_metadata;
CREATE TABLE file_metadata(
file_id SERIAL PRIMARY KEY,
file_name TEXT
);