This repository has been archived on 2025-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
skolavdf/database/sqldotazy/ddl.sql
Dzejkobik007 4109bbec86 Upload
2022-03-27 23:05:23 +02:00

51 lines
873 B
SQL

-- phpMyAdmin SQL Dump
-- version 5.0.4
-- https://www.phpmyadmin.net/
--
-- Počítač: localhost
-- Vytvořeno: Ned 27. bře 2022, 22:19
-- Verze serveru: 8.0.25
-- Verze PHP: 7.4.15
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+01:00";
--
-- Databáze: `skola`
--
-- --------------------------------------------------------
--
-- Struktura tabulky `demo`
--
CREATE TABLE `demo` (
`id` int NOT NULL,
`number` int NOT NULL,
`text` text COLLATE utf8_czech_ci NOT NULL,
`date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_czech_ci;
--
-- Klíče pro exportované tabulky
--
--
-- Klíče pro tabulku `demo`
--
ALTER TABLE `demo`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT pro tabulky
--
--
-- AUTO_INCREMENT pro tabulku `demo`
--
ALTER TABLE `demo`
MODIFY `id` int NOT NULL AUTO_INCREMENT;
COMMIT;