Skip to content

Instantly share code, notes, and snippets.

@smzn
Created October 22, 2017 04:45
organizationsテーブル
CREATE TABLE IF NOT EXISTS `organizations` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment