2010-08-02 04:37:57 -04:00
|
|
|
ActiveRecord::Schema.define do
|
2012-10-16 05:53:18 -04:00
|
|
|
create_table :binary_fields, force: true do |t|
|
|
|
|
t.binary :var_binary, limit: 255
|
|
|
|
t.binary :var_binary_large, limit: 4095
|
2015-09-13 03:24:38 -04:00
|
|
|
t.tinyblob :tiny_blob
|
|
|
|
t.blob :normal_blob
|
|
|
|
t.mediumblob :medium_blob
|
|
|
|
t.longblob :long_blob
|
|
|
|
t.tinytext :tiny_text
|
|
|
|
t.text :normal_text
|
|
|
|
t.mediumtext :medium_text
|
|
|
|
t.longtext :long_text
|
2010-08-02 04:37:57 -04:00
|
|
|
|
2015-09-13 03:24:38 -04:00
|
|
|
t.index :var_binary
|
|
|
|
end
|
2012-10-16 05:53:18 -04:00
|
|
|
|
2013-03-27 00:30:11 -04:00
|
|
|
create_table :key_tests, force: true, :options => 'ENGINE=MyISAM' do |t|
|
|
|
|
t.string :awesome
|
|
|
|
t.string :pizza
|
|
|
|
t.string :snacks
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :key_tests, :awesome, :type => :fulltext, :name => 'index_key_tests_on_awesome'
|
|
|
|
add_index :key_tests, :pizza, :using => :btree, :name => 'index_key_tests_on_pizza'
|
|
|
|
add_index :key_tests, :snacks, :name => 'index_key_tests_on_snack'
|
|
|
|
|
2014-11-09 23:53:27 -05:00
|
|
|
create_table :collation_tests, id: false, force: true do |t|
|
|
|
|
t.string :string_cs_column, limit: 1, collation: 'utf8_bin'
|
|
|
|
t.string :string_ci_column, limit: 1, collation: 'utf8_general_ci'
|
|
|
|
end
|
|
|
|
|
2010-08-02 04:37:57 -04:00
|
|
|
ActiveRecord::Base.connection.execute <<-SQL
|
|
|
|
DROP PROCEDURE IF EXISTS ten;
|
|
|
|
SQL
|
|
|
|
|
|
|
|
ActiveRecord::Base.connection.execute <<-SQL
|
|
|
|
CREATE PROCEDURE ten() SQL SECURITY INVOKER
|
|
|
|
BEGIN
|
|
|
|
select 10;
|
|
|
|
END
|
2015-10-11 03:44:49 -04:00
|
|
|
SQL
|
|
|
|
|
|
|
|
ActiveRecord::Base.connection.execute <<-SQL
|
|
|
|
DROP PROCEDURE IF EXISTS topics;
|
|
|
|
SQL
|
|
|
|
|
|
|
|
ActiveRecord::Base.connection.execute <<-SQL
|
|
|
|
CREATE PROCEDURE topics(IN num INT) SQL SECURITY INVOKER
|
|
|
|
BEGIN
|
|
|
|
select * from topics limit num;
|
|
|
|
END
|
2011-10-09 07:38:36 -04:00
|
|
|
SQL
|
|
|
|
|
2015-03-02 11:35:05 -05:00
|
|
|
ActiveRecord::Base.connection.drop_table "enum_tests", if_exists: true
|
2012-06-27 06:10:36 -04:00
|
|
|
|
|
|
|
ActiveRecord::Base.connection.execute <<-SQL
|
|
|
|
CREATE TABLE enum_tests (
|
2016-01-02 15:41:53 -05:00
|
|
|
enum_column ENUM('text','blob','tiny','medium','long','unsigned')
|
2012-06-27 06:10:36 -04:00
|
|
|
)
|
|
|
|
SQL
|
2012-02-25 10:35:58 -05:00
|
|
|
end
|