[DEL] ir_board: removed unused module.

lp bug: https://launchpad.net/bugs/767015 fixed

bzr revid: vmt@openerp.com-20110615103831-bmb6g3zr3nzq0kxu
This commit is contained in:
Vo Minh Thu 2011-06-15 12:38:31 +02:00
parent 94e35b57f5
commit 78e7117c92
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from osv import fields,osv
class board(osv.osv):
_name = 'ir.board'
def create(self, cr, user, vals, context={}):
return False
def copy(self, cr, uid, id, default=None, context={}):
return False
_columns = {
'name': fields.char('Board', size=64),
}
board()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: