<<

NAME

Koha::Schema::Result::FileTransport

TABLE: file_transports

ACCESSORS

file_transport_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

name

  data_type: 'varchar'
  is_nullable: 0
  size: 80

host

  data_type: 'varchar'
  default_value: 'localhost'
  is_nullable: 0
  size: 80

port

  data_type: 'integer'
  default_value: 22
  is_nullable: 0

transport

  data_type: 'enum'
  default_value: 'sftp'
  extra: {list => ["ftp","sftp","local"]}
  is_nullable: 0

passive

  data_type: 'tinyint'
  default_value: 1
  is_nullable: 0

user_name

  data_type: 'varchar'
  is_nullable: 1
  size: 80

password

  data_type: 'mediumtext'
  is_nullable: 1

key_file

  data_type: 'mediumtext'
  is_nullable: 1

auth_mode

  data_type: 'enum'
  default_value: 'password'
  extra: {list => ["password","key_file","noauth"]}
  is_nullable: 0

download_directory

  data_type: 'mediumtext'
  is_nullable: 1

upload_directory

  data_type: 'mediumtext'
  is_nullable: 1

status

  data_type: 'longtext'
  is_nullable: 1

debug

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

PRIMARY KEY

RELATIONS

vendor_edi_accounts

Type: has_many

Related object: Koha::Schema::Result::VendorEdiAccount

koha_objects_class

Helper for Koha::Object-based class name resolution.

koha_object_class

Helper for Koha::Object-based class name resolution.

<<