mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
20 lines
559 B
SQL
20 lines
559 B
SQL
# $Id$
|
|
# This file contains a complete database schema for all the
|
|
# tables used by this module, written in SQL
|
|
|
|
# It may also contain INSERT statements for particular data
|
|
# that may be used, especially new entries in the table log_display
|
|
|
|
#
|
|
# Table structure for table `block_rss_client`
|
|
#
|
|
|
|
CREATE TABLE prefix_block_rss_client (
|
|
id SERIAL PRIMARY KEY,
|
|
userid INTEGER NOT NULL default '0',
|
|
title text NOT NULL default '',
|
|
preferredtitle varchar(64) NOT NULL default '',
|
|
description text NOT NULL default '',
|
|
url varchar(255) NOT NULL default ''
|
|
);
|