Как мне заставить работать следующий код? Я не могу найти синтаксис, который работает для меня.
#Create the table
if table_exists?(tablename)
puts "table found"
else
ActiveRecord::Schema.define do
create_table :data do |table|
table.column :date, :string
table.column :word, :string
table.column :website, :string
end
puts "table created"
end