Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

0010_needy_bishop.sql 417 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
  1. CREATE TABLE `configs` (
  2. `id` text PRIMARY KEY NOT NULL,
  3. `created_at` integer DEFAULT CURRENT_TIMESTAMP NOT NULL,
  4. `updated_at` integer DEFAULT CURRENT_TIMESTAMP NOT NULL,
  5. `name` text NOT NULL,
  6. `type` text NOT NULL,
  7. `config` text NOT NULL
  8. );
  9. --> statement-breakpoint
  10. CREATE INDEX `configs_created_at_idx` ON `configs` (`created_at`);--> statement-breakpoint
  11. CREATE INDEX `configs_type_idx` ON `configs` (`type`);
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...