Displaying 4 results from an estimated 4 matches for "tinytext".
Did you mean:
  tinytex
  
2008 Apr 15
1
Dovecot LDA / Deliver question
...s follows:
+----------+--------------+------+-----+-------------------+-------+
| Field    | Type         | Null | Key | Default           | Extra |
+----------+--------------+------+-----+-------------------+-------+
| updated  | timestamp    | YES  |     | CURRENT_TIMESTAMP |       |
| username | tinytext     | NO   |     | NULL              |       |
| email    | varchar(128) | NO   | PRI | NULL              |       |
| passwd   | varchar(128) | YES  |     | NULL              |       |
| name     | tinytext     | NO   |     | NULL              |       |
| status   | char(1)      | NO   |     | A...
2006 Jan 12
1
Best Forum? Was: Migration doesn''t seem to preserve create_table options in schema
...n development these options are used to create the database:
mysql> show create table messages;
...
messages | CREATE TABLE `messages` (
  `id` int(11) NOT NULL auto_increment,
  `external_id` varchar(255) NOT NULL,
  `from` varchar(255) NOT NULL,
  `subject` varchar(255) default NULL,
  `body` tinytext,
  `created_on` datetime default NULL,
  `recipients_count` int(11) default ''0'',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
...
  In test I still see "InnoDB"...
  Deleting the schema.rb didn''t help.
environment.rb contains this:
 config.ac...
2006 Jan 08
0
Migration doesn''t seem to preserve create_table options in schema
...n development these options are used to create the database:
mysql> show create table messages;
...
messages | CREATE TABLE `messages` (
  `id` int(11) NOT NULL auto_increment,
  `external_id` varchar(255) NOT NULL,
  `from` varchar(255) NOT NULL,
  `subject` varchar(255) default NULL,
  `body` tinytext,
  `created_on` datetime default NULL,
  `recipients_count` int(11) default ''0'',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
...
  In test I still see "InnoDB"...
  Deleting the schema.rb didn''t help.
environment.rb contains this:
 config.ac...
2005 Jul 15
0
Queue_log stats
...rc.local or whatever
# restart asterisk
# requires a DB table like the following..
# CREATE TABLE csr_queue (
#  qname varchar(30) default NULL,
#  agent varchar(30) default NULL,
#  action text,
#  info1 text,
#  info2 text,
#  info3 text,
#  timestamp int(11) NOT NULL default '0',
#  id tinytext NOT NULL
#) TYPE=MyISAM;
use DBI;
use IO::File;
my $opt_debug = 0;
# if you want postgres change this to "Pg"
my $db_type = "mysql";
my $db_host = "127.0.0.1";
my $db_user_name = 'username';
my $db_password = 'password';
my $db_database = 'asteri...