summary refs log tree commit diff stats
path: root/java/state.sql
blob: a59f11f2ee858961aafd1bf2da6e764c6f5150a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- Assignment status using SQLite

CREATE TABLE `assignments` (
    `name` text, `code` boolean, `output` boolean, `text` boolean, `shown` boolean
);

INSERT INTO `assignments` VALUES 
    ('ArraySearch', true, true, true, true),
    ('ArraySort', true, true, true, true),
    ('StringOperations', true, true, true, true),
    ('MatrixOperations', true, true, true, true);

.mode markdown
SELECT * FROM `assignments`;