Skip to content

Instantly share code, notes, and snippets.

@mzibari
Created June 27, 2020 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mzibari/6e62441e4e90b90a8b5b67f6794cfeec to your computer and use it in GitHub Desktop.
Save mzibari/6e62441e4e90b90a8b5b67f6794cfeec to your computer and use it in GitHub Desktop.
drop table if exists bookmarks;
create table bookmarks (
id integer primary key generated by default as identity,
title text not null,
description text,
rating integer default 1);
insert into bookmarks
(title, description, rating)
values (
'google',
'Solution to every problem',
5),
(
'yahoo',
'old school google that no one cares about',
1),
(
'myspace',
'internet desert',
2),
(
'facebook',
'platform for scientific studies related about pandemics',
5),
(
'twitter',
'a virtual fight club',
4),
(
'instagram',
'a website that teaches users how to improve their photographs without really improving them',
3),
(
'wikipedia',
'essay solution',
5),
(
'linkedin',
'professional branding',
5),
(
'youtube',
'play video games without buying them, or playing them',
5),
(
'google',
'Solution to every problem',
5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment