Skip to content

Instantly share code, notes, and snippets.

@Eli-TW
Eli-TW / monkeys.sql
Created December 5, 2017 15:47
Database setup of source data for monkey migration
drop table IF EXISTS monkeys;
drop table IF EXISTS trees;
drop table IF EXISTS sloths;
create table monkeys (
name varchar(32),
monkey_id int(10) unsigned auto_increment,
best_friend_id int(10),
favourite_tree_id int(10),
PRIMARY KEY(monkey_id)

Keybase proof

I hereby claim:

  • I am Eli-TW on github.
  • I am eli_t (https://keybase.io/eli_t) on keybase.
  • I have a public key whose fingerprint is 4794 AB1E 22E7 9CDF D2F1 731E 6CF6 331B BCBA C261

To claim this, I am signing this object:

<?php
/**
* @file
* Generate rules for Drupal Coding Standards Sniffs.
*
* SonarQube requires manually-entered PHP CodeSniffer rules if you use anything
* outside of the standard set of rules. In this case, there are a bunch of
* Drupal-specific sniffs that we'd like to use.
*