<html>
<head>
<style> img { width: 140px; } img:hover { width: 400px; } </style>
</head>
<body>
<h1>Increase size of image on mouseover using CSS </h1>
<img src="http://img.youtube.com/vi/0OR9lFuCXyc/0.jpg" alt="test" />
</body>
</html>
Error: PG::DuplicateTable: ERROR: relation "taggings" already exists Solution : Already the table present in your database.But migration also trying to create a table in database.For this reason error occurred. So try to remove the table (taggings) from your database. postgresql : > DROP TABLE IF EXISTS taggings; Rails console : > ActiveRecord::Migration.drop_table(:taggings)
Comments
Post a Comment