mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-16 01:13:17 -06:00
* [no-release-notes] New format blob read/write Use blob chunker to write blobs out of band. Tests for round tripping and address walking at the tree level. Run Blob enginetests and extra large file blob tests. * NodeStore ref refactors * fix index * run verify * fix more bats * small PR cleanup * more changes * last bats errors
10 lines
209 B
SQL
10 lines
209 B
SQL
CREATE TABLE employees (
|
|
`id` varchar(20) NOT NULL,
|
|
`first name` LONGTEXT,
|
|
`last name` LONGTEXT,
|
|
`title` LONGTEXT,
|
|
`start date` LONGTEXT,
|
|
`end date` LONGTEXT,
|
|
PRIMARY KEY (`id`)
|
|
);
|