Guest User

Untitled

a guest
May 26th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $tags = Category::whereIn('name', $tag_names)->pluck('id')->toArray();
  2.  
  3. CREATE TABLE categories (
  4. id SERIAL PRIMARY KEY,
  5. name TEXT NOT NULL UNIQUE,
  6. description TEXT,
  7. num_posts INTEGER DEFAULT 0 NOT NULL
  8. );
Add Comment
Please, Sign In to add comment