react app

This commit is contained in:
akshay m
2026-03-09 09:56:18 +05:30
commit 6dfa6588cb
24 changed files with 19181 additions and 0 deletions

14
script.sql Normal file
View File

@@ -0,0 +1,14 @@
-- Create the appdb database
CREATE DATABASE IF NOT EXISTS appdb;
-- Use the appdb database
USE appdb;
-- Create the apptb table
CREATE TABLE `appdb`.`apptb` (
`id` INT NOT NULL AUTO_INCREMENT,
`name` VARCHAR(45) NOT NULL,
PRIMARY KEY (`id`));