Sha256: e132f7386cde6f34303eb3e7babeef1298274292cdb9ba8d057478138158429f
Contents?: true
Size: 769 Bytes
Versions: 4
Compression:
Stored size: 769 Bytes
Contents
# +--------------+---------------------+------+-----+---------+----------------+ # | Field | Type | Null | Key | Default | Extra | # +--------------+---------------------+------+-----+---------+----------------+ # | option_id | bigint(20) unsigned | NO | PRI | NULL | auto_increment | # | option_name | varchar(64) | NO | UNI | | | # | option_value | longtext | NO | | NULL | | # | autoload | varchar(20) | NO | MUL | yes | | # +--------------+---------------------+------+-----+---------+----------------+ module Wordpress class Option < WpBase self.table_name = "wp_options" self.primary_key = 'option_id' end end
Version data entries
4 entries across 4 versions & 1 rubygems