Updating to use Rails 2.1.2. Moving the gem dependancies to the config/environment.rb file. Moving the vendor/plugins externals into our svn.
This commit is contained in:
parent
38f4e17865
commit
252c2f7022
46 changed files with 3919 additions and 7 deletions
25
vendor/plugins/file_column/test/fixtures/mysql.sql
vendored
Normal file
25
vendor/plugins/file_column/test/fixtures/mysql.sql
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
-- MySQL dump 9.11
|
||||
--
|
||||
-- Host: localhost Database: file_column_test
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 4.0.24
|
||||
|
||||
--
|
||||
-- Table structure for table `entries`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS entries;
|
||||
CREATE TABLE entries (
|
||||
id int(11) NOT NULL auto_increment,
|
||||
image varchar(200) default NULL,
|
||||
file varchar(200) NOT NULL,
|
||||
PRIMARY KEY (id)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
DROP TABLE IF EXISTS movies;
|
||||
CREATE TABLE movies (
|
||||
id int(11) NOT NULL auto_increment,
|
||||
movie varchar(200) default NULL,
|
||||
PRIMARY KEY (id)
|
||||
) TYPE=MyISAM;
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue