schema.sql

背景
投稿者投稿者jumokuいいね0お気に入り登録
プレイ回数108難易度(3.1) 187打 英語 英字 長文モードのみ
src/main/resources

関連タイピング

問題文

ふりがな非表示 ふりがな表示
(DROP TABLE IF EXISTS todos;) DROP TABLE IF EXISTS todos; (CREATE TABLE todos () CREATE TABLE todos ( (id serial PRIMARY KEY,) id serial PRIMARY KEY, (todo varchar(255) NOT NULL,) todo varchar(255) NOT NULL, (detail text,) detail text, (created_at timestamp without time zone,) created_at timestamp without time zone, (updated_at timestamp without time zone) updated_at timestamp without time zone ();) );