This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import urllib3 | |
from bs4 import BeautifulSoup | |
from os import path | |
class bcolors: | |
HEADER = '\033[95m' | |
CYAN = '\033[36m' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Migrations from script/console | |
>> irb ActiveRecord::Schema | |
>> remove_column :books, :longname | |
>> remove_index :books, :shortisbn |