11

i'm starting to learn ruby on rails using this guide : getting_started , i created my project and database but when i run rake db:migrate i get this error:

@mona-Extensa-5230:~/rubyDev/Sites/blog# rake db:migrate
(in /home/mona/rubyDev/Sites/blog)
== CreatePosts: migrating ==================================================== -- create_table(:posts)
rake aborted!
An error has occurred, this and all later migrations canceled:
private method `String' called for#
ActiveRecord::ConnectionAdapters::TableDefinition:0xb7540f30>

thanks.

1 Answer 1

33

Looks like you have a line like this in one of your migrations:

t.String

Note that the s needs to be in lowercase (t.string)

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.